Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CalculatorNavigationArgs.cs
2
4{
9 {
14 : this(null)
15 {
16 }
17
23 {
24 this.Entry = Entry;
25 this.ViewModel = null;
26 this.Property = null;
27 }
28
35 {
36 this.Entry = null;
37 this.ViewModel = ViewModel;
38 this.Property = Property;
39 }
40
44 public Entry? Entry { get; }
45
49 public BaseViewModel? ViewModel { get; }
50
54 public string? Property { get; }
55 }
56}
An base class holding page specific navigation parameters.
A base class for all view models, inheriting from the BindableObject. NOTE: using this class requir...
CalculatorNavigationArgs(BaseViewModel ViewModel, string Property)
Holds navigation parameters for the calculator.
CalculatorNavigationArgs()
Holds navigation parameters for the calculator.
string? Property
Property containing the value to calculate.
CalculatorNavigationArgs(Entry? Entry)
Holds navigation parameters for the calculator.
BaseViewModel? ViewModel
View model containing a bindable property with the value to calculate.