diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-11-03 17:38:36 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-11-03 17:38:36 -0800 |
commit | 172fc1052b736505ceceec0a9253bcfd181c7698 (patch) | |
tree | 48b2423cfdd9694d7a63610342f027dcfb3c58bf /windows/WinUI/NetworkInfoView.xaml.cs | |
parent | 523412edfbd60c8b064f2392c413d2916e2aa9b9 (diff) | |
parent | a19e82fcbc2203f0d84a0e744d344e0796bc0c33 (diff) | |
download | infinitytier-172fc1052b736505ceceec0a9253bcfd181c7698.tar.gz infinitytier-172fc1052b736505ceceec0a9253bcfd181c7698.zip |
Merge windows-ui into edge.
Diffstat (limited to 'windows/WinUI/NetworkInfoView.xaml.cs')
-rw-r--r-- | windows/WinUI/NetworkInfoView.xaml.cs | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/windows/WinUI/NetworkInfoView.xaml.cs b/windows/WinUI/NetworkInfoView.xaml.cs new file mode 100644 index 00000000..ccdec288 --- /dev/null +++ b/windows/WinUI/NetworkInfoView.xaml.cs @@ -0,0 +1,72 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace WinUI +{ + /// <summary> + /// Interaction logic for NetworkInfoView.xaml + /// </summary> + public partial class NetworkInfoView : UserControl + { + private APIHandler handler; + private ZeroTierNetwork network; + + public NetworkInfoView(APIHandler handler, ZeroTierNetwork network) + { + InitializeComponent(); + + this.handler = handler; + this.network = network; + + UpdateNetworkData(); + } + + private void UpdateNetworkData() + { + this.networkId.Text = network.NetworkId; + this.networkName.Text = network.NetworkName; + this.networkStatus.Text = network.NetworkStatus; + this.networkType.Text = network.NetworkType; + this.macAddress.Text = network.MacAddress; + this.mtu.Text = network.MTU.ToString(); + this.broadcastEnabled.Text = (network.BroadcastEnabled ? "ENABLED" : "DISABLED"); + this.bridgingEnabled.Text = (network.Bridge ? "ENABLED" : "DISABLED"); + this.deviceName.Text = network.DeviceName; + + string iplist = ""; + for (int i = 0; i < network.AssignedAddresses.Length; ++i) + { + iplist += network.AssignedAddresses[i]; + if (i < (network.AssignedAddresses.Length - 1)) + iplist += "\n"; + } + + this.managedIps.Text = iplist; + } + + public bool HasNetwork(ZeroTierNetwork network) + { + if (this.network.NetworkId.Equals(network.NetworkId)) + return true; + + return false; + } + + private void leaveButton_Click(object sender, RoutedEventArgs e) + { + handler.LeaveNetwork(network.NetworkId); + } + } +} |