Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPathDataElement.cs
1using Microsoft.Maui.Controls.Shapes;
2
4{
5 internal interface IPathDataElement
6 {
7 //note to implementor: implement this property publicly
8 Geometry PathData { get; }
9 Style PathStyle { get; }
10
11 //note to implementor: but implement this method explicitly
12 void OnPathDataPropertyChanged(Geometry OldValue, Geometry NewValue);
13 void OnPathStylePropertyChanged(Style OldValue, Style NewValue);
14 }
15}