Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ParametersDialog.xaml.cs
2using System.Windows;
3
5{
9 public partial class ParametersDialog : Window
10 {
11 private readonly ContractParametersModel model;
12
19 {
21
22 this.model = Model;
23 this.DataContext = Model;
24 this.Title = Title;
25 }
26
27 private void Button_Click(object sender, RoutedEventArgs e)
28 {
29 if (this.model.ParametersOk)
30 this.DialogResult = true;
31 }
32 }
33}