private async void OnFindWiFi(object sender, RoutedEventArgs e)
        {
            FoundSSIDs.Clear();
            ScanningProgressRing.IsActive = true;
            ScanningStatusTextBox.Text    = "Please wait, Scanning WiFi ...";
            await node.Config.StartScan();

            await WiFiScanContentDialog.ShowAsync();
        }
 private void onSSIDselected(object sender, RoutedEventArgs e)
 {
     SSIDtextBlock.Text = (string)FoundSSIDsListView.SelectedItem;
     WiFiScanContentDialog.Hide();
 }
 private void onCancelScanWiFi(object sender, RoutedEventArgs e)
 {
     WiFiScanContentDialog.Hide();
 }