mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-16 22:28:17 +00:00
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.
This commit is contained in:
@ -18,11 +18,47 @@ namespace WinUI
|
||||
/// <summary>
|
||||
/// Interaction logic for NetworkInfoView.xaml
|
||||
/// </summary>
|
||||
public partial class NetworkInfoView : Page
|
||||
public partial class NetworkInfoView : UserControl
|
||||
{
|
||||
public NetworkInfoView()
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user