Touseefelahi / Communication

Simple Socket programing utility

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is simple UI control to select the Network Interface in single/multi network device

Add nuget package and use this namespace in xaml file

xmlns:comm="clr-namespace:Communication.Wpf;assembly=Communication.Wpf"

And use it like this control

<comm:InterfaceSelector            
        InterfaceList="{Binding InterfaceList, Mode=TwoWay}"
        IsManual="{Binding IsManual, Mode=TwoWay}"
        SelectedInterface="{Binding SelectedInterface, Mode=TwoWay}" />

For Just a combo box set IsMinimalUI = True

<comm:InterfaceSelector
    IsMinimalUI="True"
    InterfaceList="{Binding InterfaceList, Mode=TwoWay}"
    IsManual="{Binding IsManual, Mode=TwoWay}"
    SelectedInterface="{Binding SelectedInterface, Mode=TwoWay}" />

About

Simple Socket programing utility

License:MIT License


Languages

Language:C# 100.0%