Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ViewSwitcherTransitionRequest.cs
1
using
Microsoft.Maui.Controls;
2
3
namespace
NeuroAccessMaui.UI.Controls
4
{
8
public
sealed
class
ViewSwitcherTransitionRequest
9
{
10
public
ViewSwitcherTransitionRequest
(
11
ViewSwitcher
host,
12
View? oldView,
13
View? newView,
14
bool
isInitial,
15
bool
animate,
16
uint duration,
17
Easing? easing)
18
{
19
this.Host = host;
20
this.OldView = oldView;
21
this.NewView = newView;
22
this.IsInitial = isInitial;
23
this.Animate = animate;
24
this.Duration = duration;
25
this.Easing = easing;
26
}
27
28
public
ViewSwitcher
Host {
get
; }
29
30
public
View? OldView {
get
; }
31
32
public
View? NewView {
get
; }
33
34
public
bool
IsInitial {
get
; }
35
36
public
bool
Animate {
get
; }
37
38
public
uint Duration {
get
; }
39
40
public
Easing? Easing {
get
; }
41
}
42
}
NeuroAccessMaui.UI.Controls.ViewSwitcher
Definition:
ViewSwitcher.cs:23
NeuroAccessMaui.UI.Controls.ViewSwitcherTransitionRequest
Immutable context supplied to IViewTransition implementations.
Definition:
ViewSwitcherTransitionRequest.cs:9
NeuroAccessMaui.UI.Controls
Definition:
AnimatedCheckbox.cs:4
NeuroAccessMaui
NeuroAccessMaui
UI
Controls
Tabs
ViewSwitcherTransitionRequest.cs
Generated by
1.9.5