Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CalculatorNavigationArgs.cs
3
5{
10 {
15 : this(null)
16 {
17 }
18
24 {
25 this.Entry = Entry;
26 this.ViewModel = null;
27 this.Property = null;
28 }
29
36 {
37 this.Entry = null;
38 this.ViewModel = ViewModel;
39 this.Property = Property;
40 }
41
45 public CompositeEntry? Entry { get; }
46
50 public BaseViewModel? ViewModel { get; }
51
55 public string? Property { get; }
56 }
57}
An base class holding page specific navigation parameters.
A customizable entry control that allows setting views on the left and right sides of the entry.
A base class for all view models, inheriting from the BindableObject. NOTE: using this class requir...
CompositeEntry? Entry
Entry whose value is being calculated.
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(CompositeEntry? Entry)
Holds navigation parameters for the calculator.
BaseViewModel? ViewModel
View model containing a bindable property with the value to calculate.