Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ViewSwitcherSelectionChangedEventArgs.cs
1using System;
2
4{
8 public sealed class ViewSwitcherSelectionChangedEventArgs : EventArgs
9 {
11 int oldIndex,
12 object? oldItem,
13 string? oldStateKey,
14 int newIndex,
15 object? newItem,
16 string? newStateKey)
17 {
18 this.OldIndex = oldIndex;
19 this.OldItem = oldItem;
20 this.OldStateKey = oldStateKey;
21 this.NewIndex = newIndex;
22 this.NewItem = newItem;
23 this.NewStateKey = newStateKey;
24 }
25
26 public int OldIndex { get; }
27
28 public object? OldItem { get; }
29
30 public string? OldStateKey { get; }
31
32 public int NewIndex { get; }
33
34 public object? NewItem { get; }
35
36 public string? NewStateKey { get; }
37 }
38}