Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BanOccupantForm.xaml.cs
1using System;
2using System.Windows;
3
5{
9 public partial class BanOccupantForm : Window
10 {
11 public BanOccupantForm(string NickName)
12 {
14
15 this.NickName.Text = NickName;
16 }
17
18 private void CancelButton_Click(object Sender, RoutedEventArgs e)
19 {
20 this.DialogResult = false;
21 }
22
23 private void YesButton_Click(object Sender, RoutedEventArgs e)
24 {
25 this.DialogResult = true;
26 }
27 }
28}
Interaction logic for BanOccupantForm.xaml