Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BorderDataElement.cs
2{
3 internal static class BorderDataElement
4 {
6 public static readonly BindableProperty BorderStyleProperty =
7 BindableProperty.Create(nameof(IBorderDataElement.BorderStyle), typeof(Style), typeof(IBorderDataElement), default(Style),
8 propertyChanged: OnBorderStylePropertyChanged);
9
10 static void OnBorderStylePropertyChanged(BindableObject Bindable, object OldValue, object NewValue)
11 {
12 ((IBorderDataElement)Bindable).OnBorderStylePropertyChanged((Style)OldValue, (Style)NewValue);
13 }
14 }
15}