Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
LabelDataElement.cs
2{
3 internal static class LabelDataElement
4 {
6 public static readonly BindableProperty LabelDataProperty =
7 BindableProperty.Create(nameof(ILabelDataElement.LabelData), typeof(string), typeof(ILabelDataElement), default(string),
8 propertyChanged: OnLabelDataPropertyChanged);
9
10 static void OnLabelDataPropertyChanged(BindableObject Bindable, object OldValue, object NewValue)
11 {
12 ((ILabelDataElement)Bindable).OnLabelDataPropertyChanged((string)OldValue, (string)NewValue);
13 }
14
16 public static readonly BindableProperty LabelStyleProperty =
17 BindableProperty.Create(nameof(ILabelDataElement.LabelStyle), typeof(Style), typeof(ILabelDataElement), default(Style),
18 propertyChanged: OnLabelStylePropertyChanged);
19
20 static void OnLabelStylePropertyChanged(BindableObject Bindable, object OldValue, object NewValue)
21 {
22 ((ILabelDataElement)Bindable).OnLabelStylePropertyChanged((Style)OldValue, (Style)NewValue);
23 }
24 }
25}