3 internal static class BorderDataElement
6 public static readonly BindableProperty BorderStyleProperty =
7 BindableProperty.Create(nameof(IBorderDataElement.BorderStyle), typeof(Style), typeof(IBorderDataElement),
default(Style),
8 propertyChanged: OnBorderStylePropertyChanged);
10 static void OnBorderStylePropertyChanged(BindableObject Bindable,
object OldValue,
object NewValue)
12 ((IBorderDataElement)Bindable).OnBorderStylePropertyChanged((Style)OldValue, (Style)NewValue);