Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ILabelDataElement.cs
2{
3 internal interface ILabelDataElement
4 {
5 //note to implementor: implement this property publicly
6 string LabelData { get; }
7 Style LabelStyle { get; }
8
9 //note to implementor: but implement this method explicitly
10 void OnLabelDataPropertyChanged(string OldValue, string NewValue);
11 void OnLabelStylePropertyChanged(Style OldValue, Style NewValue);
12 }
13}