diff options
| author | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-16 14:50:25 -0800 |
|---|---|---|
| committer | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-16 14:50:25 -0800 |
| commit | 14bf326de20ed70e752dcf2badf7d6d4623949d5 (patch) | |
| tree | 79edc359af767921929b909dc5f09d1470e4c824 /windows/WinUI/MainWindow.xaml.cs | |
| parent | dc549b7f3c4852ed59c25af7b4d9a9fe494f4e7f (diff) | |
| download | infinitytier-14bf326de20ed70e752dcf2badf7d6d4623949d5.tar.gz infinitytier-14bf326de20ed70e752dcf2badf7d6d4623949d5.zip | |
make device ID selectable
Diffstat (limited to 'windows/WinUI/MainWindow.xaml.cs')
| -rw-r--r-- | windows/WinUI/MainWindow.xaml.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/WinUI/MainWindow.xaml.cs b/windows/WinUI/MainWindow.xaml.cs index 25534b46..e4a82f96 100644 --- a/windows/WinUI/MainWindow.xaml.cs +++ b/windows/WinUI/MainWindow.xaml.cs @@ -143,7 +143,7 @@ namespace WinUI networkId.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() => { - this.networkId.Content = status.Address; + this.networkId.Text = status.Address; })); versionString.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() => { @@ -160,7 +160,7 @@ namespace WinUI networkId.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() => { - this.networkId.Content = ""; + this.networkId.Text = ""; })); versionString.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() => { |
