ZeroTierOne/windows/WinUI/NetworkInfoView.xaml.cs
Grant Limberg 5b6ddaa2d7 Base windows UI is working.
* No joining/leaving networks yet, but they do display.
* Nothing is updated yet after first load of the app.  Need to set up a background task to run updates.
2015-10-21 20:29:03 -07:00

65 lines
1.9 KiB
C#

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
{
ZeroTierNetwork network;
public NetworkInfoView(ZeroTierNetwork network)
{
InitializeComponent();
this.network = network;
updateNetworkData();
}
private void updateNetworkData()
{
this.networkId.Text = network.nwid;
this.networkName.Text = network.name;
this.networkStatus.Text = network.status;
this.networkType.Text = network.type;
this.macAddress.Text = network.mac;
this.mtu.Text = network.mtu.ToString();
this.broadcastEnabled.Text = (network.broadcastEnabled ? "ENABLED" : "DISABLED");
this.bridgingEnabled.Text = (network.bridge ? "ENABLED" : "DISABLED");
this.deviceName.Text = network.portDeviceName;
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.nwid.Equals(network.nwid))
return true;
return false;
}
}
}