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