Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IEntryDataElement.cs
1using System.Windows.Input;
2
4{
5 internal interface IEntryDataElement
6 {
7 //note to implementor: implement this property publicly
8 string EntryData { get; }
9 string EntryHint { get; }
10 Style EntryStyle { get; }
11 ICommand ReturnCommand { get; }
12 bool IsPassword { get; }
13
14 //note to implementor: but implement this method explicitly
15 void OnEntryDataPropertyChanged(string OldValue, string NewValue);
16 void OnEntryHintPropertyChanged(string OldValue, string NewValue);
17 void OnEntryStylePropertyChanged(Style OldValue, Style NewValue);
18 void OnReturnCommandPropertyChanged(ICommand OldValue, ICommand NewValue);
19 void OnIsPasswordPropertyChanged(bool OldValue, bool NewValue);
20 }
21}