Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IButtonElement.cs
2{
3 internal interface IButtonElement : ICommandElement
4 {
5 //note to implementor: implement this property publicly
7 // bool IsPressed { get; }
8
9
10 //note to implementor: but implement these methods explicitly
11 void PropagateUpClicked();
13 // void PropagateUpPressed();
14 // void PropagateUpReleased();
15 // void SetIsPressed(bool isPressed);
16 }
17}