3 internal static class LabelDataElement
6 public static readonly BindableProperty LabelDataProperty =
7 BindableProperty.Create(nameof(ILabelDataElement.LabelData), typeof(
string), typeof(ILabelDataElement),
default(
string),
8 propertyChanged: OnLabelDataPropertyChanged);
10 static void OnLabelDataPropertyChanged(BindableObject Bindable,
object OldValue,
object NewValue)
12 ((ILabelDataElement)Bindable).OnLabelDataPropertyChanged((
string)OldValue, (string)NewValue);
16 public static readonly BindableProperty LabelStyleProperty =
17 BindableProperty.Create(nameof(ILabelDataElement.LabelStyle), typeof(Style), typeof(ILabelDataElement),
default(Style),
18 propertyChanged: OnLabelStylePropertyChanged);
20 static void OnLabelStylePropertyChanged(BindableObject Bindable,
object OldValue,
object NewValue)
22 ((ILabelDataElement)Bindable).OnLabelStylePropertyChanged((Style)OldValue, (Style)NewValue);