win32more-Microsoft.WindowsAppSDK 0.6.1.5.240227000__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.
- win32more/Microsoft/Foundation/__init__.py +7 -0
- win32more/Microsoft/Graphics/DirectX/__init__.py +167 -0
- win32more/Microsoft/Graphics/Display/__init__.py +174 -0
- win32more/Microsoft/UI/Composition/Core/__init__.py +52 -0
- win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +63 -0
- win32more/Microsoft/UI/Composition/Effects/__init__.py +96 -0
- win32more/Microsoft/UI/Composition/Interactions/__init__.py +951 -0
- win32more/Microsoft/UI/Composition/Scenes/__init__.py +671 -0
- win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +356 -0
- win32more/Microsoft/UI/Composition/__init__.py +4793 -0
- win32more/Microsoft/UI/Content/__init__.py +918 -0
- win32more/Microsoft/UI/Dispatching/__init__.py +241 -0
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +235 -0
- win32more/Microsoft/UI/Input/Interop/__init__.py +19 -0
- win32more/Microsoft/UI/Input/__init__.py +1927 -0
- win32more/Microsoft/UI/System/__init__.py +46 -0
- win32more/Microsoft/UI/Text/__init__.py +1090 -0
- win32more/Microsoft/UI/Windowing/__init__.py +877 -0
- win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +3414 -0
- win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py +489 -0
- win32more/Microsoft/UI/Xaml/Automation/Text/__init__.py +17 -0
- win32more/Microsoft/UI/Xaml/Automation/__init__.py +1607 -0
- win32more/Microsoft/UI/Xaml/Controls/AnimatedVisuals/__init__.py +170 -0
- win32more/Microsoft/UI/Xaml/Controls/Primitives/__init__.py +6458 -0
- win32more/Microsoft/UI/Xaml/Controls/__init__.py +31159 -0
- win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +7 -0
- win32more/Microsoft/UI/Xaml/Data/__init__.py +670 -0
- win32more/Microsoft/UI/Xaml/Documents/__init__.py +2030 -0
- win32more/Microsoft/UI/Xaml/Hosting/__init__.py +329 -0
- win32more/Microsoft/UI/Xaml/Input/__init__.py +1985 -0
- win32more/Microsoft/UI/Xaml/Interop/__init__.py +148 -0
- win32more/Microsoft/UI/Xaml/Markup/__init__.py +391 -0
- win32more/Microsoft/UI/Xaml/Media/Animation/__init__.py +4167 -0
- win32more/Microsoft/UI/Xaml/Media/Imaging/__init__.py +632 -0
- win32more/Microsoft/UI/Xaml/Media/Media3D/__init__.py +373 -0
- win32more/Microsoft/UI/Xaml/Media/__init__.py +3510 -0
- win32more/Microsoft/UI/Xaml/Navigation/__init__.py +255 -0
- win32more/Microsoft/UI/Xaml/Printing/__init__.py +193 -0
- win32more/Microsoft/UI/Xaml/Resources/__init__.py +53 -0
- win32more/Microsoft/UI/Xaml/Shapes/__init__.py +538 -0
- win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py +39 -0
- win32more/Microsoft/UI/Xaml/__init__.py +6010 -0
- win32more/Microsoft/UI/__init__.py +912 -0
- win32more/Microsoft/Web/WebView2/Core/__init__.py +4685 -0
- win32more/Microsoft/Windows/AppLifecycle/__init__.py +180 -0
- win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +572 -0
- win32more/Microsoft/Windows/AppNotifications/__init__.py +333 -0
- win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py +244 -0
- win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +322 -0
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +114 -0
- win32more/Microsoft/Windows/Management/Deployment/__init__.py +1114 -0
- win32more/Microsoft/Windows/PushNotifications/__init__.py +146 -0
- win32more/Microsoft/Windows/Security/AccessControl/__init__.py +25 -0
- win32more/Microsoft/Windows/System/Power/__init__.py +223 -0
- win32more/Microsoft/Windows/System/__init__.py +78 -0
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +181 -0
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py +325 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +11 -0
- win32more/appsdk/versioninfo.py +3 -0
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/METADATA +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/RECORD +66 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/WHEEL +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +90 -0
|
@@ -0,0 +1,4167 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Composition
|
|
4
|
+
import win32more.Microsoft.UI.Xaml
|
|
5
|
+
import win32more.Microsoft.UI.Xaml.Controls
|
|
6
|
+
import win32more.Microsoft.UI.Xaml.Controls.Primitives
|
|
7
|
+
import win32more.Microsoft.UI.Xaml.Media.Animation
|
|
8
|
+
import win32more.Windows.Foundation
|
|
9
|
+
import win32more.Windows.Foundation.Collections
|
|
10
|
+
import win32more.Windows.UI
|
|
11
|
+
class AddDeleteThemeTransition(ComPtr):
|
|
12
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
13
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IAddDeleteThemeTransition
|
|
14
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.AddDeleteThemeTransition'
|
|
15
|
+
def __init__(self, *args, **kwargs):
|
|
16
|
+
if kwargs:
|
|
17
|
+
super().__init__(**kwargs)
|
|
18
|
+
elif len(args) == 0:
|
|
19
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.AddDeleteThemeTransition.CreateInstance(*args))
|
|
20
|
+
else:
|
|
21
|
+
raise ValueError('no matched constructor')
|
|
22
|
+
@winrt_activatemethod
|
|
23
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.AddDeleteThemeTransition: ...
|
|
24
|
+
class _BackEase_Meta_(ComPtr.__class__):
|
|
25
|
+
pass
|
|
26
|
+
class BackEase(ComPtr, metaclass=_BackEase_Meta_):
|
|
27
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
28
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IBackEase
|
|
29
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.BackEase'
|
|
30
|
+
def __init__(self, *args, **kwargs):
|
|
31
|
+
if kwargs:
|
|
32
|
+
super().__init__(**kwargs)
|
|
33
|
+
elif len(args) == 0:
|
|
34
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.BackEase.CreateInstance(*args))
|
|
35
|
+
else:
|
|
36
|
+
raise ValueError('no matched constructor')
|
|
37
|
+
@winrt_activatemethod
|
|
38
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.BackEase: ...
|
|
39
|
+
@winrt_mixinmethod
|
|
40
|
+
def get_Amplitude(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBackEase) -> Double: ...
|
|
41
|
+
@winrt_mixinmethod
|
|
42
|
+
def put_Amplitude(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBackEase, value: Double) -> Void: ...
|
|
43
|
+
@winrt_classmethod
|
|
44
|
+
def get_AmplitudeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IBackEaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
45
|
+
Amplitude = property(get_Amplitude, put_Amplitude)
|
|
46
|
+
_BackEase_Meta_.AmplitudeProperty = property(get_AmplitudeProperty, None)
|
|
47
|
+
class BasicConnectedAnimationConfiguration(ComPtr):
|
|
48
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration
|
|
49
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IBasicConnectedAnimationConfiguration
|
|
50
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.BasicConnectedAnimationConfiguration'
|
|
51
|
+
def __init__(self, *args, **kwargs):
|
|
52
|
+
if kwargs:
|
|
53
|
+
super().__init__(**kwargs)
|
|
54
|
+
elif len(args) == 0:
|
|
55
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.BasicConnectedAnimationConfiguration.CreateInstance(*args, None, None))
|
|
56
|
+
else:
|
|
57
|
+
raise ValueError('no matched constructor')
|
|
58
|
+
@winrt_factorymethod
|
|
59
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IBasicConnectedAnimationConfigurationFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.BasicConnectedAnimationConfiguration: ...
|
|
60
|
+
class _BeginStoryboard_Meta_(ComPtr.__class__):
|
|
61
|
+
pass
|
|
62
|
+
class BeginStoryboard(ComPtr, metaclass=_BeginStoryboard_Meta_):
|
|
63
|
+
extends: win32more.Microsoft.UI.Xaml.TriggerAction
|
|
64
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IBeginStoryboard
|
|
65
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.BeginStoryboard'
|
|
66
|
+
def __init__(self, *args, **kwargs):
|
|
67
|
+
if kwargs:
|
|
68
|
+
super().__init__(**kwargs)
|
|
69
|
+
elif len(args) == 0:
|
|
70
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.BeginStoryboard.CreateInstance(*args))
|
|
71
|
+
else:
|
|
72
|
+
raise ValueError('no matched constructor')
|
|
73
|
+
@winrt_activatemethod
|
|
74
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.BeginStoryboard: ...
|
|
75
|
+
@winrt_mixinmethod
|
|
76
|
+
def get_Storyboard(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBeginStoryboard) -> win32more.Microsoft.UI.Xaml.Media.Animation.Storyboard: ...
|
|
77
|
+
@winrt_mixinmethod
|
|
78
|
+
def put_Storyboard(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBeginStoryboard, value: win32more.Microsoft.UI.Xaml.Media.Animation.Storyboard) -> Void: ...
|
|
79
|
+
@winrt_classmethod
|
|
80
|
+
def get_StoryboardProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IBeginStoryboardStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
81
|
+
Storyboard = property(get_Storyboard, put_Storyboard)
|
|
82
|
+
_BeginStoryboard_Meta_.StoryboardProperty = property(get_StoryboardProperty, None)
|
|
83
|
+
class _BounceEase_Meta_(ComPtr.__class__):
|
|
84
|
+
pass
|
|
85
|
+
class BounceEase(ComPtr, metaclass=_BounceEase_Meta_):
|
|
86
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
87
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IBounceEase
|
|
88
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.BounceEase'
|
|
89
|
+
def __init__(self, *args, **kwargs):
|
|
90
|
+
if kwargs:
|
|
91
|
+
super().__init__(**kwargs)
|
|
92
|
+
elif len(args) == 0:
|
|
93
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.BounceEase.CreateInstance(*args))
|
|
94
|
+
else:
|
|
95
|
+
raise ValueError('no matched constructor')
|
|
96
|
+
@winrt_activatemethod
|
|
97
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.BounceEase: ...
|
|
98
|
+
@winrt_mixinmethod
|
|
99
|
+
def get_Bounces(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBounceEase) -> Int32: ...
|
|
100
|
+
@winrt_mixinmethod
|
|
101
|
+
def put_Bounces(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBounceEase, value: Int32) -> Void: ...
|
|
102
|
+
@winrt_mixinmethod
|
|
103
|
+
def get_Bounciness(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBounceEase) -> Double: ...
|
|
104
|
+
@winrt_mixinmethod
|
|
105
|
+
def put_Bounciness(self: win32more.Microsoft.UI.Xaml.Media.Animation.IBounceEase, value: Double) -> Void: ...
|
|
106
|
+
@winrt_classmethod
|
|
107
|
+
def get_BouncesProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IBounceEaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
108
|
+
@winrt_classmethod
|
|
109
|
+
def get_BouncinessProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IBounceEaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
110
|
+
Bounces = property(get_Bounces, put_Bounces)
|
|
111
|
+
Bounciness = property(get_Bounciness, put_Bounciness)
|
|
112
|
+
_BounceEase_Meta_.BouncesProperty = property(get_BouncesProperty, None)
|
|
113
|
+
_BounceEase_Meta_.BouncinessProperty = property(get_BouncinessProperty, None)
|
|
114
|
+
class CircleEase(ComPtr):
|
|
115
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
116
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ICircleEase
|
|
117
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.CircleEase'
|
|
118
|
+
def __init__(self, *args, **kwargs):
|
|
119
|
+
if kwargs:
|
|
120
|
+
super().__init__(**kwargs)
|
|
121
|
+
elif len(args) == 0:
|
|
122
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.CircleEase.CreateInstance(*args))
|
|
123
|
+
else:
|
|
124
|
+
raise ValueError('no matched constructor')
|
|
125
|
+
@winrt_activatemethod
|
|
126
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.CircleEase: ...
|
|
127
|
+
class ClockState(Enum, Int32):
|
|
128
|
+
Active = 0
|
|
129
|
+
Filling = 1
|
|
130
|
+
Stopped = 2
|
|
131
|
+
class _ColorAnimation_Meta_(ComPtr.__class__):
|
|
132
|
+
pass
|
|
133
|
+
class ColorAnimation(ComPtr, metaclass=_ColorAnimation_Meta_):
|
|
134
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
135
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation
|
|
136
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ColorAnimation'
|
|
137
|
+
def __init__(self, *args, **kwargs):
|
|
138
|
+
if kwargs:
|
|
139
|
+
super().__init__(**kwargs)
|
|
140
|
+
elif len(args) == 0:
|
|
141
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ColorAnimation.CreateInstance(*args))
|
|
142
|
+
else:
|
|
143
|
+
raise ValueError('no matched constructor')
|
|
144
|
+
@winrt_activatemethod
|
|
145
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorAnimation: ...
|
|
146
|
+
@winrt_mixinmethod
|
|
147
|
+
def get_From(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
148
|
+
@winrt_mixinmethod
|
|
149
|
+
def put_From(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
150
|
+
@winrt_mixinmethod
|
|
151
|
+
def get_To(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
152
|
+
@winrt_mixinmethod
|
|
153
|
+
def put_To(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
154
|
+
@winrt_mixinmethod
|
|
155
|
+
def get_By(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
156
|
+
@winrt_mixinmethod
|
|
157
|
+
def put_By(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
158
|
+
@winrt_mixinmethod
|
|
159
|
+
def get_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
160
|
+
@winrt_mixinmethod
|
|
161
|
+
def put_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
162
|
+
@winrt_mixinmethod
|
|
163
|
+
def get_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation) -> Boolean: ...
|
|
164
|
+
@winrt_mixinmethod
|
|
165
|
+
def put_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimation, value: Boolean) -> Void: ...
|
|
166
|
+
@winrt_classmethod
|
|
167
|
+
def get_FromProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
168
|
+
@winrt_classmethod
|
|
169
|
+
def get_ToProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
170
|
+
@winrt_classmethod
|
|
171
|
+
def get_ByProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
172
|
+
@winrt_classmethod
|
|
173
|
+
def get_EasingFunctionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
174
|
+
@winrt_classmethod
|
|
175
|
+
def get_EnableDependentAnimationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
176
|
+
By = property(get_By, put_By)
|
|
177
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
178
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
179
|
+
From = property(get_From, put_From)
|
|
180
|
+
To = property(get_To, put_To)
|
|
181
|
+
_ColorAnimation_Meta_.ByProperty = property(get_ByProperty, None)
|
|
182
|
+
_ColorAnimation_Meta_.EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
183
|
+
_ColorAnimation_Meta_.EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
184
|
+
_ColorAnimation_Meta_.FromProperty = property(get_FromProperty, None)
|
|
185
|
+
_ColorAnimation_Meta_.ToProperty = property(get_ToProperty, None)
|
|
186
|
+
class _ColorAnimationUsingKeyFrames_Meta_(ComPtr.__class__):
|
|
187
|
+
pass
|
|
188
|
+
class ColorAnimationUsingKeyFrames(ComPtr, metaclass=_ColorAnimationUsingKeyFrames_Meta_):
|
|
189
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
190
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationUsingKeyFrames
|
|
191
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ColorAnimationUsingKeyFrames'
|
|
192
|
+
def __init__(self, *args, **kwargs):
|
|
193
|
+
if kwargs:
|
|
194
|
+
super().__init__(**kwargs)
|
|
195
|
+
elif len(args) == 0:
|
|
196
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ColorAnimationUsingKeyFrames.CreateInstance(*args))
|
|
197
|
+
else:
|
|
198
|
+
raise ValueError('no matched constructor')
|
|
199
|
+
@winrt_activatemethod
|
|
200
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorAnimationUsingKeyFrames: ...
|
|
201
|
+
@winrt_mixinmethod
|
|
202
|
+
def get_KeyFrames(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationUsingKeyFrames) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrameCollection: ...
|
|
203
|
+
@winrt_mixinmethod
|
|
204
|
+
def get_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationUsingKeyFrames) -> Boolean: ...
|
|
205
|
+
@winrt_mixinmethod
|
|
206
|
+
def put_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationUsingKeyFrames, value: Boolean) -> Void: ...
|
|
207
|
+
@winrt_classmethod
|
|
208
|
+
def get_EnableDependentAnimationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorAnimationUsingKeyFramesStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
209
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
210
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
211
|
+
_ColorAnimationUsingKeyFrames_Meta_.EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
212
|
+
class _ColorKeyFrame_Meta_(ComPtr.__class__):
|
|
213
|
+
pass
|
|
214
|
+
class ColorKeyFrame(ComPtr, metaclass=_ColorKeyFrame_Meta_):
|
|
215
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
216
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrame
|
|
217
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame'
|
|
218
|
+
def __init__(self, *args, **kwargs):
|
|
219
|
+
if kwargs:
|
|
220
|
+
super().__init__(**kwargs)
|
|
221
|
+
elif len(args) == 0:
|
|
222
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame.CreateInstance(*args, None, None))
|
|
223
|
+
else:
|
|
224
|
+
raise ValueError('no matched constructor')
|
|
225
|
+
@winrt_factorymethod
|
|
226
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrameFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame: ...
|
|
227
|
+
@winrt_mixinmethod
|
|
228
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrame) -> win32more.Windows.UI.Color: ...
|
|
229
|
+
@winrt_mixinmethod
|
|
230
|
+
def put_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrame, value: win32more.Windows.UI.Color) -> Void: ...
|
|
231
|
+
@winrt_mixinmethod
|
|
232
|
+
def get_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
233
|
+
@winrt_mixinmethod
|
|
234
|
+
def put_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
235
|
+
@winrt_classmethod
|
|
236
|
+
def get_ValueProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
237
|
+
@winrt_classmethod
|
|
238
|
+
def get_KeyTimeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IColorKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
239
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
240
|
+
Value = property(get_Value, put_Value)
|
|
241
|
+
_ColorKeyFrame_Meta_.KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
242
|
+
_ColorKeyFrame_Meta_.ValueProperty = property(get_ValueProperty, None)
|
|
243
|
+
class ColorKeyFrameCollection(ComPtr):
|
|
244
|
+
extends: IInspectable
|
|
245
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]]
|
|
246
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]
|
|
247
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ColorKeyFrameCollection'
|
|
248
|
+
def __init__(self, *args, **kwargs):
|
|
249
|
+
if kwargs:
|
|
250
|
+
super().__init__(**kwargs)
|
|
251
|
+
elif len(args) == 0:
|
|
252
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrameCollection.CreateInstance(*args))
|
|
253
|
+
else:
|
|
254
|
+
raise ValueError('no matched constructor')
|
|
255
|
+
@winrt_activatemethod
|
|
256
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrameCollection: ...
|
|
257
|
+
@winrt_mixinmethod
|
|
258
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame: ...
|
|
259
|
+
@winrt_mixinmethod
|
|
260
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]) -> UInt32: ...
|
|
261
|
+
@winrt_mixinmethod
|
|
262
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]: ...
|
|
263
|
+
@winrt_mixinmethod
|
|
264
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame, index: POINTER(UInt32)) -> Boolean: ...
|
|
265
|
+
@winrt_mixinmethod
|
|
266
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame) -> Void: ...
|
|
267
|
+
@winrt_mixinmethod
|
|
268
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame) -> Void: ...
|
|
269
|
+
@winrt_mixinmethod
|
|
270
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], index: UInt32) -> Void: ...
|
|
271
|
+
@winrt_mixinmethod
|
|
272
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame) -> Void: ...
|
|
273
|
+
@winrt_mixinmethod
|
|
274
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]) -> Void: ...
|
|
275
|
+
@winrt_mixinmethod
|
|
276
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]) -> Void: ...
|
|
277
|
+
@winrt_mixinmethod
|
|
278
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]) -> UInt32: ...
|
|
279
|
+
@winrt_mixinmethod
|
|
280
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]) -> Void: ...
|
|
281
|
+
@winrt_mixinmethod
|
|
282
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame]: ...
|
|
283
|
+
Size = property(get_Size, None)
|
|
284
|
+
class _CommonNavigationTransitionInfo_Meta_(ComPtr.__class__):
|
|
285
|
+
pass
|
|
286
|
+
class CommonNavigationTransitionInfo(ComPtr, metaclass=_CommonNavigationTransitionInfo_Meta_):
|
|
287
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo
|
|
288
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfo
|
|
289
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.CommonNavigationTransitionInfo'
|
|
290
|
+
def __init__(self, *args, **kwargs):
|
|
291
|
+
if kwargs:
|
|
292
|
+
super().__init__(**kwargs)
|
|
293
|
+
elif len(args) == 0:
|
|
294
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.CommonNavigationTransitionInfo.CreateInstance(*args))
|
|
295
|
+
else:
|
|
296
|
+
raise ValueError('no matched constructor')
|
|
297
|
+
@winrt_activatemethod
|
|
298
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.CommonNavigationTransitionInfo: ...
|
|
299
|
+
@winrt_mixinmethod
|
|
300
|
+
def get_IsStaggeringEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfo) -> Boolean: ...
|
|
301
|
+
@winrt_mixinmethod
|
|
302
|
+
def put_IsStaggeringEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfo, value: Boolean) -> Void: ...
|
|
303
|
+
@winrt_classmethod
|
|
304
|
+
def get_IsStaggeringEnabledProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
305
|
+
@winrt_classmethod
|
|
306
|
+
def get_IsStaggerElementProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
307
|
+
@winrt_classmethod
|
|
308
|
+
def GetIsStaggerElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
309
|
+
@winrt_classmethod
|
|
310
|
+
def SetIsStaggerElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
311
|
+
IsStaggeringEnabled = property(get_IsStaggeringEnabled, put_IsStaggeringEnabled)
|
|
312
|
+
_CommonNavigationTransitionInfo_Meta_.IsStaggerElementProperty = property(get_IsStaggerElementProperty, None)
|
|
313
|
+
_CommonNavigationTransitionInfo_Meta_.IsStaggeringEnabledProperty = property(get_IsStaggeringEnabledProperty, None)
|
|
314
|
+
class ConnectedAnimation(ComPtr):
|
|
315
|
+
extends: IInspectable
|
|
316
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation
|
|
317
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ConnectedAnimation'
|
|
318
|
+
@winrt_mixinmethod
|
|
319
|
+
def get_IsScaleAnimationEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation) -> Boolean: ...
|
|
320
|
+
@winrt_mixinmethod
|
|
321
|
+
def put_IsScaleAnimationEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation, value: Boolean) -> Void: ...
|
|
322
|
+
@winrt_mixinmethod
|
|
323
|
+
def get_Configuration(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration: ...
|
|
324
|
+
@winrt_mixinmethod
|
|
325
|
+
def put_Configuration(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation, value: win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration) -> Void: ...
|
|
326
|
+
@winrt_mixinmethod
|
|
327
|
+
def add_Completed(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
328
|
+
@winrt_mixinmethod
|
|
329
|
+
def remove_Completed(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
330
|
+
@winrt_mixinmethod
|
|
331
|
+
def TryStart(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation, destination: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
332
|
+
@winrt_mixinmethod
|
|
333
|
+
def TryStartWithCoordinatedElements(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation, destination: win32more.Microsoft.UI.Xaml.UIElement, coordinatedElements: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]) -> Boolean: ...
|
|
334
|
+
@winrt_mixinmethod
|
|
335
|
+
def Cancel(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation) -> Void: ...
|
|
336
|
+
@winrt_mixinmethod
|
|
337
|
+
def SetAnimationComponent(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation, component: win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationComponent, animation: win32more.Microsoft.UI.Composition.ICompositionAnimationBase) -> Void: ...
|
|
338
|
+
Configuration = property(get_Configuration, put_Configuration)
|
|
339
|
+
IsScaleAnimationEnabled = property(get_IsScaleAnimationEnabled, put_IsScaleAnimationEnabled)
|
|
340
|
+
Completed = event()
|
|
341
|
+
class ConnectedAnimationComponent(Enum, Int32):
|
|
342
|
+
OffsetX = 0
|
|
343
|
+
OffsetY = 1
|
|
344
|
+
CrossFade = 2
|
|
345
|
+
Scale = 3
|
|
346
|
+
class ConnectedAnimationConfiguration(ComPtr):
|
|
347
|
+
extends: IInspectable
|
|
348
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationConfiguration
|
|
349
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration'
|
|
350
|
+
class ConnectedAnimationService(ComPtr):
|
|
351
|
+
extends: IInspectable
|
|
352
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService
|
|
353
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationService'
|
|
354
|
+
@winrt_mixinmethod
|
|
355
|
+
def get_DefaultDuration(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
356
|
+
@winrt_mixinmethod
|
|
357
|
+
def put_DefaultDuration(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
358
|
+
@winrt_mixinmethod
|
|
359
|
+
def get_DefaultEasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService) -> win32more.Microsoft.UI.Composition.CompositionEasingFunction: ...
|
|
360
|
+
@winrt_mixinmethod
|
|
361
|
+
def put_DefaultEasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService, value: win32more.Microsoft.UI.Composition.CompositionEasingFunction) -> Void: ...
|
|
362
|
+
@winrt_mixinmethod
|
|
363
|
+
def PrepareToAnimate(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService, key: WinRT_String, source: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimation: ...
|
|
364
|
+
@winrt_mixinmethod
|
|
365
|
+
def GetAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService, key: WinRT_String) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimation: ...
|
|
366
|
+
@winrt_classmethod
|
|
367
|
+
def GetForCurrentView(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationServiceStatics) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationService: ...
|
|
368
|
+
DefaultDuration = property(get_DefaultDuration, put_DefaultDuration)
|
|
369
|
+
DefaultEasingFunction = property(get_DefaultEasingFunction, put_DefaultEasingFunction)
|
|
370
|
+
class _ContentThemeTransition_Meta_(ComPtr.__class__):
|
|
371
|
+
pass
|
|
372
|
+
class ContentThemeTransition(ComPtr, metaclass=_ContentThemeTransition_Meta_):
|
|
373
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
374
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IContentThemeTransition
|
|
375
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ContentThemeTransition'
|
|
376
|
+
def __init__(self, *args, **kwargs):
|
|
377
|
+
if kwargs:
|
|
378
|
+
super().__init__(**kwargs)
|
|
379
|
+
elif len(args) == 0:
|
|
380
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ContentThemeTransition.CreateInstance(*args))
|
|
381
|
+
else:
|
|
382
|
+
raise ValueError('no matched constructor')
|
|
383
|
+
@winrt_activatemethod
|
|
384
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ContentThemeTransition: ...
|
|
385
|
+
@winrt_mixinmethod
|
|
386
|
+
def get_HorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IContentThemeTransition) -> Double: ...
|
|
387
|
+
@winrt_mixinmethod
|
|
388
|
+
def put_HorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IContentThemeTransition, value: Double) -> Void: ...
|
|
389
|
+
@winrt_mixinmethod
|
|
390
|
+
def get_VerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IContentThemeTransition) -> Double: ...
|
|
391
|
+
@winrt_mixinmethod
|
|
392
|
+
def put_VerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IContentThemeTransition, value: Double) -> Void: ...
|
|
393
|
+
@winrt_classmethod
|
|
394
|
+
def get_HorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContentThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
395
|
+
@winrt_classmethod
|
|
396
|
+
def get_VerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContentThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
397
|
+
HorizontalOffset = property(get_HorizontalOffset, put_HorizontalOffset)
|
|
398
|
+
VerticalOffset = property(get_VerticalOffset, put_VerticalOffset)
|
|
399
|
+
_ContentThemeTransition_Meta_.HorizontalOffsetProperty = property(get_HorizontalOffsetProperty, None)
|
|
400
|
+
_ContentThemeTransition_Meta_.VerticalOffsetProperty = property(get_VerticalOffsetProperty, None)
|
|
401
|
+
class _ContinuumNavigationTransitionInfo_Meta_(ComPtr.__class__):
|
|
402
|
+
pass
|
|
403
|
+
class ContinuumNavigationTransitionInfo(ComPtr, metaclass=_ContinuumNavigationTransitionInfo_Meta_):
|
|
404
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo
|
|
405
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfo
|
|
406
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ContinuumNavigationTransitionInfo'
|
|
407
|
+
def __init__(self, *args, **kwargs):
|
|
408
|
+
if kwargs:
|
|
409
|
+
super().__init__(**kwargs)
|
|
410
|
+
elif len(args) == 0:
|
|
411
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ContinuumNavigationTransitionInfo.CreateInstance(*args))
|
|
412
|
+
else:
|
|
413
|
+
raise ValueError('no matched constructor')
|
|
414
|
+
@winrt_activatemethod
|
|
415
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ContinuumNavigationTransitionInfo: ...
|
|
416
|
+
@winrt_mixinmethod
|
|
417
|
+
def get_ExitElement(self: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfo) -> win32more.Microsoft.UI.Xaml.UIElement: ...
|
|
418
|
+
@winrt_mixinmethod
|
|
419
|
+
def put_ExitElement(self: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfo, value: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
420
|
+
@winrt_classmethod
|
|
421
|
+
def get_ExitElementProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
422
|
+
@winrt_classmethod
|
|
423
|
+
def get_IsEntranceElementProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
424
|
+
@winrt_classmethod
|
|
425
|
+
def GetIsEntranceElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
426
|
+
@winrt_classmethod
|
|
427
|
+
def SetIsEntranceElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
428
|
+
@winrt_classmethod
|
|
429
|
+
def get_IsExitElementProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
430
|
+
@winrt_classmethod
|
|
431
|
+
def GetIsExitElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
432
|
+
@winrt_classmethod
|
|
433
|
+
def SetIsExitElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
434
|
+
@winrt_classmethod
|
|
435
|
+
def get_ExitElementContainerProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
436
|
+
@winrt_classmethod
|
|
437
|
+
def GetExitElementContainer(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.Controls.ListViewBase) -> Boolean: ...
|
|
438
|
+
@winrt_classmethod
|
|
439
|
+
def SetExitElementContainer(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.Controls.ListViewBase, value: Boolean) -> Void: ...
|
|
440
|
+
ExitElement = property(get_ExitElement, put_ExitElement)
|
|
441
|
+
_ContinuumNavigationTransitionInfo_Meta_.ExitElementContainerProperty = property(get_ExitElementContainerProperty, None)
|
|
442
|
+
_ContinuumNavigationTransitionInfo_Meta_.ExitElementProperty = property(get_ExitElementProperty, None)
|
|
443
|
+
_ContinuumNavigationTransitionInfo_Meta_.IsEntranceElementProperty = property(get_IsEntranceElementProperty, None)
|
|
444
|
+
_ContinuumNavigationTransitionInfo_Meta_.IsExitElementProperty = property(get_IsExitElementProperty, None)
|
|
445
|
+
class CubicEase(ComPtr):
|
|
446
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
447
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ICubicEase
|
|
448
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.CubicEase'
|
|
449
|
+
def __init__(self, *args, **kwargs):
|
|
450
|
+
if kwargs:
|
|
451
|
+
super().__init__(**kwargs)
|
|
452
|
+
elif len(args) == 0:
|
|
453
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.CubicEase.CreateInstance(*args))
|
|
454
|
+
else:
|
|
455
|
+
raise ValueError('no matched constructor')
|
|
456
|
+
@winrt_activatemethod
|
|
457
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.CubicEase: ...
|
|
458
|
+
class DirectConnectedAnimationConfiguration(ComPtr):
|
|
459
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration
|
|
460
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDirectConnectedAnimationConfiguration
|
|
461
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DirectConnectedAnimationConfiguration'
|
|
462
|
+
def __init__(self, *args, **kwargs):
|
|
463
|
+
if kwargs:
|
|
464
|
+
super().__init__(**kwargs)
|
|
465
|
+
elif len(args) == 0:
|
|
466
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DirectConnectedAnimationConfiguration.CreateInstance(*args, None, None))
|
|
467
|
+
else:
|
|
468
|
+
raise ValueError('no matched constructor')
|
|
469
|
+
@winrt_factorymethod
|
|
470
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDirectConnectedAnimationConfigurationFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.DirectConnectedAnimationConfiguration: ...
|
|
471
|
+
class DiscreteColorKeyFrame(ComPtr):
|
|
472
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame
|
|
473
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDiscreteColorKeyFrame
|
|
474
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DiscreteColorKeyFrame'
|
|
475
|
+
def __init__(self, *args, **kwargs):
|
|
476
|
+
if kwargs:
|
|
477
|
+
super().__init__(**kwargs)
|
|
478
|
+
elif len(args) == 0:
|
|
479
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DiscreteColorKeyFrame.CreateInstance(*args))
|
|
480
|
+
else:
|
|
481
|
+
raise ValueError('no matched constructor')
|
|
482
|
+
@winrt_activatemethod
|
|
483
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DiscreteColorKeyFrame: ...
|
|
484
|
+
class DiscreteDoubleKeyFrame(ComPtr):
|
|
485
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame
|
|
486
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDiscreteDoubleKeyFrame
|
|
487
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DiscreteDoubleKeyFrame'
|
|
488
|
+
def __init__(self, *args, **kwargs):
|
|
489
|
+
if kwargs:
|
|
490
|
+
super().__init__(**kwargs)
|
|
491
|
+
elif len(args) == 0:
|
|
492
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DiscreteDoubleKeyFrame.CreateInstance(*args))
|
|
493
|
+
else:
|
|
494
|
+
raise ValueError('no matched constructor')
|
|
495
|
+
@winrt_activatemethod
|
|
496
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DiscreteDoubleKeyFrame: ...
|
|
497
|
+
class DiscreteObjectKeyFrame(ComPtr):
|
|
498
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame
|
|
499
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDiscreteObjectKeyFrame
|
|
500
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DiscreteObjectKeyFrame'
|
|
501
|
+
def __init__(self, *args, **kwargs):
|
|
502
|
+
if kwargs:
|
|
503
|
+
super().__init__(**kwargs)
|
|
504
|
+
elif len(args) == 0:
|
|
505
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DiscreteObjectKeyFrame.CreateInstance(*args))
|
|
506
|
+
else:
|
|
507
|
+
raise ValueError('no matched constructor')
|
|
508
|
+
@winrt_activatemethod
|
|
509
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DiscreteObjectKeyFrame: ...
|
|
510
|
+
class DiscretePointKeyFrame(ComPtr):
|
|
511
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame
|
|
512
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDiscretePointKeyFrame
|
|
513
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DiscretePointKeyFrame'
|
|
514
|
+
def __init__(self, *args, **kwargs):
|
|
515
|
+
if kwargs:
|
|
516
|
+
super().__init__(**kwargs)
|
|
517
|
+
elif len(args) == 0:
|
|
518
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DiscretePointKeyFrame.CreateInstance(*args))
|
|
519
|
+
else:
|
|
520
|
+
raise ValueError('no matched constructor')
|
|
521
|
+
@winrt_activatemethod
|
|
522
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DiscretePointKeyFrame: ...
|
|
523
|
+
class _DoubleAnimation_Meta_(ComPtr.__class__):
|
|
524
|
+
pass
|
|
525
|
+
class DoubleAnimation(ComPtr, metaclass=_DoubleAnimation_Meta_):
|
|
526
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
527
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation
|
|
528
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DoubleAnimation'
|
|
529
|
+
def __init__(self, *args, **kwargs):
|
|
530
|
+
if kwargs:
|
|
531
|
+
super().__init__(**kwargs)
|
|
532
|
+
elif len(args) == 0:
|
|
533
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DoubleAnimation.CreateInstance(*args))
|
|
534
|
+
else:
|
|
535
|
+
raise ValueError('no matched constructor')
|
|
536
|
+
@winrt_activatemethod
|
|
537
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleAnimation: ...
|
|
538
|
+
@winrt_mixinmethod
|
|
539
|
+
def get_From(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
540
|
+
@winrt_mixinmethod
|
|
541
|
+
def put_From(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
542
|
+
@winrt_mixinmethod
|
|
543
|
+
def get_To(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
544
|
+
@winrt_mixinmethod
|
|
545
|
+
def put_To(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
546
|
+
@winrt_mixinmethod
|
|
547
|
+
def get_By(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
548
|
+
@winrt_mixinmethod
|
|
549
|
+
def put_By(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
550
|
+
@winrt_mixinmethod
|
|
551
|
+
def get_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
552
|
+
@winrt_mixinmethod
|
|
553
|
+
def put_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
554
|
+
@winrt_mixinmethod
|
|
555
|
+
def get_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation) -> Boolean: ...
|
|
556
|
+
@winrt_mixinmethod
|
|
557
|
+
def put_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation, value: Boolean) -> Void: ...
|
|
558
|
+
@winrt_classmethod
|
|
559
|
+
def get_FromProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
560
|
+
@winrt_classmethod
|
|
561
|
+
def get_ToProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
562
|
+
@winrt_classmethod
|
|
563
|
+
def get_ByProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
564
|
+
@winrt_classmethod
|
|
565
|
+
def get_EasingFunctionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
566
|
+
@winrt_classmethod
|
|
567
|
+
def get_EnableDependentAnimationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
568
|
+
By = property(get_By, put_By)
|
|
569
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
570
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
571
|
+
From = property(get_From, put_From)
|
|
572
|
+
To = property(get_To, put_To)
|
|
573
|
+
_DoubleAnimation_Meta_.ByProperty = property(get_ByProperty, None)
|
|
574
|
+
_DoubleAnimation_Meta_.EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
575
|
+
_DoubleAnimation_Meta_.EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
576
|
+
_DoubleAnimation_Meta_.FromProperty = property(get_FromProperty, None)
|
|
577
|
+
_DoubleAnimation_Meta_.ToProperty = property(get_ToProperty, None)
|
|
578
|
+
class _DoubleAnimationUsingKeyFrames_Meta_(ComPtr.__class__):
|
|
579
|
+
pass
|
|
580
|
+
class DoubleAnimationUsingKeyFrames(ComPtr, metaclass=_DoubleAnimationUsingKeyFrames_Meta_):
|
|
581
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
582
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationUsingKeyFrames
|
|
583
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DoubleAnimationUsingKeyFrames'
|
|
584
|
+
def __init__(self, *args, **kwargs):
|
|
585
|
+
if kwargs:
|
|
586
|
+
super().__init__(**kwargs)
|
|
587
|
+
elif len(args) == 0:
|
|
588
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DoubleAnimationUsingKeyFrames.CreateInstance(*args))
|
|
589
|
+
else:
|
|
590
|
+
raise ValueError('no matched constructor')
|
|
591
|
+
@winrt_activatemethod
|
|
592
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleAnimationUsingKeyFrames: ...
|
|
593
|
+
@winrt_mixinmethod
|
|
594
|
+
def get_KeyFrames(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationUsingKeyFrames) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrameCollection: ...
|
|
595
|
+
@winrt_mixinmethod
|
|
596
|
+
def get_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationUsingKeyFrames) -> Boolean: ...
|
|
597
|
+
@winrt_mixinmethod
|
|
598
|
+
def put_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationUsingKeyFrames, value: Boolean) -> Void: ...
|
|
599
|
+
@winrt_classmethod
|
|
600
|
+
def get_EnableDependentAnimationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationUsingKeyFramesStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
601
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
602
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
603
|
+
_DoubleAnimationUsingKeyFrames_Meta_.EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
604
|
+
class _DoubleKeyFrame_Meta_(ComPtr.__class__):
|
|
605
|
+
pass
|
|
606
|
+
class DoubleKeyFrame(ComPtr, metaclass=_DoubleKeyFrame_Meta_):
|
|
607
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
608
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrame
|
|
609
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame'
|
|
610
|
+
def __init__(self, *args, **kwargs):
|
|
611
|
+
if kwargs:
|
|
612
|
+
super().__init__(**kwargs)
|
|
613
|
+
elif len(args) == 0:
|
|
614
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame.CreateInstance(*args, None, None))
|
|
615
|
+
else:
|
|
616
|
+
raise ValueError('no matched constructor')
|
|
617
|
+
@winrt_factorymethod
|
|
618
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrameFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame: ...
|
|
619
|
+
@winrt_mixinmethod
|
|
620
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrame) -> Double: ...
|
|
621
|
+
@winrt_mixinmethod
|
|
622
|
+
def put_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrame, value: Double) -> Void: ...
|
|
623
|
+
@winrt_mixinmethod
|
|
624
|
+
def get_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
625
|
+
@winrt_mixinmethod
|
|
626
|
+
def put_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
627
|
+
@winrt_classmethod
|
|
628
|
+
def get_ValueProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
629
|
+
@winrt_classmethod
|
|
630
|
+
def get_KeyTimeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
631
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
632
|
+
Value = property(get_Value, put_Value)
|
|
633
|
+
_DoubleKeyFrame_Meta_.KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
634
|
+
_DoubleKeyFrame_Meta_.ValueProperty = property(get_ValueProperty, None)
|
|
635
|
+
class DoubleKeyFrameCollection(ComPtr):
|
|
636
|
+
extends: IInspectable
|
|
637
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]]
|
|
638
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]
|
|
639
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrameCollection'
|
|
640
|
+
def __init__(self, *args, **kwargs):
|
|
641
|
+
if kwargs:
|
|
642
|
+
super().__init__(**kwargs)
|
|
643
|
+
elif len(args) == 0:
|
|
644
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrameCollection.CreateInstance(*args))
|
|
645
|
+
else:
|
|
646
|
+
raise ValueError('no matched constructor')
|
|
647
|
+
@winrt_activatemethod
|
|
648
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrameCollection: ...
|
|
649
|
+
@winrt_mixinmethod
|
|
650
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame: ...
|
|
651
|
+
@winrt_mixinmethod
|
|
652
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]) -> UInt32: ...
|
|
653
|
+
@winrt_mixinmethod
|
|
654
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]: ...
|
|
655
|
+
@winrt_mixinmethod
|
|
656
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame, index: POINTER(UInt32)) -> Boolean: ...
|
|
657
|
+
@winrt_mixinmethod
|
|
658
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame) -> Void: ...
|
|
659
|
+
@winrt_mixinmethod
|
|
660
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame) -> Void: ...
|
|
661
|
+
@winrt_mixinmethod
|
|
662
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], index: UInt32) -> Void: ...
|
|
663
|
+
@winrt_mixinmethod
|
|
664
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame) -> Void: ...
|
|
665
|
+
@winrt_mixinmethod
|
|
666
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]) -> Void: ...
|
|
667
|
+
@winrt_mixinmethod
|
|
668
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]) -> Void: ...
|
|
669
|
+
@winrt_mixinmethod
|
|
670
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]) -> UInt32: ...
|
|
671
|
+
@winrt_mixinmethod
|
|
672
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]) -> Void: ...
|
|
673
|
+
@winrt_mixinmethod
|
|
674
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame]: ...
|
|
675
|
+
Size = property(get_Size, None)
|
|
676
|
+
class _DragItemThemeAnimation_Meta_(ComPtr.__class__):
|
|
677
|
+
pass
|
|
678
|
+
class DragItemThemeAnimation(ComPtr, metaclass=_DragItemThemeAnimation_Meta_):
|
|
679
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
680
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDragItemThemeAnimation
|
|
681
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DragItemThemeAnimation'
|
|
682
|
+
def __init__(self, *args, **kwargs):
|
|
683
|
+
if kwargs:
|
|
684
|
+
super().__init__(**kwargs)
|
|
685
|
+
elif len(args) == 0:
|
|
686
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DragItemThemeAnimation.CreateInstance(*args))
|
|
687
|
+
else:
|
|
688
|
+
raise ValueError('no matched constructor')
|
|
689
|
+
@winrt_activatemethod
|
|
690
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DragItemThemeAnimation: ...
|
|
691
|
+
@winrt_mixinmethod
|
|
692
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragItemThemeAnimation) -> WinRT_String: ...
|
|
693
|
+
@winrt_mixinmethod
|
|
694
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragItemThemeAnimation, value: WinRT_String) -> Void: ...
|
|
695
|
+
@winrt_classmethod
|
|
696
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDragItemThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
697
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
698
|
+
_DragItemThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
699
|
+
class _DragOverThemeAnimation_Meta_(ComPtr.__class__):
|
|
700
|
+
pass
|
|
701
|
+
class DragOverThemeAnimation(ComPtr, metaclass=_DragOverThemeAnimation_Meta_):
|
|
702
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
703
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation
|
|
704
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DragOverThemeAnimation'
|
|
705
|
+
def __init__(self, *args, **kwargs):
|
|
706
|
+
if kwargs:
|
|
707
|
+
super().__init__(**kwargs)
|
|
708
|
+
elif len(args) == 0:
|
|
709
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DragOverThemeAnimation.CreateInstance(*args))
|
|
710
|
+
else:
|
|
711
|
+
raise ValueError('no matched constructor')
|
|
712
|
+
@winrt_activatemethod
|
|
713
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DragOverThemeAnimation: ...
|
|
714
|
+
@winrt_mixinmethod
|
|
715
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation) -> WinRT_String: ...
|
|
716
|
+
@winrt_mixinmethod
|
|
717
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation, value: WinRT_String) -> Void: ...
|
|
718
|
+
@winrt_mixinmethod
|
|
719
|
+
def get_ToOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation) -> Double: ...
|
|
720
|
+
@winrt_mixinmethod
|
|
721
|
+
def put_ToOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation, value: Double) -> Void: ...
|
|
722
|
+
@winrt_mixinmethod
|
|
723
|
+
def get_Direction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection: ...
|
|
724
|
+
@winrt_mixinmethod
|
|
725
|
+
def put_Direction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection) -> Void: ...
|
|
726
|
+
@winrt_classmethod
|
|
727
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
728
|
+
@winrt_classmethod
|
|
729
|
+
def get_ToOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
730
|
+
@winrt_classmethod
|
|
731
|
+
def get_DirectionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
732
|
+
Direction = property(get_Direction, put_Direction)
|
|
733
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
734
|
+
ToOffset = property(get_ToOffset, put_ToOffset)
|
|
735
|
+
_DragOverThemeAnimation_Meta_.DirectionProperty = property(get_DirectionProperty, None)
|
|
736
|
+
_DragOverThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
737
|
+
_DragOverThemeAnimation_Meta_.ToOffsetProperty = property(get_ToOffsetProperty, None)
|
|
738
|
+
class DrillInNavigationTransitionInfo(ComPtr):
|
|
739
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo
|
|
740
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInNavigationTransitionInfo
|
|
741
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DrillInNavigationTransitionInfo'
|
|
742
|
+
def __init__(self, *args, **kwargs):
|
|
743
|
+
if kwargs:
|
|
744
|
+
super().__init__(**kwargs)
|
|
745
|
+
elif len(args) == 0:
|
|
746
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DrillInNavigationTransitionInfo.CreateInstance(*args))
|
|
747
|
+
else:
|
|
748
|
+
raise ValueError('no matched constructor')
|
|
749
|
+
@winrt_activatemethod
|
|
750
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DrillInNavigationTransitionInfo: ...
|
|
751
|
+
class _DrillInThemeAnimation_Meta_(ComPtr.__class__):
|
|
752
|
+
pass
|
|
753
|
+
class DrillInThemeAnimation(ComPtr, metaclass=_DrillInThemeAnimation_Meta_):
|
|
754
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
755
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation
|
|
756
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DrillInThemeAnimation'
|
|
757
|
+
def __init__(self, *args, **kwargs):
|
|
758
|
+
if kwargs:
|
|
759
|
+
super().__init__(**kwargs)
|
|
760
|
+
elif len(args) == 0:
|
|
761
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DrillInThemeAnimation.CreateInstance(*args))
|
|
762
|
+
else:
|
|
763
|
+
raise ValueError('no matched constructor')
|
|
764
|
+
@winrt_activatemethod
|
|
765
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DrillInThemeAnimation: ...
|
|
766
|
+
@winrt_mixinmethod
|
|
767
|
+
def get_EntranceTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation) -> WinRT_String: ...
|
|
768
|
+
@winrt_mixinmethod
|
|
769
|
+
def put_EntranceTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation, value: WinRT_String) -> Void: ...
|
|
770
|
+
@winrt_mixinmethod
|
|
771
|
+
def get_EntranceTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
772
|
+
@winrt_mixinmethod
|
|
773
|
+
def put_EntranceTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
774
|
+
@winrt_mixinmethod
|
|
775
|
+
def get_ExitTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation) -> WinRT_String: ...
|
|
776
|
+
@winrt_mixinmethod
|
|
777
|
+
def put_ExitTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation, value: WinRT_String) -> Void: ...
|
|
778
|
+
@winrt_mixinmethod
|
|
779
|
+
def get_ExitTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
780
|
+
@winrt_mixinmethod
|
|
781
|
+
def put_ExitTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
782
|
+
@winrt_classmethod
|
|
783
|
+
def get_EntranceTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
784
|
+
@winrt_classmethod
|
|
785
|
+
def get_EntranceTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
786
|
+
@winrt_classmethod
|
|
787
|
+
def get_ExitTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
788
|
+
@winrt_classmethod
|
|
789
|
+
def get_ExitTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
790
|
+
EntranceTarget = property(get_EntranceTarget, put_EntranceTarget)
|
|
791
|
+
EntranceTargetName = property(get_EntranceTargetName, put_EntranceTargetName)
|
|
792
|
+
ExitTarget = property(get_ExitTarget, put_ExitTarget)
|
|
793
|
+
ExitTargetName = property(get_ExitTargetName, put_ExitTargetName)
|
|
794
|
+
_DrillInThemeAnimation_Meta_.EntranceTargetNameProperty = property(get_EntranceTargetNameProperty, None)
|
|
795
|
+
_DrillInThemeAnimation_Meta_.EntranceTargetProperty = property(get_EntranceTargetProperty, None)
|
|
796
|
+
_DrillInThemeAnimation_Meta_.ExitTargetNameProperty = property(get_ExitTargetNameProperty, None)
|
|
797
|
+
_DrillInThemeAnimation_Meta_.ExitTargetProperty = property(get_ExitTargetProperty, None)
|
|
798
|
+
class _DrillOutThemeAnimation_Meta_(ComPtr.__class__):
|
|
799
|
+
pass
|
|
800
|
+
class DrillOutThemeAnimation(ComPtr, metaclass=_DrillOutThemeAnimation_Meta_):
|
|
801
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
802
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation
|
|
803
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DrillOutThemeAnimation'
|
|
804
|
+
def __init__(self, *args, **kwargs):
|
|
805
|
+
if kwargs:
|
|
806
|
+
super().__init__(**kwargs)
|
|
807
|
+
elif len(args) == 0:
|
|
808
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DrillOutThemeAnimation.CreateInstance(*args))
|
|
809
|
+
else:
|
|
810
|
+
raise ValueError('no matched constructor')
|
|
811
|
+
@winrt_activatemethod
|
|
812
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DrillOutThemeAnimation: ...
|
|
813
|
+
@winrt_mixinmethod
|
|
814
|
+
def get_EntranceTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation) -> WinRT_String: ...
|
|
815
|
+
@winrt_mixinmethod
|
|
816
|
+
def put_EntranceTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation, value: WinRT_String) -> Void: ...
|
|
817
|
+
@winrt_mixinmethod
|
|
818
|
+
def get_EntranceTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
819
|
+
@winrt_mixinmethod
|
|
820
|
+
def put_EntranceTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
821
|
+
@winrt_mixinmethod
|
|
822
|
+
def get_ExitTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation) -> WinRT_String: ...
|
|
823
|
+
@winrt_mixinmethod
|
|
824
|
+
def put_ExitTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation, value: WinRT_String) -> Void: ...
|
|
825
|
+
@winrt_mixinmethod
|
|
826
|
+
def get_ExitTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
827
|
+
@winrt_mixinmethod
|
|
828
|
+
def put_ExitTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
829
|
+
@winrt_classmethod
|
|
830
|
+
def get_EntranceTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
831
|
+
@winrt_classmethod
|
|
832
|
+
def get_EntranceTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
833
|
+
@winrt_classmethod
|
|
834
|
+
def get_ExitTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
835
|
+
@winrt_classmethod
|
|
836
|
+
def get_ExitTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
837
|
+
EntranceTarget = property(get_EntranceTarget, put_EntranceTarget)
|
|
838
|
+
EntranceTargetName = property(get_EntranceTargetName, put_EntranceTargetName)
|
|
839
|
+
ExitTarget = property(get_ExitTarget, put_ExitTarget)
|
|
840
|
+
ExitTargetName = property(get_ExitTargetName, put_ExitTargetName)
|
|
841
|
+
_DrillOutThemeAnimation_Meta_.EntranceTargetNameProperty = property(get_EntranceTargetNameProperty, None)
|
|
842
|
+
_DrillOutThemeAnimation_Meta_.EntranceTargetProperty = property(get_EntranceTargetProperty, None)
|
|
843
|
+
_DrillOutThemeAnimation_Meta_.ExitTargetNameProperty = property(get_ExitTargetNameProperty, None)
|
|
844
|
+
_DrillOutThemeAnimation_Meta_.ExitTargetProperty = property(get_ExitTargetProperty, None)
|
|
845
|
+
class _DropTargetItemThemeAnimation_Meta_(ComPtr.__class__):
|
|
846
|
+
pass
|
|
847
|
+
class DropTargetItemThemeAnimation(ComPtr, metaclass=_DropTargetItemThemeAnimation_Meta_):
|
|
848
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
849
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IDropTargetItemThemeAnimation
|
|
850
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.DropTargetItemThemeAnimation'
|
|
851
|
+
def __init__(self, *args, **kwargs):
|
|
852
|
+
if kwargs:
|
|
853
|
+
super().__init__(**kwargs)
|
|
854
|
+
elif len(args) == 0:
|
|
855
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.DropTargetItemThemeAnimation.CreateInstance(*args))
|
|
856
|
+
else:
|
|
857
|
+
raise ValueError('no matched constructor')
|
|
858
|
+
@winrt_activatemethod
|
|
859
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.DropTargetItemThemeAnimation: ...
|
|
860
|
+
@winrt_mixinmethod
|
|
861
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDropTargetItemThemeAnimation) -> WinRT_String: ...
|
|
862
|
+
@winrt_mixinmethod
|
|
863
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IDropTargetItemThemeAnimation, value: WinRT_String) -> Void: ...
|
|
864
|
+
@winrt_classmethod
|
|
865
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IDropTargetItemThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
866
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
867
|
+
_DropTargetItemThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
868
|
+
class _EasingColorKeyFrame_Meta_(ComPtr.__class__):
|
|
869
|
+
pass
|
|
870
|
+
class EasingColorKeyFrame(ComPtr, metaclass=_EasingColorKeyFrame_Meta_):
|
|
871
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame
|
|
872
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingColorKeyFrame
|
|
873
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.EasingColorKeyFrame'
|
|
874
|
+
def __init__(self, *args, **kwargs):
|
|
875
|
+
if kwargs:
|
|
876
|
+
super().__init__(**kwargs)
|
|
877
|
+
elif len(args) == 0:
|
|
878
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.EasingColorKeyFrame.CreateInstance(*args))
|
|
879
|
+
else:
|
|
880
|
+
raise ValueError('no matched constructor')
|
|
881
|
+
@winrt_activatemethod
|
|
882
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingColorKeyFrame: ...
|
|
883
|
+
@winrt_mixinmethod
|
|
884
|
+
def get_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingColorKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
885
|
+
@winrt_mixinmethod
|
|
886
|
+
def put_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingColorKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
887
|
+
@winrt_classmethod
|
|
888
|
+
def get_EasingFunctionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingColorKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
889
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
890
|
+
_EasingColorKeyFrame_Meta_.EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
891
|
+
class _EasingDoubleKeyFrame_Meta_(ComPtr.__class__):
|
|
892
|
+
pass
|
|
893
|
+
class EasingDoubleKeyFrame(ComPtr, metaclass=_EasingDoubleKeyFrame_Meta_):
|
|
894
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame
|
|
895
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingDoubleKeyFrame
|
|
896
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.EasingDoubleKeyFrame'
|
|
897
|
+
def __init__(self, *args, **kwargs):
|
|
898
|
+
if kwargs:
|
|
899
|
+
super().__init__(**kwargs)
|
|
900
|
+
elif len(args) == 0:
|
|
901
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.EasingDoubleKeyFrame.CreateInstance(*args))
|
|
902
|
+
else:
|
|
903
|
+
raise ValueError('no matched constructor')
|
|
904
|
+
@winrt_activatemethod
|
|
905
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingDoubleKeyFrame: ...
|
|
906
|
+
@winrt_mixinmethod
|
|
907
|
+
def get_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingDoubleKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
908
|
+
@winrt_mixinmethod
|
|
909
|
+
def put_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingDoubleKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
910
|
+
@winrt_classmethod
|
|
911
|
+
def get_EasingFunctionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingDoubleKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
912
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
913
|
+
_EasingDoubleKeyFrame_Meta_.EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
914
|
+
class _EasingFunctionBase_Meta_(ComPtr.__class__):
|
|
915
|
+
pass
|
|
916
|
+
class EasingFunctionBase(ComPtr, metaclass=_EasingFunctionBase_Meta_):
|
|
917
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
918
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBase
|
|
919
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase'
|
|
920
|
+
@winrt_mixinmethod
|
|
921
|
+
def get_EasingMode(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBase) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingMode: ...
|
|
922
|
+
@winrt_mixinmethod
|
|
923
|
+
def put_EasingMode(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBase, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingMode) -> Void: ...
|
|
924
|
+
@winrt_mixinmethod
|
|
925
|
+
def Ease(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBase, normalizedTime: Double) -> Double: ...
|
|
926
|
+
@winrt_classmethod
|
|
927
|
+
def get_EasingModeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
928
|
+
EasingMode = property(get_EasingMode, put_EasingMode)
|
|
929
|
+
_EasingFunctionBase_Meta_.EasingModeProperty = property(get_EasingModeProperty, None)
|
|
930
|
+
class EasingMode(Enum, Int32):
|
|
931
|
+
EaseOut = 0
|
|
932
|
+
EaseIn = 1
|
|
933
|
+
EaseInOut = 2
|
|
934
|
+
class _EasingPointKeyFrame_Meta_(ComPtr.__class__):
|
|
935
|
+
pass
|
|
936
|
+
class EasingPointKeyFrame(ComPtr, metaclass=_EasingPointKeyFrame_Meta_):
|
|
937
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame
|
|
938
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingPointKeyFrame
|
|
939
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.EasingPointKeyFrame'
|
|
940
|
+
def __init__(self, *args, **kwargs):
|
|
941
|
+
if kwargs:
|
|
942
|
+
super().__init__(**kwargs)
|
|
943
|
+
elif len(args) == 0:
|
|
944
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.EasingPointKeyFrame.CreateInstance(*args))
|
|
945
|
+
else:
|
|
946
|
+
raise ValueError('no matched constructor')
|
|
947
|
+
@winrt_activatemethod
|
|
948
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingPointKeyFrame: ...
|
|
949
|
+
@winrt_mixinmethod
|
|
950
|
+
def get_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingPointKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
951
|
+
@winrt_mixinmethod
|
|
952
|
+
def put_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingPointKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
953
|
+
@winrt_classmethod
|
|
954
|
+
def get_EasingFunctionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEasingPointKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
955
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
956
|
+
_EasingPointKeyFrame_Meta_.EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
957
|
+
class _EdgeUIThemeTransition_Meta_(ComPtr.__class__):
|
|
958
|
+
pass
|
|
959
|
+
class EdgeUIThemeTransition(ComPtr, metaclass=_EdgeUIThemeTransition_Meta_):
|
|
960
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
961
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IEdgeUIThemeTransition
|
|
962
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.EdgeUIThemeTransition'
|
|
963
|
+
def __init__(self, *args, **kwargs):
|
|
964
|
+
if kwargs:
|
|
965
|
+
super().__init__(**kwargs)
|
|
966
|
+
elif len(args) == 0:
|
|
967
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.EdgeUIThemeTransition.CreateInstance(*args))
|
|
968
|
+
else:
|
|
969
|
+
raise ValueError('no matched constructor')
|
|
970
|
+
@winrt_activatemethod
|
|
971
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.EdgeUIThemeTransition: ...
|
|
972
|
+
@winrt_mixinmethod
|
|
973
|
+
def get_Edge(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEdgeUIThemeTransition) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation: ...
|
|
974
|
+
@winrt_mixinmethod
|
|
975
|
+
def put_Edge(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEdgeUIThemeTransition, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation) -> Void: ...
|
|
976
|
+
@winrt_classmethod
|
|
977
|
+
def get_EdgeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEdgeUIThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
978
|
+
Edge = property(get_Edge, put_Edge)
|
|
979
|
+
_EdgeUIThemeTransition_Meta_.EdgeProperty = property(get_EdgeProperty, None)
|
|
980
|
+
class _ElasticEase_Meta_(ComPtr.__class__):
|
|
981
|
+
pass
|
|
982
|
+
class ElasticEase(ComPtr, metaclass=_ElasticEase_Meta_):
|
|
983
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
984
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IElasticEase
|
|
985
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ElasticEase'
|
|
986
|
+
def __init__(self, *args, **kwargs):
|
|
987
|
+
if kwargs:
|
|
988
|
+
super().__init__(**kwargs)
|
|
989
|
+
elif len(args) == 0:
|
|
990
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ElasticEase.CreateInstance(*args))
|
|
991
|
+
else:
|
|
992
|
+
raise ValueError('no matched constructor')
|
|
993
|
+
@winrt_activatemethod
|
|
994
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ElasticEase: ...
|
|
995
|
+
@winrt_mixinmethod
|
|
996
|
+
def get_Oscillations(self: win32more.Microsoft.UI.Xaml.Media.Animation.IElasticEase) -> Int32: ...
|
|
997
|
+
@winrt_mixinmethod
|
|
998
|
+
def put_Oscillations(self: win32more.Microsoft.UI.Xaml.Media.Animation.IElasticEase, value: Int32) -> Void: ...
|
|
999
|
+
@winrt_mixinmethod
|
|
1000
|
+
def get_Springiness(self: win32more.Microsoft.UI.Xaml.Media.Animation.IElasticEase) -> Double: ...
|
|
1001
|
+
@winrt_mixinmethod
|
|
1002
|
+
def put_Springiness(self: win32more.Microsoft.UI.Xaml.Media.Animation.IElasticEase, value: Double) -> Void: ...
|
|
1003
|
+
@winrt_classmethod
|
|
1004
|
+
def get_OscillationsProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IElasticEaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1005
|
+
@winrt_classmethod
|
|
1006
|
+
def get_SpringinessProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IElasticEaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1007
|
+
Oscillations = property(get_Oscillations, put_Oscillations)
|
|
1008
|
+
Springiness = property(get_Springiness, put_Springiness)
|
|
1009
|
+
_ElasticEase_Meta_.OscillationsProperty = property(get_OscillationsProperty, None)
|
|
1010
|
+
_ElasticEase_Meta_.SpringinessProperty = property(get_SpringinessProperty, None)
|
|
1011
|
+
class _EntranceNavigationTransitionInfo_Meta_(ComPtr.__class__):
|
|
1012
|
+
pass
|
|
1013
|
+
class EntranceNavigationTransitionInfo(ComPtr, metaclass=_EntranceNavigationTransitionInfo_Meta_):
|
|
1014
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo
|
|
1015
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceNavigationTransitionInfo
|
|
1016
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.EntranceNavigationTransitionInfo'
|
|
1017
|
+
def __init__(self, *args, **kwargs):
|
|
1018
|
+
if kwargs:
|
|
1019
|
+
super().__init__(**kwargs)
|
|
1020
|
+
elif len(args) == 0:
|
|
1021
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.EntranceNavigationTransitionInfo.CreateInstance(*args))
|
|
1022
|
+
else:
|
|
1023
|
+
raise ValueError('no matched constructor')
|
|
1024
|
+
@winrt_activatemethod
|
|
1025
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.EntranceNavigationTransitionInfo: ...
|
|
1026
|
+
@winrt_classmethod
|
|
1027
|
+
def get_IsTargetElementProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1028
|
+
@winrt_classmethod
|
|
1029
|
+
def GetIsTargetElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
1030
|
+
@winrt_classmethod
|
|
1031
|
+
def SetIsTargetElement(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceNavigationTransitionInfoStatics, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
1032
|
+
_EntranceNavigationTransitionInfo_Meta_.IsTargetElementProperty = property(get_IsTargetElementProperty, None)
|
|
1033
|
+
class _EntranceThemeTransition_Meta_(ComPtr.__class__):
|
|
1034
|
+
pass
|
|
1035
|
+
class EntranceThemeTransition(ComPtr, metaclass=_EntranceThemeTransition_Meta_):
|
|
1036
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
1037
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition
|
|
1038
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.EntranceThemeTransition'
|
|
1039
|
+
def __init__(self, *args, **kwargs):
|
|
1040
|
+
if kwargs:
|
|
1041
|
+
super().__init__(**kwargs)
|
|
1042
|
+
elif len(args) == 0:
|
|
1043
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.EntranceThemeTransition.CreateInstance(*args))
|
|
1044
|
+
else:
|
|
1045
|
+
raise ValueError('no matched constructor')
|
|
1046
|
+
@winrt_activatemethod
|
|
1047
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.EntranceThemeTransition: ...
|
|
1048
|
+
@winrt_mixinmethod
|
|
1049
|
+
def get_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition) -> Double: ...
|
|
1050
|
+
@winrt_mixinmethod
|
|
1051
|
+
def put_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition, value: Double) -> Void: ...
|
|
1052
|
+
@winrt_mixinmethod
|
|
1053
|
+
def get_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition) -> Double: ...
|
|
1054
|
+
@winrt_mixinmethod
|
|
1055
|
+
def put_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition, value: Double) -> Void: ...
|
|
1056
|
+
@winrt_mixinmethod
|
|
1057
|
+
def get_IsStaggeringEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition) -> Boolean: ...
|
|
1058
|
+
@winrt_mixinmethod
|
|
1059
|
+
def put_IsStaggeringEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition, value: Boolean) -> Void: ...
|
|
1060
|
+
@winrt_classmethod
|
|
1061
|
+
def get_FromHorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1062
|
+
@winrt_classmethod
|
|
1063
|
+
def get_FromVerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1064
|
+
@winrt_classmethod
|
|
1065
|
+
def get_IsStaggeringEnabledProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1066
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
1067
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
1068
|
+
IsStaggeringEnabled = property(get_IsStaggeringEnabled, put_IsStaggeringEnabled)
|
|
1069
|
+
_EntranceThemeTransition_Meta_.FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
1070
|
+
_EntranceThemeTransition_Meta_.FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
1071
|
+
_EntranceThemeTransition_Meta_.IsStaggeringEnabledProperty = property(get_IsStaggeringEnabledProperty, None)
|
|
1072
|
+
class _ExponentialEase_Meta_(ComPtr.__class__):
|
|
1073
|
+
pass
|
|
1074
|
+
class ExponentialEase(ComPtr, metaclass=_ExponentialEase_Meta_):
|
|
1075
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
1076
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IExponentialEase
|
|
1077
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ExponentialEase'
|
|
1078
|
+
def __init__(self, *args, **kwargs):
|
|
1079
|
+
if kwargs:
|
|
1080
|
+
super().__init__(**kwargs)
|
|
1081
|
+
elif len(args) == 0:
|
|
1082
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ExponentialEase.CreateInstance(*args))
|
|
1083
|
+
else:
|
|
1084
|
+
raise ValueError('no matched constructor')
|
|
1085
|
+
@winrt_activatemethod
|
|
1086
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ExponentialEase: ...
|
|
1087
|
+
@winrt_mixinmethod
|
|
1088
|
+
def get_Exponent(self: win32more.Microsoft.UI.Xaml.Media.Animation.IExponentialEase) -> Double: ...
|
|
1089
|
+
@winrt_mixinmethod
|
|
1090
|
+
def put_Exponent(self: win32more.Microsoft.UI.Xaml.Media.Animation.IExponentialEase, value: Double) -> Void: ...
|
|
1091
|
+
@winrt_classmethod
|
|
1092
|
+
def get_ExponentProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IExponentialEaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1093
|
+
Exponent = property(get_Exponent, put_Exponent)
|
|
1094
|
+
_ExponentialEase_Meta_.ExponentProperty = property(get_ExponentProperty, None)
|
|
1095
|
+
class _FadeInThemeAnimation_Meta_(ComPtr.__class__):
|
|
1096
|
+
pass
|
|
1097
|
+
class FadeInThemeAnimation(ComPtr, metaclass=_FadeInThemeAnimation_Meta_):
|
|
1098
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
1099
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeInThemeAnimation
|
|
1100
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.FadeInThemeAnimation'
|
|
1101
|
+
def __init__(self, *args, **kwargs):
|
|
1102
|
+
if kwargs:
|
|
1103
|
+
super().__init__(**kwargs)
|
|
1104
|
+
elif len(args) == 0:
|
|
1105
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.FadeInThemeAnimation.CreateInstance(*args))
|
|
1106
|
+
else:
|
|
1107
|
+
raise ValueError('no matched constructor')
|
|
1108
|
+
@winrt_activatemethod
|
|
1109
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.FadeInThemeAnimation: ...
|
|
1110
|
+
@winrt_mixinmethod
|
|
1111
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeInThemeAnimation) -> WinRT_String: ...
|
|
1112
|
+
@winrt_mixinmethod
|
|
1113
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeInThemeAnimation, value: WinRT_String) -> Void: ...
|
|
1114
|
+
@winrt_classmethod
|
|
1115
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1116
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
1117
|
+
_FadeInThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
1118
|
+
class _FadeOutThemeAnimation_Meta_(ComPtr.__class__):
|
|
1119
|
+
pass
|
|
1120
|
+
class FadeOutThemeAnimation(ComPtr, metaclass=_FadeOutThemeAnimation_Meta_):
|
|
1121
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
1122
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeOutThemeAnimation
|
|
1123
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.FadeOutThemeAnimation'
|
|
1124
|
+
def __init__(self, *args, **kwargs):
|
|
1125
|
+
if kwargs:
|
|
1126
|
+
super().__init__(**kwargs)
|
|
1127
|
+
elif len(args) == 0:
|
|
1128
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.FadeOutThemeAnimation.CreateInstance(*args))
|
|
1129
|
+
else:
|
|
1130
|
+
raise ValueError('no matched constructor')
|
|
1131
|
+
@winrt_activatemethod
|
|
1132
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.FadeOutThemeAnimation: ...
|
|
1133
|
+
@winrt_mixinmethod
|
|
1134
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeOutThemeAnimation) -> WinRT_String: ...
|
|
1135
|
+
@winrt_mixinmethod
|
|
1136
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeOutThemeAnimation, value: WinRT_String) -> Void: ...
|
|
1137
|
+
@winrt_classmethod
|
|
1138
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IFadeOutThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1139
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
1140
|
+
_FadeOutThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
1141
|
+
class FillBehavior(Enum, Int32):
|
|
1142
|
+
HoldEnd = 0
|
|
1143
|
+
Stop = 1
|
|
1144
|
+
class GravityConnectedAnimationConfiguration(ComPtr):
|
|
1145
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration
|
|
1146
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IGravityConnectedAnimationConfiguration
|
|
1147
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.GravityConnectedAnimationConfiguration'
|
|
1148
|
+
def __init__(self, *args, **kwargs):
|
|
1149
|
+
if kwargs:
|
|
1150
|
+
super().__init__(**kwargs)
|
|
1151
|
+
elif len(args) == 0:
|
|
1152
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.GravityConnectedAnimationConfiguration.CreateInstance(*args, None, None))
|
|
1153
|
+
else:
|
|
1154
|
+
raise ValueError('no matched constructor')
|
|
1155
|
+
@winrt_factorymethod
|
|
1156
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IGravityConnectedAnimationConfigurationFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.GravityConnectedAnimationConfiguration: ...
|
|
1157
|
+
@winrt_mixinmethod
|
|
1158
|
+
def get_IsShadowEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IGravityConnectedAnimationConfiguration) -> Boolean: ...
|
|
1159
|
+
@winrt_mixinmethod
|
|
1160
|
+
def put_IsShadowEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IGravityConnectedAnimationConfiguration, value: Boolean) -> Void: ...
|
|
1161
|
+
IsShadowEnabled = property(get_IsShadowEnabled, put_IsShadowEnabled)
|
|
1162
|
+
class IAddDeleteThemeTransition(ComPtr):
|
|
1163
|
+
extends: IInspectable
|
|
1164
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IAddDeleteThemeTransition'
|
|
1165
|
+
_iid_ = Guid('{3728595e-0ea2-524b-9348-86cfb860a0ff}')
|
|
1166
|
+
class IBackEase(ComPtr):
|
|
1167
|
+
extends: IInspectable
|
|
1168
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBackEase'
|
|
1169
|
+
_iid_ = Guid('{1775bd43-1939-57cb-8c31-cd7590ec9543}')
|
|
1170
|
+
@winrt_commethod(6)
|
|
1171
|
+
def get_Amplitude(self) -> Double: ...
|
|
1172
|
+
@winrt_commethod(7)
|
|
1173
|
+
def put_Amplitude(self, value: Double) -> Void: ...
|
|
1174
|
+
Amplitude = property(get_Amplitude, put_Amplitude)
|
|
1175
|
+
class IBackEaseStatics(ComPtr):
|
|
1176
|
+
extends: IInspectable
|
|
1177
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBackEaseStatics'
|
|
1178
|
+
_iid_ = Guid('{1ead2ef9-7901-542d-ae08-7b5937b32ef0}')
|
|
1179
|
+
@winrt_commethod(6)
|
|
1180
|
+
def get_AmplitudeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1181
|
+
AmplitudeProperty = property(get_AmplitudeProperty, None)
|
|
1182
|
+
class IBasicConnectedAnimationConfiguration(ComPtr):
|
|
1183
|
+
extends: IInspectable
|
|
1184
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBasicConnectedAnimationConfiguration'
|
|
1185
|
+
_iid_ = Guid('{7ff18afe-91e8-52fa-a1c1-7b2c1a140118}')
|
|
1186
|
+
class IBasicConnectedAnimationConfigurationFactory(ComPtr):
|
|
1187
|
+
extends: IInspectable
|
|
1188
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBasicConnectedAnimationConfigurationFactory'
|
|
1189
|
+
_iid_ = Guid('{2d156a02-0fb5-5ad1-af9b-bc9c2720fecb}')
|
|
1190
|
+
@winrt_commethod(6)
|
|
1191
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.BasicConnectedAnimationConfiguration: ...
|
|
1192
|
+
class IBeginStoryboard(ComPtr):
|
|
1193
|
+
extends: IInspectable
|
|
1194
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBeginStoryboard'
|
|
1195
|
+
_iid_ = Guid('{bb364720-ee5a-5b32-91e2-62589729fd3a}')
|
|
1196
|
+
@winrt_commethod(6)
|
|
1197
|
+
def get_Storyboard(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.Storyboard: ...
|
|
1198
|
+
@winrt_commethod(7)
|
|
1199
|
+
def put_Storyboard(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.Storyboard) -> Void: ...
|
|
1200
|
+
Storyboard = property(get_Storyboard, put_Storyboard)
|
|
1201
|
+
class IBeginStoryboardStatics(ComPtr):
|
|
1202
|
+
extends: IInspectable
|
|
1203
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBeginStoryboardStatics'
|
|
1204
|
+
_iid_ = Guid('{4d5fdbeb-6b0e-5a8f-a8f0-01f438df8fb2}')
|
|
1205
|
+
@winrt_commethod(6)
|
|
1206
|
+
def get_StoryboardProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1207
|
+
StoryboardProperty = property(get_StoryboardProperty, None)
|
|
1208
|
+
class IBounceEase(ComPtr):
|
|
1209
|
+
extends: IInspectable
|
|
1210
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBounceEase'
|
|
1211
|
+
_iid_ = Guid('{c138bfff-87c8-5c60-b280-682a499c58c3}')
|
|
1212
|
+
@winrt_commethod(6)
|
|
1213
|
+
def get_Bounces(self) -> Int32: ...
|
|
1214
|
+
@winrt_commethod(7)
|
|
1215
|
+
def put_Bounces(self, value: Int32) -> Void: ...
|
|
1216
|
+
@winrt_commethod(8)
|
|
1217
|
+
def get_Bounciness(self) -> Double: ...
|
|
1218
|
+
@winrt_commethod(9)
|
|
1219
|
+
def put_Bounciness(self, value: Double) -> Void: ...
|
|
1220
|
+
Bounces = property(get_Bounces, put_Bounces)
|
|
1221
|
+
Bounciness = property(get_Bounciness, put_Bounciness)
|
|
1222
|
+
class IBounceEaseStatics(ComPtr):
|
|
1223
|
+
extends: IInspectable
|
|
1224
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IBounceEaseStatics'
|
|
1225
|
+
_iid_ = Guid('{d7716b38-c705-5093-96d6-735c13105a30}')
|
|
1226
|
+
@winrt_commethod(6)
|
|
1227
|
+
def get_BouncesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1228
|
+
@winrt_commethod(7)
|
|
1229
|
+
def get_BouncinessProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1230
|
+
BouncesProperty = property(get_BouncesProperty, None)
|
|
1231
|
+
BouncinessProperty = property(get_BouncinessProperty, None)
|
|
1232
|
+
class ICircleEase(ComPtr):
|
|
1233
|
+
extends: IInspectable
|
|
1234
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ICircleEase'
|
|
1235
|
+
_iid_ = Guid('{88209080-2929-5924-9b52-f95196568713}')
|
|
1236
|
+
class IColorAnimation(ComPtr):
|
|
1237
|
+
extends: IInspectable
|
|
1238
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IColorAnimation'
|
|
1239
|
+
_iid_ = Guid('{6df862d2-65f2-53a8-8b1b-1b6c1763c175}')
|
|
1240
|
+
@winrt_commethod(6)
|
|
1241
|
+
def get_From(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
1242
|
+
@winrt_commethod(7)
|
|
1243
|
+
def put_From(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
1244
|
+
@winrt_commethod(8)
|
|
1245
|
+
def get_To(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
1246
|
+
@winrt_commethod(9)
|
|
1247
|
+
def put_To(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
1248
|
+
@winrt_commethod(10)
|
|
1249
|
+
def get_By(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
1250
|
+
@winrt_commethod(11)
|
|
1251
|
+
def put_By(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
1252
|
+
@winrt_commethod(12)
|
|
1253
|
+
def get_EasingFunction(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
1254
|
+
@winrt_commethod(13)
|
|
1255
|
+
def put_EasingFunction(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
1256
|
+
@winrt_commethod(14)
|
|
1257
|
+
def get_EnableDependentAnimation(self) -> Boolean: ...
|
|
1258
|
+
@winrt_commethod(15)
|
|
1259
|
+
def put_EnableDependentAnimation(self, value: Boolean) -> Void: ...
|
|
1260
|
+
By = property(get_By, put_By)
|
|
1261
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
1262
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
1263
|
+
From = property(get_From, put_From)
|
|
1264
|
+
To = property(get_To, put_To)
|
|
1265
|
+
class IColorAnimationStatics(ComPtr):
|
|
1266
|
+
extends: IInspectable
|
|
1267
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IColorAnimationStatics'
|
|
1268
|
+
_iid_ = Guid('{99aebe0f-928e-52cb-842f-f43fe660ff06}')
|
|
1269
|
+
@winrt_commethod(6)
|
|
1270
|
+
def get_FromProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1271
|
+
@winrt_commethod(7)
|
|
1272
|
+
def get_ToProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1273
|
+
@winrt_commethod(8)
|
|
1274
|
+
def get_ByProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1275
|
+
@winrt_commethod(9)
|
|
1276
|
+
def get_EasingFunctionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1277
|
+
@winrt_commethod(10)
|
|
1278
|
+
def get_EnableDependentAnimationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1279
|
+
ByProperty = property(get_ByProperty, None)
|
|
1280
|
+
EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
1281
|
+
EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
1282
|
+
FromProperty = property(get_FromProperty, None)
|
|
1283
|
+
ToProperty = property(get_ToProperty, None)
|
|
1284
|
+
class IColorAnimationUsingKeyFrames(ComPtr):
|
|
1285
|
+
extends: IInspectable
|
|
1286
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IColorAnimationUsingKeyFrames'
|
|
1287
|
+
_iid_ = Guid('{96f28c97-67eb-5393-8e37-a81d8fda18b3}')
|
|
1288
|
+
@winrt_commethod(6)
|
|
1289
|
+
def get_KeyFrames(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrameCollection: ...
|
|
1290
|
+
@winrt_commethod(7)
|
|
1291
|
+
def get_EnableDependentAnimation(self) -> Boolean: ...
|
|
1292
|
+
@winrt_commethod(8)
|
|
1293
|
+
def put_EnableDependentAnimation(self, value: Boolean) -> Void: ...
|
|
1294
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
1295
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
1296
|
+
class IColorAnimationUsingKeyFramesStatics(ComPtr):
|
|
1297
|
+
extends: IInspectable
|
|
1298
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IColorAnimationUsingKeyFramesStatics'
|
|
1299
|
+
_iid_ = Guid('{5b0f4840-0ef7-5ad7-a8f2-d49424ed906f}')
|
|
1300
|
+
@winrt_commethod(6)
|
|
1301
|
+
def get_EnableDependentAnimationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1302
|
+
EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
1303
|
+
class IColorKeyFrame(ComPtr):
|
|
1304
|
+
extends: IInspectable
|
|
1305
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IColorKeyFrame'
|
|
1306
|
+
_iid_ = Guid('{02848c7e-c772-5f66-842b-fd494d0da669}')
|
|
1307
|
+
@winrt_commethod(6)
|
|
1308
|
+
def get_Value(self) -> win32more.Windows.UI.Color: ...
|
|
1309
|
+
@winrt_commethod(7)
|
|
1310
|
+
def put_Value(self, value: win32more.Windows.UI.Color) -> Void: ...
|
|
1311
|
+
@winrt_commethod(8)
|
|
1312
|
+
def get_KeyTime(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
1313
|
+
@winrt_commethod(9)
|
|
1314
|
+
def put_KeyTime(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
1315
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
1316
|
+
Value = property(get_Value, put_Value)
|
|
1317
|
+
class IColorKeyFrameFactory(ComPtr):
|
|
1318
|
+
extends: IInspectable
|
|
1319
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IColorKeyFrameFactory'
|
|
1320
|
+
_iid_ = Guid('{a82cc182-9d80-508c-b962-d74225587200}')
|
|
1321
|
+
@winrt_commethod(6)
|
|
1322
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame: ...
|
|
1323
|
+
class IColorKeyFrameStatics(ComPtr):
|
|
1324
|
+
extends: IInspectable
|
|
1325
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IColorKeyFrameStatics'
|
|
1326
|
+
_iid_ = Guid('{b62fdd68-15c7-5c6c-a4fa-0cee10e04556}')
|
|
1327
|
+
@winrt_commethod(6)
|
|
1328
|
+
def get_ValueProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1329
|
+
@winrt_commethod(7)
|
|
1330
|
+
def get_KeyTimeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1331
|
+
KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
1332
|
+
ValueProperty = property(get_ValueProperty, None)
|
|
1333
|
+
class ICommonNavigationTransitionInfo(ComPtr):
|
|
1334
|
+
extends: IInspectable
|
|
1335
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfo'
|
|
1336
|
+
_iid_ = Guid('{b21cc95f-9e3d-540a-b35a-17b99dc41b1e}')
|
|
1337
|
+
@winrt_commethod(6)
|
|
1338
|
+
def get_IsStaggeringEnabled(self) -> Boolean: ...
|
|
1339
|
+
@winrt_commethod(7)
|
|
1340
|
+
def put_IsStaggeringEnabled(self, value: Boolean) -> Void: ...
|
|
1341
|
+
IsStaggeringEnabled = property(get_IsStaggeringEnabled, put_IsStaggeringEnabled)
|
|
1342
|
+
class ICommonNavigationTransitionInfoStatics(ComPtr):
|
|
1343
|
+
extends: IInspectable
|
|
1344
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ICommonNavigationTransitionInfoStatics'
|
|
1345
|
+
_iid_ = Guid('{20020be1-c1ba-59f5-997a-c04f5e3833b0}')
|
|
1346
|
+
@winrt_commethod(6)
|
|
1347
|
+
def get_IsStaggeringEnabledProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1348
|
+
@winrt_commethod(7)
|
|
1349
|
+
def get_IsStaggerElementProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1350
|
+
@winrt_commethod(8)
|
|
1351
|
+
def GetIsStaggerElement(self, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
1352
|
+
@winrt_commethod(9)
|
|
1353
|
+
def SetIsStaggerElement(self, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
1354
|
+
IsStaggerElementProperty = property(get_IsStaggerElementProperty, None)
|
|
1355
|
+
IsStaggeringEnabledProperty = property(get_IsStaggeringEnabledProperty, None)
|
|
1356
|
+
class IConnectedAnimation(ComPtr):
|
|
1357
|
+
extends: IInspectable
|
|
1358
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IConnectedAnimation'
|
|
1359
|
+
_iid_ = Guid('{a9c1c6ad-7670-589c-a608-9b5c01cec71f}')
|
|
1360
|
+
@winrt_commethod(6)
|
|
1361
|
+
def get_IsScaleAnimationEnabled(self) -> Boolean: ...
|
|
1362
|
+
@winrt_commethod(7)
|
|
1363
|
+
def put_IsScaleAnimationEnabled(self, value: Boolean) -> Void: ...
|
|
1364
|
+
@winrt_commethod(8)
|
|
1365
|
+
def get_Configuration(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration: ...
|
|
1366
|
+
@winrt_commethod(9)
|
|
1367
|
+
def put_Configuration(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationConfiguration) -> Void: ...
|
|
1368
|
+
@winrt_commethod(10)
|
|
1369
|
+
def add_Completed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimation, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1370
|
+
@winrt_commethod(11)
|
|
1371
|
+
def remove_Completed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1372
|
+
@winrt_commethod(12)
|
|
1373
|
+
def TryStart(self, destination: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
1374
|
+
@winrt_commethod(13)
|
|
1375
|
+
def TryStartWithCoordinatedElements(self, destination: win32more.Microsoft.UI.Xaml.UIElement, coordinatedElements: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]) -> Boolean: ...
|
|
1376
|
+
@winrt_commethod(14)
|
|
1377
|
+
def Cancel(self) -> Void: ...
|
|
1378
|
+
@winrt_commethod(15)
|
|
1379
|
+
def SetAnimationComponent(self, component: win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationComponent, animation: win32more.Microsoft.UI.Composition.ICompositionAnimationBase) -> Void: ...
|
|
1380
|
+
Configuration = property(get_Configuration, put_Configuration)
|
|
1381
|
+
IsScaleAnimationEnabled = property(get_IsScaleAnimationEnabled, put_IsScaleAnimationEnabled)
|
|
1382
|
+
Completed = event()
|
|
1383
|
+
class IConnectedAnimationConfiguration(ComPtr):
|
|
1384
|
+
extends: IInspectable
|
|
1385
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationConfiguration'
|
|
1386
|
+
_iid_ = Guid('{e848379d-7e25-5976-bfb3-086bac4e8849}')
|
|
1387
|
+
class IConnectedAnimationConfigurationFactory(ComPtr):
|
|
1388
|
+
extends: IInspectable
|
|
1389
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationConfigurationFactory'
|
|
1390
|
+
_iid_ = Guid('{71008845-4a12-5a1a-969c-4152b5174922}')
|
|
1391
|
+
class IConnectedAnimationService(ComPtr):
|
|
1392
|
+
extends: IInspectable
|
|
1393
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationService'
|
|
1394
|
+
_iid_ = Guid('{85f72163-c3c8-586a-91fe-3e0315a3a4fc}')
|
|
1395
|
+
@winrt_commethod(6)
|
|
1396
|
+
def get_DefaultDuration(self) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
1397
|
+
@winrt_commethod(7)
|
|
1398
|
+
def put_DefaultDuration(self, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
1399
|
+
@winrt_commethod(8)
|
|
1400
|
+
def get_DefaultEasingFunction(self) -> win32more.Microsoft.UI.Composition.CompositionEasingFunction: ...
|
|
1401
|
+
@winrt_commethod(9)
|
|
1402
|
+
def put_DefaultEasingFunction(self, value: win32more.Microsoft.UI.Composition.CompositionEasingFunction) -> Void: ...
|
|
1403
|
+
@winrt_commethod(10)
|
|
1404
|
+
def PrepareToAnimate(self, key: WinRT_String, source: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimation: ...
|
|
1405
|
+
@winrt_commethod(11)
|
|
1406
|
+
def GetAnimation(self, key: WinRT_String) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimation: ...
|
|
1407
|
+
DefaultDuration = property(get_DefaultDuration, put_DefaultDuration)
|
|
1408
|
+
DefaultEasingFunction = property(get_DefaultEasingFunction, put_DefaultEasingFunction)
|
|
1409
|
+
class IConnectedAnimationServiceStatics(ComPtr):
|
|
1410
|
+
extends: IInspectable
|
|
1411
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IConnectedAnimationServiceStatics'
|
|
1412
|
+
_iid_ = Guid('{f30ad68d-3426-5564-92c6-288b819e652a}')
|
|
1413
|
+
@winrt_commethod(6)
|
|
1414
|
+
def GetForCurrentView(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.ConnectedAnimationService: ...
|
|
1415
|
+
class IContentThemeTransition(ComPtr):
|
|
1416
|
+
extends: IInspectable
|
|
1417
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IContentThemeTransition'
|
|
1418
|
+
_iid_ = Guid('{dff47071-cc51-556c-a3fe-8bbb4cba6195}')
|
|
1419
|
+
@winrt_commethod(6)
|
|
1420
|
+
def get_HorizontalOffset(self) -> Double: ...
|
|
1421
|
+
@winrt_commethod(7)
|
|
1422
|
+
def put_HorizontalOffset(self, value: Double) -> Void: ...
|
|
1423
|
+
@winrt_commethod(8)
|
|
1424
|
+
def get_VerticalOffset(self) -> Double: ...
|
|
1425
|
+
@winrt_commethod(9)
|
|
1426
|
+
def put_VerticalOffset(self, value: Double) -> Void: ...
|
|
1427
|
+
HorizontalOffset = property(get_HorizontalOffset, put_HorizontalOffset)
|
|
1428
|
+
VerticalOffset = property(get_VerticalOffset, put_VerticalOffset)
|
|
1429
|
+
class IContentThemeTransitionStatics(ComPtr):
|
|
1430
|
+
extends: IInspectable
|
|
1431
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IContentThemeTransitionStatics'
|
|
1432
|
+
_iid_ = Guid('{95cda8b1-6667-56e3-be40-866eef53663c}')
|
|
1433
|
+
@winrt_commethod(6)
|
|
1434
|
+
def get_HorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1435
|
+
@winrt_commethod(7)
|
|
1436
|
+
def get_VerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1437
|
+
HorizontalOffsetProperty = property(get_HorizontalOffsetProperty, None)
|
|
1438
|
+
VerticalOffsetProperty = property(get_VerticalOffsetProperty, None)
|
|
1439
|
+
class IContinuumNavigationTransitionInfo(ComPtr):
|
|
1440
|
+
extends: IInspectable
|
|
1441
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfo'
|
|
1442
|
+
_iid_ = Guid('{c55da70f-ff2a-5fc3-81c5-9670f4d78752}')
|
|
1443
|
+
@winrt_commethod(6)
|
|
1444
|
+
def get_ExitElement(self) -> win32more.Microsoft.UI.Xaml.UIElement: ...
|
|
1445
|
+
@winrt_commethod(7)
|
|
1446
|
+
def put_ExitElement(self, value: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
1447
|
+
ExitElement = property(get_ExitElement, put_ExitElement)
|
|
1448
|
+
class IContinuumNavigationTransitionInfoStatics(ComPtr):
|
|
1449
|
+
extends: IInspectable
|
|
1450
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IContinuumNavigationTransitionInfoStatics'
|
|
1451
|
+
_iid_ = Guid('{ca9006fd-f513-5f34-ad7f-49f9d7a99432}')
|
|
1452
|
+
@winrt_commethod(6)
|
|
1453
|
+
def get_ExitElementProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1454
|
+
@winrt_commethod(7)
|
|
1455
|
+
def get_IsEntranceElementProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1456
|
+
@winrt_commethod(8)
|
|
1457
|
+
def GetIsEntranceElement(self, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
1458
|
+
@winrt_commethod(9)
|
|
1459
|
+
def SetIsEntranceElement(self, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
1460
|
+
@winrt_commethod(10)
|
|
1461
|
+
def get_IsExitElementProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1462
|
+
@winrt_commethod(11)
|
|
1463
|
+
def GetIsExitElement(self, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
1464
|
+
@winrt_commethod(12)
|
|
1465
|
+
def SetIsExitElement(self, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
1466
|
+
@winrt_commethod(13)
|
|
1467
|
+
def get_ExitElementContainerProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1468
|
+
@winrt_commethod(14)
|
|
1469
|
+
def GetExitElementContainer(self, element: win32more.Microsoft.UI.Xaml.Controls.ListViewBase) -> Boolean: ...
|
|
1470
|
+
@winrt_commethod(15)
|
|
1471
|
+
def SetExitElementContainer(self, element: win32more.Microsoft.UI.Xaml.Controls.ListViewBase, value: Boolean) -> Void: ...
|
|
1472
|
+
ExitElementContainerProperty = property(get_ExitElementContainerProperty, None)
|
|
1473
|
+
ExitElementProperty = property(get_ExitElementProperty, None)
|
|
1474
|
+
IsEntranceElementProperty = property(get_IsEntranceElementProperty, None)
|
|
1475
|
+
IsExitElementProperty = property(get_IsExitElementProperty, None)
|
|
1476
|
+
class ICubicEase(ComPtr):
|
|
1477
|
+
extends: IInspectable
|
|
1478
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ICubicEase'
|
|
1479
|
+
_iid_ = Guid('{01a218b4-eb7e-54f9-bfb6-c6ee128013d2}')
|
|
1480
|
+
class IDirectConnectedAnimationConfiguration(ComPtr):
|
|
1481
|
+
extends: IInspectable
|
|
1482
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDirectConnectedAnimationConfiguration'
|
|
1483
|
+
_iid_ = Guid('{44f192eb-cc11-545e-8fa2-1f0ec9c4438a}')
|
|
1484
|
+
class IDirectConnectedAnimationConfigurationFactory(ComPtr):
|
|
1485
|
+
extends: IInspectable
|
|
1486
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDirectConnectedAnimationConfigurationFactory'
|
|
1487
|
+
_iid_ = Guid('{604aba9b-4eb8-5310-91dc-30962e25ab00}')
|
|
1488
|
+
@winrt_commethod(6)
|
|
1489
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.DirectConnectedAnimationConfiguration: ...
|
|
1490
|
+
class IDiscreteColorKeyFrame(ComPtr):
|
|
1491
|
+
extends: IInspectable
|
|
1492
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDiscreteColorKeyFrame'
|
|
1493
|
+
_iid_ = Guid('{9b3d88a7-31d3-5912-8646-641a8a565ca1}')
|
|
1494
|
+
class IDiscreteDoubleKeyFrame(ComPtr):
|
|
1495
|
+
extends: IInspectable
|
|
1496
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDiscreteDoubleKeyFrame'
|
|
1497
|
+
_iid_ = Guid('{ec16a555-c083-5a18-805b-a14b90bc80e2}')
|
|
1498
|
+
class IDiscreteObjectKeyFrame(ComPtr):
|
|
1499
|
+
extends: IInspectable
|
|
1500
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDiscreteObjectKeyFrame'
|
|
1501
|
+
_iid_ = Guid('{542fa813-6892-559d-9f69-1f2ac666af13}')
|
|
1502
|
+
class IDiscretePointKeyFrame(ComPtr):
|
|
1503
|
+
extends: IInspectable
|
|
1504
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDiscretePointKeyFrame'
|
|
1505
|
+
_iid_ = Guid('{2255a291-007e-57ce-aa53-97d1e4a0d7e2}')
|
|
1506
|
+
class IDoubleAnimation(ComPtr):
|
|
1507
|
+
extends: IInspectable
|
|
1508
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDoubleAnimation'
|
|
1509
|
+
_iid_ = Guid('{651ec97e-e483-5985-aa0b-49cfb07432dd}')
|
|
1510
|
+
@winrt_commethod(6)
|
|
1511
|
+
def get_From(self) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
1512
|
+
@winrt_commethod(7)
|
|
1513
|
+
def put_From(self, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
1514
|
+
@winrt_commethod(8)
|
|
1515
|
+
def get_To(self) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
1516
|
+
@winrt_commethod(9)
|
|
1517
|
+
def put_To(self, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
1518
|
+
@winrt_commethod(10)
|
|
1519
|
+
def get_By(self) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
1520
|
+
@winrt_commethod(11)
|
|
1521
|
+
def put_By(self, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
1522
|
+
@winrt_commethod(12)
|
|
1523
|
+
def get_EasingFunction(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
1524
|
+
@winrt_commethod(13)
|
|
1525
|
+
def put_EasingFunction(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
1526
|
+
@winrt_commethod(14)
|
|
1527
|
+
def get_EnableDependentAnimation(self) -> Boolean: ...
|
|
1528
|
+
@winrt_commethod(15)
|
|
1529
|
+
def put_EnableDependentAnimation(self, value: Boolean) -> Void: ...
|
|
1530
|
+
By = property(get_By, put_By)
|
|
1531
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
1532
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
1533
|
+
From = property(get_From, put_From)
|
|
1534
|
+
To = property(get_To, put_To)
|
|
1535
|
+
class IDoubleAnimationStatics(ComPtr):
|
|
1536
|
+
extends: IInspectable
|
|
1537
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationStatics'
|
|
1538
|
+
_iid_ = Guid('{4e098387-adc6-5549-ad21-633e4fa244c2}')
|
|
1539
|
+
@winrt_commethod(6)
|
|
1540
|
+
def get_FromProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1541
|
+
@winrt_commethod(7)
|
|
1542
|
+
def get_ToProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1543
|
+
@winrt_commethod(8)
|
|
1544
|
+
def get_ByProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1545
|
+
@winrt_commethod(9)
|
|
1546
|
+
def get_EasingFunctionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1547
|
+
@winrt_commethod(10)
|
|
1548
|
+
def get_EnableDependentAnimationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1549
|
+
ByProperty = property(get_ByProperty, None)
|
|
1550
|
+
EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
1551
|
+
EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
1552
|
+
FromProperty = property(get_FromProperty, None)
|
|
1553
|
+
ToProperty = property(get_ToProperty, None)
|
|
1554
|
+
class IDoubleAnimationUsingKeyFrames(ComPtr):
|
|
1555
|
+
extends: IInspectable
|
|
1556
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationUsingKeyFrames'
|
|
1557
|
+
_iid_ = Guid('{815437d5-63cf-54a5-aea5-24b84708d12d}')
|
|
1558
|
+
@winrt_commethod(6)
|
|
1559
|
+
def get_KeyFrames(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrameCollection: ...
|
|
1560
|
+
@winrt_commethod(7)
|
|
1561
|
+
def get_EnableDependentAnimation(self) -> Boolean: ...
|
|
1562
|
+
@winrt_commethod(8)
|
|
1563
|
+
def put_EnableDependentAnimation(self, value: Boolean) -> Void: ...
|
|
1564
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
1565
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
1566
|
+
class IDoubleAnimationUsingKeyFramesStatics(ComPtr):
|
|
1567
|
+
extends: IInspectable
|
|
1568
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDoubleAnimationUsingKeyFramesStatics'
|
|
1569
|
+
_iid_ = Guid('{4c1c9bf1-3a03-5689-b18f-6c44251e13d9}')
|
|
1570
|
+
@winrt_commethod(6)
|
|
1571
|
+
def get_EnableDependentAnimationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1572
|
+
EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
1573
|
+
class IDoubleKeyFrame(ComPtr):
|
|
1574
|
+
extends: IInspectable
|
|
1575
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrame'
|
|
1576
|
+
_iid_ = Guid('{94c82ae6-ca62-5f52-934c-3e427e75d69a}')
|
|
1577
|
+
@winrt_commethod(6)
|
|
1578
|
+
def get_Value(self) -> Double: ...
|
|
1579
|
+
@winrt_commethod(7)
|
|
1580
|
+
def put_Value(self, value: Double) -> Void: ...
|
|
1581
|
+
@winrt_commethod(8)
|
|
1582
|
+
def get_KeyTime(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
1583
|
+
@winrt_commethod(9)
|
|
1584
|
+
def put_KeyTime(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
1585
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
1586
|
+
Value = property(get_Value, put_Value)
|
|
1587
|
+
class IDoubleKeyFrameFactory(ComPtr):
|
|
1588
|
+
extends: IInspectable
|
|
1589
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrameFactory'
|
|
1590
|
+
_iid_ = Guid('{2d492cb3-f488-5d30-b00c-b6f2547d0efe}')
|
|
1591
|
+
@winrt_commethod(6)
|
|
1592
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame: ...
|
|
1593
|
+
class IDoubleKeyFrameStatics(ComPtr):
|
|
1594
|
+
extends: IInspectable
|
|
1595
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDoubleKeyFrameStatics'
|
|
1596
|
+
_iid_ = Guid('{0e56914c-b430-538f-bb66-0b8e83ab3db6}')
|
|
1597
|
+
@winrt_commethod(6)
|
|
1598
|
+
def get_ValueProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1599
|
+
@winrt_commethod(7)
|
|
1600
|
+
def get_KeyTimeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1601
|
+
KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
1602
|
+
ValueProperty = property(get_ValueProperty, None)
|
|
1603
|
+
class IDragItemThemeAnimation(ComPtr):
|
|
1604
|
+
extends: IInspectable
|
|
1605
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDragItemThemeAnimation'
|
|
1606
|
+
_iid_ = Guid('{648e690e-a2c0-58ca-b15d-db6fccc663f2}')
|
|
1607
|
+
@winrt_commethod(6)
|
|
1608
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
1609
|
+
@winrt_commethod(7)
|
|
1610
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
1611
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
1612
|
+
class IDragItemThemeAnimationStatics(ComPtr):
|
|
1613
|
+
extends: IInspectable
|
|
1614
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDragItemThemeAnimationStatics'
|
|
1615
|
+
_iid_ = Guid('{cdbdb41a-ce84-50a1-8b96-96599cd9619d}')
|
|
1616
|
+
@winrt_commethod(6)
|
|
1617
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1618
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
1619
|
+
class IDragOverThemeAnimation(ComPtr):
|
|
1620
|
+
extends: IInspectable
|
|
1621
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimation'
|
|
1622
|
+
_iid_ = Guid('{633cd3c0-71af-52fd-993e-504e3e6f56d4}')
|
|
1623
|
+
@winrt_commethod(6)
|
|
1624
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
1625
|
+
@winrt_commethod(7)
|
|
1626
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
1627
|
+
@winrt_commethod(8)
|
|
1628
|
+
def get_ToOffset(self) -> Double: ...
|
|
1629
|
+
@winrt_commethod(9)
|
|
1630
|
+
def put_ToOffset(self, value: Double) -> Void: ...
|
|
1631
|
+
@winrt_commethod(10)
|
|
1632
|
+
def get_Direction(self) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection: ...
|
|
1633
|
+
@winrt_commethod(11)
|
|
1634
|
+
def put_Direction(self, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection) -> Void: ...
|
|
1635
|
+
Direction = property(get_Direction, put_Direction)
|
|
1636
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
1637
|
+
ToOffset = property(get_ToOffset, put_ToOffset)
|
|
1638
|
+
class IDragOverThemeAnimationStatics(ComPtr):
|
|
1639
|
+
extends: IInspectable
|
|
1640
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDragOverThemeAnimationStatics'
|
|
1641
|
+
_iid_ = Guid('{8301afd2-68b2-5c6c-aadf-9a98d620e8d2}')
|
|
1642
|
+
@winrt_commethod(6)
|
|
1643
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1644
|
+
@winrt_commethod(7)
|
|
1645
|
+
def get_ToOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1646
|
+
@winrt_commethod(8)
|
|
1647
|
+
def get_DirectionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1648
|
+
DirectionProperty = property(get_DirectionProperty, None)
|
|
1649
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
1650
|
+
ToOffsetProperty = property(get_ToOffsetProperty, None)
|
|
1651
|
+
class IDrillInNavigationTransitionInfo(ComPtr):
|
|
1652
|
+
extends: IInspectable
|
|
1653
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDrillInNavigationTransitionInfo'
|
|
1654
|
+
_iid_ = Guid('{5d5863d6-4bbf-5b30-94fa-034531cfa2aa}')
|
|
1655
|
+
class IDrillInThemeAnimation(ComPtr):
|
|
1656
|
+
extends: IInspectable
|
|
1657
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimation'
|
|
1658
|
+
_iid_ = Guid('{097577e0-3027-5f24-af8c-976d9faed830}')
|
|
1659
|
+
@winrt_commethod(6)
|
|
1660
|
+
def get_EntranceTargetName(self) -> WinRT_String: ...
|
|
1661
|
+
@winrt_commethod(7)
|
|
1662
|
+
def put_EntranceTargetName(self, value: WinRT_String) -> Void: ...
|
|
1663
|
+
@winrt_commethod(8)
|
|
1664
|
+
def get_EntranceTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
1665
|
+
@winrt_commethod(9)
|
|
1666
|
+
def put_EntranceTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
1667
|
+
@winrt_commethod(10)
|
|
1668
|
+
def get_ExitTargetName(self) -> WinRT_String: ...
|
|
1669
|
+
@winrt_commethod(11)
|
|
1670
|
+
def put_ExitTargetName(self, value: WinRT_String) -> Void: ...
|
|
1671
|
+
@winrt_commethod(12)
|
|
1672
|
+
def get_ExitTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
1673
|
+
@winrt_commethod(13)
|
|
1674
|
+
def put_ExitTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
1675
|
+
EntranceTarget = property(get_EntranceTarget, put_EntranceTarget)
|
|
1676
|
+
EntranceTargetName = property(get_EntranceTargetName, put_EntranceTargetName)
|
|
1677
|
+
ExitTarget = property(get_ExitTarget, put_ExitTarget)
|
|
1678
|
+
ExitTargetName = property(get_ExitTargetName, put_ExitTargetName)
|
|
1679
|
+
class IDrillInThemeAnimationStatics(ComPtr):
|
|
1680
|
+
extends: IInspectable
|
|
1681
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDrillInThemeAnimationStatics'
|
|
1682
|
+
_iid_ = Guid('{ba24258e-3a8e-5804-915a-7670893dbea4}')
|
|
1683
|
+
@winrt_commethod(6)
|
|
1684
|
+
def get_EntranceTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1685
|
+
@winrt_commethod(7)
|
|
1686
|
+
def get_EntranceTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1687
|
+
@winrt_commethod(8)
|
|
1688
|
+
def get_ExitTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1689
|
+
@winrt_commethod(9)
|
|
1690
|
+
def get_ExitTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1691
|
+
EntranceTargetNameProperty = property(get_EntranceTargetNameProperty, None)
|
|
1692
|
+
EntranceTargetProperty = property(get_EntranceTargetProperty, None)
|
|
1693
|
+
ExitTargetNameProperty = property(get_ExitTargetNameProperty, None)
|
|
1694
|
+
ExitTargetProperty = property(get_ExitTargetProperty, None)
|
|
1695
|
+
class IDrillOutThemeAnimation(ComPtr):
|
|
1696
|
+
extends: IInspectable
|
|
1697
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimation'
|
|
1698
|
+
_iid_ = Guid('{9a93b9cc-925f-525a-9eac-55d39db3d314}')
|
|
1699
|
+
@winrt_commethod(6)
|
|
1700
|
+
def get_EntranceTargetName(self) -> WinRT_String: ...
|
|
1701
|
+
@winrt_commethod(7)
|
|
1702
|
+
def put_EntranceTargetName(self, value: WinRT_String) -> Void: ...
|
|
1703
|
+
@winrt_commethod(8)
|
|
1704
|
+
def get_EntranceTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
1705
|
+
@winrt_commethod(9)
|
|
1706
|
+
def put_EntranceTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
1707
|
+
@winrt_commethod(10)
|
|
1708
|
+
def get_ExitTargetName(self) -> WinRT_String: ...
|
|
1709
|
+
@winrt_commethod(11)
|
|
1710
|
+
def put_ExitTargetName(self, value: WinRT_String) -> Void: ...
|
|
1711
|
+
@winrt_commethod(12)
|
|
1712
|
+
def get_ExitTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
1713
|
+
@winrt_commethod(13)
|
|
1714
|
+
def put_ExitTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
1715
|
+
EntranceTarget = property(get_EntranceTarget, put_EntranceTarget)
|
|
1716
|
+
EntranceTargetName = property(get_EntranceTargetName, put_EntranceTargetName)
|
|
1717
|
+
ExitTarget = property(get_ExitTarget, put_ExitTarget)
|
|
1718
|
+
ExitTargetName = property(get_ExitTargetName, put_ExitTargetName)
|
|
1719
|
+
class IDrillOutThemeAnimationStatics(ComPtr):
|
|
1720
|
+
extends: IInspectable
|
|
1721
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDrillOutThemeAnimationStatics'
|
|
1722
|
+
_iid_ = Guid('{6eb9693b-c0d0-5bae-9cd2-10d80b8d3867}')
|
|
1723
|
+
@winrt_commethod(6)
|
|
1724
|
+
def get_EntranceTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1725
|
+
@winrt_commethod(7)
|
|
1726
|
+
def get_EntranceTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1727
|
+
@winrt_commethod(8)
|
|
1728
|
+
def get_ExitTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1729
|
+
@winrt_commethod(9)
|
|
1730
|
+
def get_ExitTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1731
|
+
EntranceTargetNameProperty = property(get_EntranceTargetNameProperty, None)
|
|
1732
|
+
EntranceTargetProperty = property(get_EntranceTargetProperty, None)
|
|
1733
|
+
ExitTargetNameProperty = property(get_ExitTargetNameProperty, None)
|
|
1734
|
+
ExitTargetProperty = property(get_ExitTargetProperty, None)
|
|
1735
|
+
class IDropTargetItemThemeAnimation(ComPtr):
|
|
1736
|
+
extends: IInspectable
|
|
1737
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDropTargetItemThemeAnimation'
|
|
1738
|
+
_iid_ = Guid('{b97f19c0-f1e2-5705-a252-2db05d2e5a54}')
|
|
1739
|
+
@winrt_commethod(6)
|
|
1740
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
1741
|
+
@winrt_commethod(7)
|
|
1742
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
1743
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
1744
|
+
class IDropTargetItemThemeAnimationStatics(ComPtr):
|
|
1745
|
+
extends: IInspectable
|
|
1746
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IDropTargetItemThemeAnimationStatics'
|
|
1747
|
+
_iid_ = Guid('{a0ce9e16-ae12-55fc-a9e5-29dc94a713bd}')
|
|
1748
|
+
@winrt_commethod(6)
|
|
1749
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1750
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
1751
|
+
class IEasingColorKeyFrame(ComPtr):
|
|
1752
|
+
extends: IInspectable
|
|
1753
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingColorKeyFrame'
|
|
1754
|
+
_iid_ = Guid('{a137a710-da3c-5426-a1a2-3a5a672a4264}')
|
|
1755
|
+
@winrt_commethod(6)
|
|
1756
|
+
def get_EasingFunction(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
1757
|
+
@winrt_commethod(7)
|
|
1758
|
+
def put_EasingFunction(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
1759
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
1760
|
+
class IEasingColorKeyFrameStatics(ComPtr):
|
|
1761
|
+
extends: IInspectable
|
|
1762
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingColorKeyFrameStatics'
|
|
1763
|
+
_iid_ = Guid('{c57818c0-3361-587d-b381-620b69251bcf}')
|
|
1764
|
+
@winrt_commethod(6)
|
|
1765
|
+
def get_EasingFunctionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1766
|
+
EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
1767
|
+
class IEasingDoubleKeyFrame(ComPtr):
|
|
1768
|
+
extends: IInspectable
|
|
1769
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingDoubleKeyFrame'
|
|
1770
|
+
_iid_ = Guid('{935d9b7e-da61-5bb2-a574-7d2e53b60561}')
|
|
1771
|
+
@winrt_commethod(6)
|
|
1772
|
+
def get_EasingFunction(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
1773
|
+
@winrt_commethod(7)
|
|
1774
|
+
def put_EasingFunction(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
1775
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
1776
|
+
class IEasingDoubleKeyFrameStatics(ComPtr):
|
|
1777
|
+
extends: IInspectable
|
|
1778
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingDoubleKeyFrameStatics'
|
|
1779
|
+
_iid_ = Guid('{8cc08735-4221-5127-ab2f-1e7e3df95fb9}')
|
|
1780
|
+
@winrt_commethod(6)
|
|
1781
|
+
def get_EasingFunctionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1782
|
+
EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
1783
|
+
class IEasingFunctionBase(ComPtr):
|
|
1784
|
+
extends: IInspectable
|
|
1785
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBase'
|
|
1786
|
+
_iid_ = Guid('{4fab519a-a93d-5d28-af18-84532bd32efe}')
|
|
1787
|
+
@winrt_commethod(6)
|
|
1788
|
+
def get_EasingMode(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingMode: ...
|
|
1789
|
+
@winrt_commethod(7)
|
|
1790
|
+
def put_EasingMode(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingMode) -> Void: ...
|
|
1791
|
+
@winrt_commethod(8)
|
|
1792
|
+
def Ease(self, normalizedTime: Double) -> Double: ...
|
|
1793
|
+
EasingMode = property(get_EasingMode, put_EasingMode)
|
|
1794
|
+
class IEasingFunctionBaseFactory(ComPtr):
|
|
1795
|
+
extends: IInspectable
|
|
1796
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBaseFactory'
|
|
1797
|
+
_iid_ = Guid('{b1b92f4c-5ec7-5cda-b1d4-fd159595ca47}')
|
|
1798
|
+
class IEasingFunctionBaseStatics(ComPtr):
|
|
1799
|
+
extends: IInspectable
|
|
1800
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingFunctionBaseStatics'
|
|
1801
|
+
_iid_ = Guid('{09032445-967c-52b8-b712-15f066b32821}')
|
|
1802
|
+
@winrt_commethod(6)
|
|
1803
|
+
def get_EasingModeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1804
|
+
EasingModeProperty = property(get_EasingModeProperty, None)
|
|
1805
|
+
class IEasingPointKeyFrame(ComPtr):
|
|
1806
|
+
extends: IInspectable
|
|
1807
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingPointKeyFrame'
|
|
1808
|
+
_iid_ = Guid('{9406ee8e-3641-54fe-a424-83420ea45cd3}')
|
|
1809
|
+
@winrt_commethod(6)
|
|
1810
|
+
def get_EasingFunction(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
1811
|
+
@winrt_commethod(7)
|
|
1812
|
+
def put_EasingFunction(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
1813
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
1814
|
+
class IEasingPointKeyFrameStatics(ComPtr):
|
|
1815
|
+
extends: IInspectable
|
|
1816
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEasingPointKeyFrameStatics'
|
|
1817
|
+
_iid_ = Guid('{ac727659-92a3-52ea-8949-b609e48c233d}')
|
|
1818
|
+
@winrt_commethod(6)
|
|
1819
|
+
def get_EasingFunctionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1820
|
+
EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
1821
|
+
class IEdgeUIThemeTransition(ComPtr):
|
|
1822
|
+
extends: IInspectable
|
|
1823
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEdgeUIThemeTransition'
|
|
1824
|
+
_iid_ = Guid('{57089964-e358-5fe2-84e7-15e82bba9c06}')
|
|
1825
|
+
@winrt_commethod(6)
|
|
1826
|
+
def get_Edge(self) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation: ...
|
|
1827
|
+
@winrt_commethod(7)
|
|
1828
|
+
def put_Edge(self, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation) -> Void: ...
|
|
1829
|
+
Edge = property(get_Edge, put_Edge)
|
|
1830
|
+
class IEdgeUIThemeTransitionStatics(ComPtr):
|
|
1831
|
+
extends: IInspectable
|
|
1832
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEdgeUIThemeTransitionStatics'
|
|
1833
|
+
_iid_ = Guid('{316af8d4-d2a0-5d27-9af6-747797965d46}')
|
|
1834
|
+
@winrt_commethod(6)
|
|
1835
|
+
def get_EdgeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1836
|
+
EdgeProperty = property(get_EdgeProperty, None)
|
|
1837
|
+
class IElasticEase(ComPtr):
|
|
1838
|
+
extends: IInspectable
|
|
1839
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IElasticEase'
|
|
1840
|
+
_iid_ = Guid('{2b18d50b-4d34-509b-915c-61b1aa6f83d8}')
|
|
1841
|
+
@winrt_commethod(6)
|
|
1842
|
+
def get_Oscillations(self) -> Int32: ...
|
|
1843
|
+
@winrt_commethod(7)
|
|
1844
|
+
def put_Oscillations(self, value: Int32) -> Void: ...
|
|
1845
|
+
@winrt_commethod(8)
|
|
1846
|
+
def get_Springiness(self) -> Double: ...
|
|
1847
|
+
@winrt_commethod(9)
|
|
1848
|
+
def put_Springiness(self, value: Double) -> Void: ...
|
|
1849
|
+
Oscillations = property(get_Oscillations, put_Oscillations)
|
|
1850
|
+
Springiness = property(get_Springiness, put_Springiness)
|
|
1851
|
+
class IElasticEaseStatics(ComPtr):
|
|
1852
|
+
extends: IInspectable
|
|
1853
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IElasticEaseStatics'
|
|
1854
|
+
_iid_ = Guid('{95fd9290-d279-5857-9f50-3f299a2d02f4}')
|
|
1855
|
+
@winrt_commethod(6)
|
|
1856
|
+
def get_OscillationsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1857
|
+
@winrt_commethod(7)
|
|
1858
|
+
def get_SpringinessProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1859
|
+
OscillationsProperty = property(get_OscillationsProperty, None)
|
|
1860
|
+
SpringinessProperty = property(get_SpringinessProperty, None)
|
|
1861
|
+
class IEntranceNavigationTransitionInfo(ComPtr):
|
|
1862
|
+
extends: IInspectable
|
|
1863
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEntranceNavigationTransitionInfo'
|
|
1864
|
+
_iid_ = Guid('{dec74921-0ed7-54e1-8c1d-30b8cccc4b8d}')
|
|
1865
|
+
class IEntranceNavigationTransitionInfoStatics(ComPtr):
|
|
1866
|
+
extends: IInspectable
|
|
1867
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEntranceNavigationTransitionInfoStatics'
|
|
1868
|
+
_iid_ = Guid('{f1096de1-1f79-5d38-a4d6-16f3bdaab7f0}')
|
|
1869
|
+
@winrt_commethod(6)
|
|
1870
|
+
def get_IsTargetElementProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1871
|
+
@winrt_commethod(7)
|
|
1872
|
+
def GetIsTargetElement(self, element: win32more.Microsoft.UI.Xaml.UIElement) -> Boolean: ...
|
|
1873
|
+
@winrt_commethod(8)
|
|
1874
|
+
def SetIsTargetElement(self, element: win32more.Microsoft.UI.Xaml.UIElement, value: Boolean) -> Void: ...
|
|
1875
|
+
IsTargetElementProperty = property(get_IsTargetElementProperty, None)
|
|
1876
|
+
class IEntranceThemeTransition(ComPtr):
|
|
1877
|
+
extends: IInspectable
|
|
1878
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransition'
|
|
1879
|
+
_iid_ = Guid('{8eb681fa-1629-5e29-ac1e-70f3639329f8}')
|
|
1880
|
+
@winrt_commethod(6)
|
|
1881
|
+
def get_FromHorizontalOffset(self) -> Double: ...
|
|
1882
|
+
@winrt_commethod(7)
|
|
1883
|
+
def put_FromHorizontalOffset(self, value: Double) -> Void: ...
|
|
1884
|
+
@winrt_commethod(8)
|
|
1885
|
+
def get_FromVerticalOffset(self) -> Double: ...
|
|
1886
|
+
@winrt_commethod(9)
|
|
1887
|
+
def put_FromVerticalOffset(self, value: Double) -> Void: ...
|
|
1888
|
+
@winrt_commethod(10)
|
|
1889
|
+
def get_IsStaggeringEnabled(self) -> Boolean: ...
|
|
1890
|
+
@winrt_commethod(11)
|
|
1891
|
+
def put_IsStaggeringEnabled(self, value: Boolean) -> Void: ...
|
|
1892
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
1893
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
1894
|
+
IsStaggeringEnabled = property(get_IsStaggeringEnabled, put_IsStaggeringEnabled)
|
|
1895
|
+
class IEntranceThemeTransitionStatics(ComPtr):
|
|
1896
|
+
extends: IInspectable
|
|
1897
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IEntranceThemeTransitionStatics'
|
|
1898
|
+
_iid_ = Guid('{c99e5435-facc-50af-b96c-63b14fe7156e}')
|
|
1899
|
+
@winrt_commethod(6)
|
|
1900
|
+
def get_FromHorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1901
|
+
@winrt_commethod(7)
|
|
1902
|
+
def get_FromVerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1903
|
+
@winrt_commethod(8)
|
|
1904
|
+
def get_IsStaggeringEnabledProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1905
|
+
FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
1906
|
+
FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
1907
|
+
IsStaggeringEnabledProperty = property(get_IsStaggeringEnabledProperty, None)
|
|
1908
|
+
class IExponentialEase(ComPtr):
|
|
1909
|
+
extends: IInspectable
|
|
1910
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IExponentialEase'
|
|
1911
|
+
_iid_ = Guid('{4d289262-e832-5fbc-a98b-87a6ecb3b6cc}')
|
|
1912
|
+
@winrt_commethod(6)
|
|
1913
|
+
def get_Exponent(self) -> Double: ...
|
|
1914
|
+
@winrt_commethod(7)
|
|
1915
|
+
def put_Exponent(self, value: Double) -> Void: ...
|
|
1916
|
+
Exponent = property(get_Exponent, put_Exponent)
|
|
1917
|
+
class IExponentialEaseStatics(ComPtr):
|
|
1918
|
+
extends: IInspectable
|
|
1919
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IExponentialEaseStatics'
|
|
1920
|
+
_iid_ = Guid('{8394ab8f-ddf1-55d0-acf1-07fedd929bb5}')
|
|
1921
|
+
@winrt_commethod(6)
|
|
1922
|
+
def get_ExponentProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1923
|
+
ExponentProperty = property(get_ExponentProperty, None)
|
|
1924
|
+
class IFadeInThemeAnimation(ComPtr):
|
|
1925
|
+
extends: IInspectable
|
|
1926
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IFadeInThemeAnimation'
|
|
1927
|
+
_iid_ = Guid('{0dca074a-31cc-5e70-8b6b-8dbd7fff01f6}')
|
|
1928
|
+
@winrt_commethod(6)
|
|
1929
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
1930
|
+
@winrt_commethod(7)
|
|
1931
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
1932
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
1933
|
+
class IFadeInThemeAnimationStatics(ComPtr):
|
|
1934
|
+
extends: IInspectable
|
|
1935
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IFadeInThemeAnimationStatics'
|
|
1936
|
+
_iid_ = Guid('{5d74a6a6-92c6-5e49-865f-676087247179}')
|
|
1937
|
+
@winrt_commethod(6)
|
|
1938
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1939
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
1940
|
+
class IFadeOutThemeAnimation(ComPtr):
|
|
1941
|
+
extends: IInspectable
|
|
1942
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IFadeOutThemeAnimation'
|
|
1943
|
+
_iid_ = Guid('{114024d6-5d67-5c9c-83c5-54a8bd7b671a}')
|
|
1944
|
+
@winrt_commethod(6)
|
|
1945
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
1946
|
+
@winrt_commethod(7)
|
|
1947
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
1948
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
1949
|
+
class IFadeOutThemeAnimationStatics(ComPtr):
|
|
1950
|
+
extends: IInspectable
|
|
1951
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IFadeOutThemeAnimationStatics'
|
|
1952
|
+
_iid_ = Guid('{0277bea1-a0a5-5e26-9b56-6a4208862738}')
|
|
1953
|
+
@winrt_commethod(6)
|
|
1954
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1955
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
1956
|
+
class IGravityConnectedAnimationConfiguration(ComPtr):
|
|
1957
|
+
extends: IInspectable
|
|
1958
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IGravityConnectedAnimationConfiguration'
|
|
1959
|
+
_iid_ = Guid('{04c8b276-cff3-5a55-9229-33dc66c99e20}')
|
|
1960
|
+
@winrt_commethod(6)
|
|
1961
|
+
def get_IsShadowEnabled(self) -> Boolean: ...
|
|
1962
|
+
@winrt_commethod(7)
|
|
1963
|
+
def put_IsShadowEnabled(self, value: Boolean) -> Void: ...
|
|
1964
|
+
IsShadowEnabled = property(get_IsShadowEnabled, put_IsShadowEnabled)
|
|
1965
|
+
class IGravityConnectedAnimationConfigurationFactory(ComPtr):
|
|
1966
|
+
extends: IInspectable
|
|
1967
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IGravityConnectedAnimationConfigurationFactory'
|
|
1968
|
+
_iid_ = Guid('{bc7a71b5-7cda-5bb7-967e-d6a031285a9c}')
|
|
1969
|
+
@winrt_commethod(6)
|
|
1970
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.GravityConnectedAnimationConfiguration: ...
|
|
1971
|
+
class IKeySpline(ComPtr):
|
|
1972
|
+
extends: IInspectable
|
|
1973
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IKeySpline'
|
|
1974
|
+
_iid_ = Guid('{130d8b2b-0b52-5253-881b-36ab48592e6b}')
|
|
1975
|
+
@winrt_commethod(6)
|
|
1976
|
+
def get_ControlPoint1(self) -> win32more.Windows.Foundation.Point: ...
|
|
1977
|
+
@winrt_commethod(7)
|
|
1978
|
+
def put_ControlPoint1(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1979
|
+
@winrt_commethod(8)
|
|
1980
|
+
def get_ControlPoint2(self) -> win32more.Windows.Foundation.Point: ...
|
|
1981
|
+
@winrt_commethod(9)
|
|
1982
|
+
def put_ControlPoint2(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1983
|
+
ControlPoint1 = property(get_ControlPoint1, put_ControlPoint1)
|
|
1984
|
+
ControlPoint2 = property(get_ControlPoint2, put_ControlPoint2)
|
|
1985
|
+
class IKeyTimeHelper(ComPtr):
|
|
1986
|
+
extends: IInspectable
|
|
1987
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IKeyTimeHelper'
|
|
1988
|
+
_iid_ = Guid('{e354da44-1f24-59c6-bc5b-d6b1ba267e9c}')
|
|
1989
|
+
class IKeyTimeHelperStatics(ComPtr):
|
|
1990
|
+
extends: IInspectable
|
|
1991
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IKeyTimeHelperStatics'
|
|
1992
|
+
_iid_ = Guid('{ae5d22c9-0fdb-5823-8846-8a4d0b9eebfa}')
|
|
1993
|
+
@winrt_commethod(6)
|
|
1994
|
+
def FromTimeSpan(self, timeSpan: win32more.Windows.Foundation.TimeSpan) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
1995
|
+
class ILinearColorKeyFrame(ComPtr):
|
|
1996
|
+
extends: IInspectable
|
|
1997
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ILinearColorKeyFrame'
|
|
1998
|
+
_iid_ = Guid('{0bce4cd6-3a80-5f2f-932e-619a8546d0bd}')
|
|
1999
|
+
class ILinearDoubleKeyFrame(ComPtr):
|
|
2000
|
+
extends: IInspectable
|
|
2001
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ILinearDoubleKeyFrame'
|
|
2002
|
+
_iid_ = Guid('{38a635b9-f613-55e0-aaec-9d4e097eff91}')
|
|
2003
|
+
class ILinearPointKeyFrame(ComPtr):
|
|
2004
|
+
extends: IInspectable
|
|
2005
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ILinearPointKeyFrame'
|
|
2006
|
+
_iid_ = Guid('{4ec22493-bacb-5105-ac16-8ea5418ab76e}')
|
|
2007
|
+
class INavigationThemeTransition(ComPtr):
|
|
2008
|
+
extends: IInspectable
|
|
2009
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.INavigationThemeTransition'
|
|
2010
|
+
_iid_ = Guid('{d7cfbd3b-0d27-5ea1-beb7-f6b847520dc6}')
|
|
2011
|
+
@winrt_commethod(6)
|
|
2012
|
+
def get_DefaultNavigationTransitionInfo(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo: ...
|
|
2013
|
+
@winrt_commethod(7)
|
|
2014
|
+
def put_DefaultNavigationTransitionInfo(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo) -> Void: ...
|
|
2015
|
+
DefaultNavigationTransitionInfo = property(get_DefaultNavigationTransitionInfo, put_DefaultNavigationTransitionInfo)
|
|
2016
|
+
class INavigationThemeTransitionStatics(ComPtr):
|
|
2017
|
+
extends: IInspectable
|
|
2018
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.INavigationThemeTransitionStatics'
|
|
2019
|
+
_iid_ = Guid('{78323eff-d543-551d-b2c7-94e93a16065b}')
|
|
2020
|
+
@winrt_commethod(6)
|
|
2021
|
+
def get_DefaultNavigationTransitionInfoProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2022
|
+
DefaultNavigationTransitionInfoProperty = property(get_DefaultNavigationTransitionInfoProperty, None)
|
|
2023
|
+
class INavigationTransitionInfo(ComPtr):
|
|
2024
|
+
extends: IInspectable
|
|
2025
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.INavigationTransitionInfo'
|
|
2026
|
+
_iid_ = Guid('{25bb17fb-6e15-514e-b278-197537a4d990}')
|
|
2027
|
+
class INavigationTransitionInfoFactory(ComPtr):
|
|
2028
|
+
extends: IInspectable
|
|
2029
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.INavigationTransitionInfoFactory'
|
|
2030
|
+
_iid_ = Guid('{c514b6ff-f6ed-572e-8392-3ea17bc7d4c4}')
|
|
2031
|
+
@winrt_commethod(6)
|
|
2032
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo: ...
|
|
2033
|
+
class INavigationTransitionInfoOverrides(ComPtr):
|
|
2034
|
+
extends: IInspectable
|
|
2035
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.INavigationTransitionInfoOverrides'
|
|
2036
|
+
_iid_ = Guid('{3d6af190-5a56-513d-aff9-631925d0fa43}')
|
|
2037
|
+
@winrt_commethod(6)
|
|
2038
|
+
def GetNavigationStateCore(self) -> WinRT_String: ...
|
|
2039
|
+
@winrt_commethod(7)
|
|
2040
|
+
def SetNavigationStateCore(self, navigationState: WinRT_String) -> Void: ...
|
|
2041
|
+
class IObjectAnimationUsingKeyFrames(ComPtr):
|
|
2042
|
+
extends: IInspectable
|
|
2043
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IObjectAnimationUsingKeyFrames'
|
|
2044
|
+
_iid_ = Guid('{aa08dc4c-0b03-5c0a-b084-d95d272b2f0d}')
|
|
2045
|
+
@winrt_commethod(6)
|
|
2046
|
+
def get_KeyFrames(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrameCollection: ...
|
|
2047
|
+
@winrt_commethod(7)
|
|
2048
|
+
def get_EnableDependentAnimation(self) -> Boolean: ...
|
|
2049
|
+
@winrt_commethod(8)
|
|
2050
|
+
def put_EnableDependentAnimation(self, value: Boolean) -> Void: ...
|
|
2051
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
2052
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
2053
|
+
class IObjectAnimationUsingKeyFramesStatics(ComPtr):
|
|
2054
|
+
extends: IInspectable
|
|
2055
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IObjectAnimationUsingKeyFramesStatics'
|
|
2056
|
+
_iid_ = Guid('{411a09b0-9ab4-54b9-99b9-54f955a6754e}')
|
|
2057
|
+
@winrt_commethod(6)
|
|
2058
|
+
def get_EnableDependentAnimationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2059
|
+
EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
2060
|
+
class IObjectKeyFrame(ComPtr):
|
|
2061
|
+
extends: IInspectable
|
|
2062
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrame'
|
|
2063
|
+
_iid_ = Guid('{c5a9f65b-fc69-5a88-a797-34f46d761381}')
|
|
2064
|
+
@winrt_commethod(6)
|
|
2065
|
+
def get_Value(self) -> IInspectable: ...
|
|
2066
|
+
@winrt_commethod(7)
|
|
2067
|
+
def put_Value(self, value: IInspectable) -> Void: ...
|
|
2068
|
+
@winrt_commethod(8)
|
|
2069
|
+
def get_KeyTime(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
2070
|
+
@winrt_commethod(9)
|
|
2071
|
+
def put_KeyTime(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
2072
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
2073
|
+
Value = property(get_Value, put_Value)
|
|
2074
|
+
class IObjectKeyFrameFactory(ComPtr):
|
|
2075
|
+
extends: IInspectable
|
|
2076
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrameFactory'
|
|
2077
|
+
_iid_ = Guid('{dc59da6e-82b9-55f7-a358-ba2a07665aa9}')
|
|
2078
|
+
@winrt_commethod(6)
|
|
2079
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame: ...
|
|
2080
|
+
class IObjectKeyFrameStatics(ComPtr):
|
|
2081
|
+
extends: IInspectable
|
|
2082
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrameStatics'
|
|
2083
|
+
_iid_ = Guid('{39e59ceb-2859-5a5f-acd8-bc491d49c4b6}')
|
|
2084
|
+
@winrt_commethod(6)
|
|
2085
|
+
def get_ValueProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2086
|
+
@winrt_commethod(7)
|
|
2087
|
+
def get_KeyTimeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2088
|
+
KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
2089
|
+
ValueProperty = property(get_ValueProperty, None)
|
|
2090
|
+
class IPaneThemeTransition(ComPtr):
|
|
2091
|
+
extends: IInspectable
|
|
2092
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPaneThemeTransition'
|
|
2093
|
+
_iid_ = Guid('{321bcd80-157c-5e10-b0fe-6440bd92529a}')
|
|
2094
|
+
@winrt_commethod(6)
|
|
2095
|
+
def get_Edge(self) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation: ...
|
|
2096
|
+
@winrt_commethod(7)
|
|
2097
|
+
def put_Edge(self, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation) -> Void: ...
|
|
2098
|
+
Edge = property(get_Edge, put_Edge)
|
|
2099
|
+
class IPaneThemeTransitionStatics(ComPtr):
|
|
2100
|
+
extends: IInspectable
|
|
2101
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPaneThemeTransitionStatics'
|
|
2102
|
+
_iid_ = Guid('{47e01752-5264-5fb1-8946-ab49fe6af8fd}')
|
|
2103
|
+
@winrt_commethod(6)
|
|
2104
|
+
def get_EdgeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2105
|
+
EdgeProperty = property(get_EdgeProperty, None)
|
|
2106
|
+
class IPointAnimation(ComPtr):
|
|
2107
|
+
extends: IInspectable
|
|
2108
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointAnimation'
|
|
2109
|
+
_iid_ = Guid('{a0737cc4-2eab-5c13-a5d7-78361df1000e}')
|
|
2110
|
+
@winrt_commethod(6)
|
|
2111
|
+
def get_From(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]: ...
|
|
2112
|
+
@winrt_commethod(7)
|
|
2113
|
+
def put_From(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
2114
|
+
@winrt_commethod(8)
|
|
2115
|
+
def get_To(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]: ...
|
|
2116
|
+
@winrt_commethod(9)
|
|
2117
|
+
def put_To(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
2118
|
+
@winrt_commethod(10)
|
|
2119
|
+
def get_By(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]: ...
|
|
2120
|
+
@winrt_commethod(11)
|
|
2121
|
+
def put_By(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
2122
|
+
@winrt_commethod(12)
|
|
2123
|
+
def get_EasingFunction(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
2124
|
+
@winrt_commethod(13)
|
|
2125
|
+
def put_EasingFunction(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
2126
|
+
@winrt_commethod(14)
|
|
2127
|
+
def get_EnableDependentAnimation(self) -> Boolean: ...
|
|
2128
|
+
@winrt_commethod(15)
|
|
2129
|
+
def put_EnableDependentAnimation(self, value: Boolean) -> Void: ...
|
|
2130
|
+
By = property(get_By, put_By)
|
|
2131
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
2132
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
2133
|
+
From = property(get_From, put_From)
|
|
2134
|
+
To = property(get_To, put_To)
|
|
2135
|
+
class IPointAnimationStatics(ComPtr):
|
|
2136
|
+
extends: IInspectable
|
|
2137
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointAnimationStatics'
|
|
2138
|
+
_iid_ = Guid('{71cfb43b-bada-554b-8fca-b558d623bbc0}')
|
|
2139
|
+
@winrt_commethod(6)
|
|
2140
|
+
def get_FromProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2141
|
+
@winrt_commethod(7)
|
|
2142
|
+
def get_ToProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2143
|
+
@winrt_commethod(8)
|
|
2144
|
+
def get_ByProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2145
|
+
@winrt_commethod(9)
|
|
2146
|
+
def get_EasingFunctionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2147
|
+
@winrt_commethod(10)
|
|
2148
|
+
def get_EnableDependentAnimationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2149
|
+
ByProperty = property(get_ByProperty, None)
|
|
2150
|
+
EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
2151
|
+
EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
2152
|
+
FromProperty = property(get_FromProperty, None)
|
|
2153
|
+
ToProperty = property(get_ToProperty, None)
|
|
2154
|
+
class IPointAnimationUsingKeyFrames(ComPtr):
|
|
2155
|
+
extends: IInspectable
|
|
2156
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointAnimationUsingKeyFrames'
|
|
2157
|
+
_iid_ = Guid('{bdd63992-df13-5514-8611-4952f722f6d0}')
|
|
2158
|
+
@winrt_commethod(6)
|
|
2159
|
+
def get_KeyFrames(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrameCollection: ...
|
|
2160
|
+
@winrt_commethod(7)
|
|
2161
|
+
def get_EnableDependentAnimation(self) -> Boolean: ...
|
|
2162
|
+
@winrt_commethod(8)
|
|
2163
|
+
def put_EnableDependentAnimation(self, value: Boolean) -> Void: ...
|
|
2164
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
2165
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
2166
|
+
class IPointAnimationUsingKeyFramesStatics(ComPtr):
|
|
2167
|
+
extends: IInspectable
|
|
2168
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointAnimationUsingKeyFramesStatics'
|
|
2169
|
+
_iid_ = Guid('{04152b3b-f0da-5b28-877d-9ac96d334a77}')
|
|
2170
|
+
@winrt_commethod(6)
|
|
2171
|
+
def get_EnableDependentAnimationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2172
|
+
EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
2173
|
+
class IPointKeyFrame(ComPtr):
|
|
2174
|
+
extends: IInspectable
|
|
2175
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointKeyFrame'
|
|
2176
|
+
_iid_ = Guid('{59d5c07d-a3a7-5450-9dfb-4b7e77d58f93}')
|
|
2177
|
+
@winrt_commethod(6)
|
|
2178
|
+
def get_Value(self) -> win32more.Windows.Foundation.Point: ...
|
|
2179
|
+
@winrt_commethod(7)
|
|
2180
|
+
def put_Value(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2181
|
+
@winrt_commethod(8)
|
|
2182
|
+
def get_KeyTime(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
2183
|
+
@winrt_commethod(9)
|
|
2184
|
+
def put_KeyTime(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
2185
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
2186
|
+
Value = property(get_Value, put_Value)
|
|
2187
|
+
class IPointKeyFrameFactory(ComPtr):
|
|
2188
|
+
extends: IInspectable
|
|
2189
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointKeyFrameFactory'
|
|
2190
|
+
_iid_ = Guid('{c52ee293-f10e-5252-bc08-a28659740f0e}')
|
|
2191
|
+
@winrt_commethod(6)
|
|
2192
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame: ...
|
|
2193
|
+
class IPointKeyFrameStatics(ComPtr):
|
|
2194
|
+
extends: IInspectable
|
|
2195
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointKeyFrameStatics'
|
|
2196
|
+
_iid_ = Guid('{96cd72fd-d834-5b23-9a17-1548961dc348}')
|
|
2197
|
+
@winrt_commethod(6)
|
|
2198
|
+
def get_ValueProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2199
|
+
@winrt_commethod(7)
|
|
2200
|
+
def get_KeyTimeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2201
|
+
KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
2202
|
+
ValueProperty = property(get_ValueProperty, None)
|
|
2203
|
+
class IPointerDownThemeAnimation(ComPtr):
|
|
2204
|
+
extends: IInspectable
|
|
2205
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointerDownThemeAnimation'
|
|
2206
|
+
_iid_ = Guid('{abdd1acc-40df-595d-be68-0362fe681b91}')
|
|
2207
|
+
@winrt_commethod(6)
|
|
2208
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
2209
|
+
@winrt_commethod(7)
|
|
2210
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
2211
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
2212
|
+
class IPointerDownThemeAnimationStatics(ComPtr):
|
|
2213
|
+
extends: IInspectable
|
|
2214
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointerDownThemeAnimationStatics'
|
|
2215
|
+
_iid_ = Guid('{12268b39-fb7d-53da-8ccc-5967dc06bce9}')
|
|
2216
|
+
@winrt_commethod(6)
|
|
2217
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2218
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2219
|
+
class IPointerUpThemeAnimation(ComPtr):
|
|
2220
|
+
extends: IInspectable
|
|
2221
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointerUpThemeAnimation'
|
|
2222
|
+
_iid_ = Guid('{94896d1c-c938-5d68-84da-552bde815810}')
|
|
2223
|
+
@winrt_commethod(6)
|
|
2224
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
2225
|
+
@winrt_commethod(7)
|
|
2226
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
2227
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
2228
|
+
class IPointerUpThemeAnimationStatics(ComPtr):
|
|
2229
|
+
extends: IInspectable
|
|
2230
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPointerUpThemeAnimationStatics'
|
|
2231
|
+
_iid_ = Guid('{51a3117e-c6fa-5dc5-8db8-73f060003ae4}')
|
|
2232
|
+
@winrt_commethod(6)
|
|
2233
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2234
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2235
|
+
class IPopInThemeAnimation(ComPtr):
|
|
2236
|
+
extends: IInspectable
|
|
2237
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation'
|
|
2238
|
+
_iid_ = Guid('{20136388-b4e4-5cbb-9cb2-df2ea7e6c44b}')
|
|
2239
|
+
@winrt_commethod(6)
|
|
2240
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
2241
|
+
@winrt_commethod(7)
|
|
2242
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
2243
|
+
@winrt_commethod(8)
|
|
2244
|
+
def get_FromHorizontalOffset(self) -> Double: ...
|
|
2245
|
+
@winrt_commethod(9)
|
|
2246
|
+
def put_FromHorizontalOffset(self, value: Double) -> Void: ...
|
|
2247
|
+
@winrt_commethod(10)
|
|
2248
|
+
def get_FromVerticalOffset(self) -> Double: ...
|
|
2249
|
+
@winrt_commethod(11)
|
|
2250
|
+
def put_FromVerticalOffset(self, value: Double) -> Void: ...
|
|
2251
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
2252
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
2253
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
2254
|
+
class IPopInThemeAnimationStatics(ComPtr):
|
|
2255
|
+
extends: IInspectable
|
|
2256
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimationStatics'
|
|
2257
|
+
_iid_ = Guid('{8c9378a9-d276-5a1d-8188-f48f07840a16}')
|
|
2258
|
+
@winrt_commethod(6)
|
|
2259
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2260
|
+
@winrt_commethod(7)
|
|
2261
|
+
def get_FromHorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2262
|
+
@winrt_commethod(8)
|
|
2263
|
+
def get_FromVerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2264
|
+
FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
2265
|
+
FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
2266
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2267
|
+
class IPopOutThemeAnimation(ComPtr):
|
|
2268
|
+
extends: IInspectable
|
|
2269
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPopOutThemeAnimation'
|
|
2270
|
+
_iid_ = Guid('{1bb20dd3-5648-541a-a0c9-37a955db10a6}')
|
|
2271
|
+
@winrt_commethod(6)
|
|
2272
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
2273
|
+
@winrt_commethod(7)
|
|
2274
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
2275
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
2276
|
+
class IPopOutThemeAnimationStatics(ComPtr):
|
|
2277
|
+
extends: IInspectable
|
|
2278
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPopOutThemeAnimationStatics'
|
|
2279
|
+
_iid_ = Guid('{3f569f96-367e-595c-9732-2fb919388d84}')
|
|
2280
|
+
@winrt_commethod(6)
|
|
2281
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2282
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2283
|
+
class IPopupThemeTransition(ComPtr):
|
|
2284
|
+
extends: IInspectable
|
|
2285
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransition'
|
|
2286
|
+
_iid_ = Guid('{e1fa6b8a-add3-5299-a000-121d6dbacc80}')
|
|
2287
|
+
@winrt_commethod(6)
|
|
2288
|
+
def get_FromHorizontalOffset(self) -> Double: ...
|
|
2289
|
+
@winrt_commethod(7)
|
|
2290
|
+
def put_FromHorizontalOffset(self, value: Double) -> Void: ...
|
|
2291
|
+
@winrt_commethod(8)
|
|
2292
|
+
def get_FromVerticalOffset(self) -> Double: ...
|
|
2293
|
+
@winrt_commethod(9)
|
|
2294
|
+
def put_FromVerticalOffset(self, value: Double) -> Void: ...
|
|
2295
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
2296
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
2297
|
+
class IPopupThemeTransitionStatics(ComPtr):
|
|
2298
|
+
extends: IInspectable
|
|
2299
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransitionStatics'
|
|
2300
|
+
_iid_ = Guid('{538b2114-415c-5f99-b74d-a85966dacc54}')
|
|
2301
|
+
@winrt_commethod(6)
|
|
2302
|
+
def get_FromHorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2303
|
+
@winrt_commethod(7)
|
|
2304
|
+
def get_FromVerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2305
|
+
FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
2306
|
+
FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
2307
|
+
class IPowerEase(ComPtr):
|
|
2308
|
+
extends: IInspectable
|
|
2309
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPowerEase'
|
|
2310
|
+
_iid_ = Guid('{372dfad0-5177-5df9-8e1e-920962468714}')
|
|
2311
|
+
@winrt_commethod(6)
|
|
2312
|
+
def get_Power(self) -> Double: ...
|
|
2313
|
+
@winrt_commethod(7)
|
|
2314
|
+
def put_Power(self, value: Double) -> Void: ...
|
|
2315
|
+
Power = property(get_Power, put_Power)
|
|
2316
|
+
class IPowerEaseStatics(ComPtr):
|
|
2317
|
+
extends: IInspectable
|
|
2318
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IPowerEaseStatics'
|
|
2319
|
+
_iid_ = Guid('{8eb72edb-3e7e-5d40-928b-4505d57c21ce}')
|
|
2320
|
+
@winrt_commethod(6)
|
|
2321
|
+
def get_PowerProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2322
|
+
PowerProperty = property(get_PowerProperty, None)
|
|
2323
|
+
class IQuadraticEase(ComPtr):
|
|
2324
|
+
extends: IInspectable
|
|
2325
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IQuadraticEase'
|
|
2326
|
+
_iid_ = Guid('{db85fda1-03b7-57cd-a1ef-8855cbf62191}')
|
|
2327
|
+
class IQuarticEase(ComPtr):
|
|
2328
|
+
extends: IInspectable
|
|
2329
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IQuarticEase'
|
|
2330
|
+
_iid_ = Guid('{48215273-05f1-58aa-bade-0b71d7bd0484}')
|
|
2331
|
+
class IQuinticEase(ComPtr):
|
|
2332
|
+
extends: IInspectable
|
|
2333
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IQuinticEase'
|
|
2334
|
+
_iid_ = Guid('{dc2f05d5-a3ac-5dce-9b85-753a0c800fc2}')
|
|
2335
|
+
class IReorderThemeTransition(ComPtr):
|
|
2336
|
+
extends: IInspectable
|
|
2337
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IReorderThemeTransition'
|
|
2338
|
+
_iid_ = Guid('{0d5a0874-1df5-5379-b626-74721759438a}')
|
|
2339
|
+
class IRepeatBehaviorHelper(ComPtr):
|
|
2340
|
+
extends: IInspectable
|
|
2341
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelper'
|
|
2342
|
+
_iid_ = Guid('{4643f139-ffef-5c6a-8de6-142b41cd51a5}')
|
|
2343
|
+
class IRepeatBehaviorHelperStatics(ComPtr):
|
|
2344
|
+
extends: IInspectable
|
|
2345
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelperStatics'
|
|
2346
|
+
_iid_ = Guid('{c66d4425-6461-5189-b17d-cca0cca34ca0}')
|
|
2347
|
+
@winrt_commethod(6)
|
|
2348
|
+
def get_Forever(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
2349
|
+
@winrt_commethod(7)
|
|
2350
|
+
def FromCount(self, count: Double) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
2351
|
+
@winrt_commethod(8)
|
|
2352
|
+
def FromDuration(self, duration: win32more.Windows.Foundation.TimeSpan) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
2353
|
+
@winrt_commethod(9)
|
|
2354
|
+
def GetHasCount(self, target: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Boolean: ...
|
|
2355
|
+
@winrt_commethod(10)
|
|
2356
|
+
def GetHasDuration(self, target: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Boolean: ...
|
|
2357
|
+
@winrt_commethod(11)
|
|
2358
|
+
def Equals(self, target: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior, value: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Boolean: ...
|
|
2359
|
+
Forever = property(get_Forever, None)
|
|
2360
|
+
class IRepositionThemeAnimation(ComPtr):
|
|
2361
|
+
extends: IInspectable
|
|
2362
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation'
|
|
2363
|
+
_iid_ = Guid('{36f7e025-23c1-53de-8df9-7dc1e9c788fd}')
|
|
2364
|
+
@winrt_commethod(6)
|
|
2365
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
2366
|
+
@winrt_commethod(7)
|
|
2367
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
2368
|
+
@winrt_commethod(8)
|
|
2369
|
+
def get_FromHorizontalOffset(self) -> Double: ...
|
|
2370
|
+
@winrt_commethod(9)
|
|
2371
|
+
def put_FromHorizontalOffset(self, value: Double) -> Void: ...
|
|
2372
|
+
@winrt_commethod(10)
|
|
2373
|
+
def get_FromVerticalOffset(self) -> Double: ...
|
|
2374
|
+
@winrt_commethod(11)
|
|
2375
|
+
def put_FromVerticalOffset(self, value: Double) -> Void: ...
|
|
2376
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
2377
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
2378
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
2379
|
+
class IRepositionThemeAnimationStatics(ComPtr):
|
|
2380
|
+
extends: IInspectable
|
|
2381
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimationStatics'
|
|
2382
|
+
_iid_ = Guid('{c04118de-aff5-5fa9-aee7-94a621c82618}')
|
|
2383
|
+
@winrt_commethod(6)
|
|
2384
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2385
|
+
@winrt_commethod(7)
|
|
2386
|
+
def get_FromHorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2387
|
+
@winrt_commethod(8)
|
|
2388
|
+
def get_FromVerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2389
|
+
FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
2390
|
+
FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
2391
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2392
|
+
class IRepositionThemeTransition(ComPtr):
|
|
2393
|
+
extends: IInspectable
|
|
2394
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IRepositionThemeTransition'
|
|
2395
|
+
_iid_ = Guid('{7728e3f0-24b1-5484-824a-c0b41c2745d5}')
|
|
2396
|
+
@winrt_commethod(6)
|
|
2397
|
+
def get_IsStaggeringEnabled(self) -> Boolean: ...
|
|
2398
|
+
@winrt_commethod(7)
|
|
2399
|
+
def put_IsStaggeringEnabled(self, value: Boolean) -> Void: ...
|
|
2400
|
+
IsStaggeringEnabled = property(get_IsStaggeringEnabled, put_IsStaggeringEnabled)
|
|
2401
|
+
class IRepositionThemeTransitionStatics(ComPtr):
|
|
2402
|
+
extends: IInspectable
|
|
2403
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IRepositionThemeTransitionStatics'
|
|
2404
|
+
_iid_ = Guid('{c70a0f9a-485e-53bb-ad3c-8b41b6788bf9}')
|
|
2405
|
+
@winrt_commethod(6)
|
|
2406
|
+
def get_IsStaggeringEnabledProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2407
|
+
IsStaggeringEnabledProperty = property(get_IsStaggeringEnabledProperty, None)
|
|
2408
|
+
class ISineEase(ComPtr):
|
|
2409
|
+
extends: IInspectable
|
|
2410
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISineEase'
|
|
2411
|
+
_iid_ = Guid('{6115539b-663d-5131-b7c2-74bb5fdc6a1d}')
|
|
2412
|
+
class ISlideNavigationTransitionInfo(ComPtr):
|
|
2413
|
+
extends: IInspectable
|
|
2414
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISlideNavigationTransitionInfo'
|
|
2415
|
+
_iid_ = Guid('{53eade0e-6b01-511f-a563-6f5724a6c1c1}')
|
|
2416
|
+
@winrt_commethod(6)
|
|
2417
|
+
def get_Effect(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.SlideNavigationTransitionEffect: ...
|
|
2418
|
+
@winrt_commethod(7)
|
|
2419
|
+
def put_Effect(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.SlideNavigationTransitionEffect) -> Void: ...
|
|
2420
|
+
Effect = property(get_Effect, put_Effect)
|
|
2421
|
+
class ISlideNavigationTransitionInfoStatics(ComPtr):
|
|
2422
|
+
extends: IInspectable
|
|
2423
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISlideNavigationTransitionInfoStatics'
|
|
2424
|
+
_iid_ = Guid('{90ba0c6c-cd45-5a6c-bbb2-88037d43cd79}')
|
|
2425
|
+
@winrt_commethod(6)
|
|
2426
|
+
def get_EffectProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2427
|
+
EffectProperty = property(get_EffectProperty, None)
|
|
2428
|
+
class ISplineColorKeyFrame(ComPtr):
|
|
2429
|
+
extends: IInspectable
|
|
2430
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplineColorKeyFrame'
|
|
2431
|
+
_iid_ = Guid('{60c5905f-4343-504d-a2c6-64b8d924b438}')
|
|
2432
|
+
@winrt_commethod(6)
|
|
2433
|
+
def get_KeySpline(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline: ...
|
|
2434
|
+
@winrt_commethod(7)
|
|
2435
|
+
def put_KeySpline(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline) -> Void: ...
|
|
2436
|
+
KeySpline = property(get_KeySpline, put_KeySpline)
|
|
2437
|
+
class ISplineColorKeyFrameStatics(ComPtr):
|
|
2438
|
+
extends: IInspectable
|
|
2439
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplineColorKeyFrameStatics'
|
|
2440
|
+
_iid_ = Guid('{d89c7062-753d-5652-b215-c195ae2c7a18}')
|
|
2441
|
+
@winrt_commethod(6)
|
|
2442
|
+
def get_KeySplineProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2443
|
+
KeySplineProperty = property(get_KeySplineProperty, None)
|
|
2444
|
+
class ISplineDoubleKeyFrame(ComPtr):
|
|
2445
|
+
extends: IInspectable
|
|
2446
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplineDoubleKeyFrame'
|
|
2447
|
+
_iid_ = Guid('{aea80957-bb56-59b6-bb7a-6295f94bc961}')
|
|
2448
|
+
@winrt_commethod(6)
|
|
2449
|
+
def get_KeySpline(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline: ...
|
|
2450
|
+
@winrt_commethod(7)
|
|
2451
|
+
def put_KeySpline(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline) -> Void: ...
|
|
2452
|
+
KeySpline = property(get_KeySpline, put_KeySpline)
|
|
2453
|
+
class ISplineDoubleKeyFrameStatics(ComPtr):
|
|
2454
|
+
extends: IInspectable
|
|
2455
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplineDoubleKeyFrameStatics'
|
|
2456
|
+
_iid_ = Guid('{ca88552e-7237-51f8-a8ca-79952c77883a}')
|
|
2457
|
+
@winrt_commethod(6)
|
|
2458
|
+
def get_KeySplineProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2459
|
+
KeySplineProperty = property(get_KeySplineProperty, None)
|
|
2460
|
+
class ISplinePointKeyFrame(ComPtr):
|
|
2461
|
+
extends: IInspectable
|
|
2462
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplinePointKeyFrame'
|
|
2463
|
+
_iid_ = Guid('{2b7eb049-708c-5220-a178-a25dbc14ffbe}')
|
|
2464
|
+
@winrt_commethod(6)
|
|
2465
|
+
def get_KeySpline(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline: ...
|
|
2466
|
+
@winrt_commethod(7)
|
|
2467
|
+
def put_KeySpline(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline) -> Void: ...
|
|
2468
|
+
KeySpline = property(get_KeySpline, put_KeySpline)
|
|
2469
|
+
class ISplinePointKeyFrameStatics(ComPtr):
|
|
2470
|
+
extends: IInspectable
|
|
2471
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplinePointKeyFrameStatics'
|
|
2472
|
+
_iid_ = Guid('{1e100e36-bed1-5060-8dcf-0d5b32575ed1}')
|
|
2473
|
+
@winrt_commethod(6)
|
|
2474
|
+
def get_KeySplineProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2475
|
+
KeySplineProperty = property(get_KeySplineProperty, None)
|
|
2476
|
+
class ISplitCloseThemeAnimation(ComPtr):
|
|
2477
|
+
extends: IInspectable
|
|
2478
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation'
|
|
2479
|
+
_iid_ = Guid('{b0dd1490-f646-5c18-b3ef-02f9b17f57df}')
|
|
2480
|
+
@winrt_commethod(6)
|
|
2481
|
+
def get_OpenedTargetName(self) -> WinRT_String: ...
|
|
2482
|
+
@winrt_commethod(7)
|
|
2483
|
+
def put_OpenedTargetName(self, value: WinRT_String) -> Void: ...
|
|
2484
|
+
@winrt_commethod(8)
|
|
2485
|
+
def get_OpenedTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2486
|
+
@winrt_commethod(9)
|
|
2487
|
+
def put_OpenedTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
2488
|
+
@winrt_commethod(10)
|
|
2489
|
+
def get_ClosedTargetName(self) -> WinRT_String: ...
|
|
2490
|
+
@winrt_commethod(11)
|
|
2491
|
+
def put_ClosedTargetName(self, value: WinRT_String) -> Void: ...
|
|
2492
|
+
@winrt_commethod(12)
|
|
2493
|
+
def get_ClosedTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2494
|
+
@winrt_commethod(13)
|
|
2495
|
+
def put_ClosedTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
2496
|
+
@winrt_commethod(14)
|
|
2497
|
+
def get_ContentTargetName(self) -> WinRT_String: ...
|
|
2498
|
+
@winrt_commethod(15)
|
|
2499
|
+
def put_ContentTargetName(self, value: WinRT_String) -> Void: ...
|
|
2500
|
+
@winrt_commethod(16)
|
|
2501
|
+
def get_ContentTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2502
|
+
@winrt_commethod(17)
|
|
2503
|
+
def put_ContentTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
2504
|
+
@winrt_commethod(18)
|
|
2505
|
+
def get_OpenedLength(self) -> Double: ...
|
|
2506
|
+
@winrt_commethod(19)
|
|
2507
|
+
def put_OpenedLength(self, value: Double) -> Void: ...
|
|
2508
|
+
@winrt_commethod(20)
|
|
2509
|
+
def get_ClosedLength(self) -> Double: ...
|
|
2510
|
+
@winrt_commethod(21)
|
|
2511
|
+
def put_ClosedLength(self, value: Double) -> Void: ...
|
|
2512
|
+
@winrt_commethod(22)
|
|
2513
|
+
def get_OffsetFromCenter(self) -> Double: ...
|
|
2514
|
+
@winrt_commethod(23)
|
|
2515
|
+
def put_OffsetFromCenter(self, value: Double) -> Void: ...
|
|
2516
|
+
@winrt_commethod(24)
|
|
2517
|
+
def get_ContentTranslationDirection(self) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection: ...
|
|
2518
|
+
@winrt_commethod(25)
|
|
2519
|
+
def put_ContentTranslationDirection(self, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection) -> Void: ...
|
|
2520
|
+
@winrt_commethod(26)
|
|
2521
|
+
def get_ContentTranslationOffset(self) -> Double: ...
|
|
2522
|
+
@winrt_commethod(27)
|
|
2523
|
+
def put_ContentTranslationOffset(self, value: Double) -> Void: ...
|
|
2524
|
+
ClosedLength = property(get_ClosedLength, put_ClosedLength)
|
|
2525
|
+
ClosedTarget = property(get_ClosedTarget, put_ClosedTarget)
|
|
2526
|
+
ClosedTargetName = property(get_ClosedTargetName, put_ClosedTargetName)
|
|
2527
|
+
ContentTarget = property(get_ContentTarget, put_ContentTarget)
|
|
2528
|
+
ContentTargetName = property(get_ContentTargetName, put_ContentTargetName)
|
|
2529
|
+
ContentTranslationDirection = property(get_ContentTranslationDirection, put_ContentTranslationDirection)
|
|
2530
|
+
ContentTranslationOffset = property(get_ContentTranslationOffset, put_ContentTranslationOffset)
|
|
2531
|
+
OffsetFromCenter = property(get_OffsetFromCenter, put_OffsetFromCenter)
|
|
2532
|
+
OpenedLength = property(get_OpenedLength, put_OpenedLength)
|
|
2533
|
+
OpenedTarget = property(get_OpenedTarget, put_OpenedTarget)
|
|
2534
|
+
OpenedTargetName = property(get_OpenedTargetName, put_OpenedTargetName)
|
|
2535
|
+
class ISplitCloseThemeAnimationStatics(ComPtr):
|
|
2536
|
+
extends: IInspectable
|
|
2537
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics'
|
|
2538
|
+
_iid_ = Guid('{32345cdd-2a3c-5571-b2eb-2fcabc2e92c6}')
|
|
2539
|
+
@winrt_commethod(6)
|
|
2540
|
+
def get_OpenedTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2541
|
+
@winrt_commethod(7)
|
|
2542
|
+
def get_OpenedTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2543
|
+
@winrt_commethod(8)
|
|
2544
|
+
def get_ClosedTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2545
|
+
@winrt_commethod(9)
|
|
2546
|
+
def get_ClosedTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2547
|
+
@winrt_commethod(10)
|
|
2548
|
+
def get_ContentTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2549
|
+
@winrt_commethod(11)
|
|
2550
|
+
def get_ContentTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2551
|
+
@winrt_commethod(12)
|
|
2552
|
+
def get_OpenedLengthProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2553
|
+
@winrt_commethod(13)
|
|
2554
|
+
def get_ClosedLengthProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2555
|
+
@winrt_commethod(14)
|
|
2556
|
+
def get_OffsetFromCenterProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2557
|
+
@winrt_commethod(15)
|
|
2558
|
+
def get_ContentTranslationDirectionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2559
|
+
@winrt_commethod(16)
|
|
2560
|
+
def get_ContentTranslationOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2561
|
+
ClosedLengthProperty = property(get_ClosedLengthProperty, None)
|
|
2562
|
+
ClosedTargetNameProperty = property(get_ClosedTargetNameProperty, None)
|
|
2563
|
+
ClosedTargetProperty = property(get_ClosedTargetProperty, None)
|
|
2564
|
+
ContentTargetNameProperty = property(get_ContentTargetNameProperty, None)
|
|
2565
|
+
ContentTargetProperty = property(get_ContentTargetProperty, None)
|
|
2566
|
+
ContentTranslationDirectionProperty = property(get_ContentTranslationDirectionProperty, None)
|
|
2567
|
+
ContentTranslationOffsetProperty = property(get_ContentTranslationOffsetProperty, None)
|
|
2568
|
+
OffsetFromCenterProperty = property(get_OffsetFromCenterProperty, None)
|
|
2569
|
+
OpenedLengthProperty = property(get_OpenedLengthProperty, None)
|
|
2570
|
+
OpenedTargetNameProperty = property(get_OpenedTargetNameProperty, None)
|
|
2571
|
+
OpenedTargetProperty = property(get_OpenedTargetProperty, None)
|
|
2572
|
+
class ISplitOpenThemeAnimation(ComPtr):
|
|
2573
|
+
extends: IInspectable
|
|
2574
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation'
|
|
2575
|
+
_iid_ = Guid('{79fdfaca-4245-53f0-b5c7-da1ce2b0b851}')
|
|
2576
|
+
@winrt_commethod(6)
|
|
2577
|
+
def get_OpenedTargetName(self) -> WinRT_String: ...
|
|
2578
|
+
@winrt_commethod(7)
|
|
2579
|
+
def put_OpenedTargetName(self, value: WinRT_String) -> Void: ...
|
|
2580
|
+
@winrt_commethod(8)
|
|
2581
|
+
def get_OpenedTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2582
|
+
@winrt_commethod(9)
|
|
2583
|
+
def put_OpenedTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
2584
|
+
@winrt_commethod(10)
|
|
2585
|
+
def get_ClosedTargetName(self) -> WinRT_String: ...
|
|
2586
|
+
@winrt_commethod(11)
|
|
2587
|
+
def put_ClosedTargetName(self, value: WinRT_String) -> Void: ...
|
|
2588
|
+
@winrt_commethod(12)
|
|
2589
|
+
def get_ClosedTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2590
|
+
@winrt_commethod(13)
|
|
2591
|
+
def put_ClosedTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
2592
|
+
@winrt_commethod(14)
|
|
2593
|
+
def get_ContentTargetName(self) -> WinRT_String: ...
|
|
2594
|
+
@winrt_commethod(15)
|
|
2595
|
+
def put_ContentTargetName(self, value: WinRT_String) -> Void: ...
|
|
2596
|
+
@winrt_commethod(16)
|
|
2597
|
+
def get_ContentTarget(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2598
|
+
@winrt_commethod(17)
|
|
2599
|
+
def put_ContentTarget(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
2600
|
+
@winrt_commethod(18)
|
|
2601
|
+
def get_OpenedLength(self) -> Double: ...
|
|
2602
|
+
@winrt_commethod(19)
|
|
2603
|
+
def put_OpenedLength(self, value: Double) -> Void: ...
|
|
2604
|
+
@winrt_commethod(20)
|
|
2605
|
+
def get_ClosedLength(self) -> Double: ...
|
|
2606
|
+
@winrt_commethod(21)
|
|
2607
|
+
def put_ClosedLength(self, value: Double) -> Void: ...
|
|
2608
|
+
@winrt_commethod(22)
|
|
2609
|
+
def get_OffsetFromCenter(self) -> Double: ...
|
|
2610
|
+
@winrt_commethod(23)
|
|
2611
|
+
def put_OffsetFromCenter(self, value: Double) -> Void: ...
|
|
2612
|
+
@winrt_commethod(24)
|
|
2613
|
+
def get_ContentTranslationDirection(self) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection: ...
|
|
2614
|
+
@winrt_commethod(25)
|
|
2615
|
+
def put_ContentTranslationDirection(self, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection) -> Void: ...
|
|
2616
|
+
@winrt_commethod(26)
|
|
2617
|
+
def get_ContentTranslationOffset(self) -> Double: ...
|
|
2618
|
+
@winrt_commethod(27)
|
|
2619
|
+
def put_ContentTranslationOffset(self, value: Double) -> Void: ...
|
|
2620
|
+
ClosedLength = property(get_ClosedLength, put_ClosedLength)
|
|
2621
|
+
ClosedTarget = property(get_ClosedTarget, put_ClosedTarget)
|
|
2622
|
+
ClosedTargetName = property(get_ClosedTargetName, put_ClosedTargetName)
|
|
2623
|
+
ContentTarget = property(get_ContentTarget, put_ContentTarget)
|
|
2624
|
+
ContentTargetName = property(get_ContentTargetName, put_ContentTargetName)
|
|
2625
|
+
ContentTranslationDirection = property(get_ContentTranslationDirection, put_ContentTranslationDirection)
|
|
2626
|
+
ContentTranslationOffset = property(get_ContentTranslationOffset, put_ContentTranslationOffset)
|
|
2627
|
+
OffsetFromCenter = property(get_OffsetFromCenter, put_OffsetFromCenter)
|
|
2628
|
+
OpenedLength = property(get_OpenedLength, put_OpenedLength)
|
|
2629
|
+
OpenedTarget = property(get_OpenedTarget, put_OpenedTarget)
|
|
2630
|
+
OpenedTargetName = property(get_OpenedTargetName, put_OpenedTargetName)
|
|
2631
|
+
class ISplitOpenThemeAnimationStatics(ComPtr):
|
|
2632
|
+
extends: IInspectable
|
|
2633
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics'
|
|
2634
|
+
_iid_ = Guid('{e5a73b84-a4ae-5c38-84da-f7ed30fc9b6e}')
|
|
2635
|
+
@winrt_commethod(6)
|
|
2636
|
+
def get_OpenedTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2637
|
+
@winrt_commethod(7)
|
|
2638
|
+
def get_OpenedTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2639
|
+
@winrt_commethod(8)
|
|
2640
|
+
def get_ClosedTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2641
|
+
@winrt_commethod(9)
|
|
2642
|
+
def get_ClosedTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2643
|
+
@winrt_commethod(10)
|
|
2644
|
+
def get_ContentTargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2645
|
+
@winrt_commethod(11)
|
|
2646
|
+
def get_ContentTargetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2647
|
+
@winrt_commethod(12)
|
|
2648
|
+
def get_OpenedLengthProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2649
|
+
@winrt_commethod(13)
|
|
2650
|
+
def get_ClosedLengthProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2651
|
+
@winrt_commethod(14)
|
|
2652
|
+
def get_OffsetFromCenterProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2653
|
+
@winrt_commethod(15)
|
|
2654
|
+
def get_ContentTranslationDirectionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2655
|
+
@winrt_commethod(16)
|
|
2656
|
+
def get_ContentTranslationOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2657
|
+
ClosedLengthProperty = property(get_ClosedLengthProperty, None)
|
|
2658
|
+
ClosedTargetNameProperty = property(get_ClosedTargetNameProperty, None)
|
|
2659
|
+
ClosedTargetProperty = property(get_ClosedTargetProperty, None)
|
|
2660
|
+
ContentTargetNameProperty = property(get_ContentTargetNameProperty, None)
|
|
2661
|
+
ContentTargetProperty = property(get_ContentTargetProperty, None)
|
|
2662
|
+
ContentTranslationDirectionProperty = property(get_ContentTranslationDirectionProperty, None)
|
|
2663
|
+
ContentTranslationOffsetProperty = property(get_ContentTranslationOffsetProperty, None)
|
|
2664
|
+
OffsetFromCenterProperty = property(get_OffsetFromCenterProperty, None)
|
|
2665
|
+
OpenedLengthProperty = property(get_OpenedLengthProperty, None)
|
|
2666
|
+
OpenedTargetNameProperty = property(get_OpenedTargetNameProperty, None)
|
|
2667
|
+
OpenedTargetProperty = property(get_OpenedTargetProperty, None)
|
|
2668
|
+
class IStoryboard(ComPtr):
|
|
2669
|
+
extends: IInspectable
|
|
2670
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IStoryboard'
|
|
2671
|
+
_iid_ = Guid('{04d41bb3-8721-519e-8e53-fb8b34920305}')
|
|
2672
|
+
@winrt_commethod(6)
|
|
2673
|
+
def get_Children(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.TimelineCollection: ...
|
|
2674
|
+
@winrt_commethod(7)
|
|
2675
|
+
def Seek(self, offset: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
2676
|
+
@winrt_commethod(8)
|
|
2677
|
+
def Stop(self) -> Void: ...
|
|
2678
|
+
@winrt_commethod(9)
|
|
2679
|
+
def Begin(self) -> Void: ...
|
|
2680
|
+
@winrt_commethod(10)
|
|
2681
|
+
def Pause(self) -> Void: ...
|
|
2682
|
+
@winrt_commethod(11)
|
|
2683
|
+
def Resume(self) -> Void: ...
|
|
2684
|
+
@winrt_commethod(12)
|
|
2685
|
+
def GetCurrentState(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.ClockState: ...
|
|
2686
|
+
@winrt_commethod(13)
|
|
2687
|
+
def GetCurrentTime(self) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
2688
|
+
@winrt_commethod(14)
|
|
2689
|
+
def SeekAlignedToLastTick(self, offset: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
2690
|
+
@winrt_commethod(15)
|
|
2691
|
+
def SkipToFill(self) -> Void: ...
|
|
2692
|
+
Children = property(get_Children, None)
|
|
2693
|
+
class IStoryboardStatics(ComPtr):
|
|
2694
|
+
extends: IInspectable
|
|
2695
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics'
|
|
2696
|
+
_iid_ = Guid('{dd18519b-d4e4-597d-a0b7-655ebdd35efa}')
|
|
2697
|
+
@winrt_commethod(6)
|
|
2698
|
+
def get_TargetPropertyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2699
|
+
@winrt_commethod(7)
|
|
2700
|
+
def GetTargetProperty(self, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline) -> WinRT_String: ...
|
|
2701
|
+
@winrt_commethod(8)
|
|
2702
|
+
def SetTargetProperty(self, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline, path: WinRT_String) -> Void: ...
|
|
2703
|
+
@winrt_commethod(9)
|
|
2704
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2705
|
+
@winrt_commethod(10)
|
|
2706
|
+
def GetTargetName(self, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline) -> WinRT_String: ...
|
|
2707
|
+
@winrt_commethod(11)
|
|
2708
|
+
def SetTargetName(self, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline, name: WinRT_String) -> Void: ...
|
|
2709
|
+
@winrt_commethod(12)
|
|
2710
|
+
def SetTarget(self, timeline: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline, target: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
2711
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2712
|
+
TargetPropertyProperty = property(get_TargetPropertyProperty, None)
|
|
2713
|
+
class ISuppressNavigationTransitionInfo(ComPtr):
|
|
2714
|
+
extends: IInspectable
|
|
2715
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISuppressNavigationTransitionInfo'
|
|
2716
|
+
_iid_ = Guid('{3ecd2bd1-9805-5f51-bb9e-051fea8dc355}')
|
|
2717
|
+
class ISwipeBackThemeAnimation(ComPtr):
|
|
2718
|
+
extends: IInspectable
|
|
2719
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation'
|
|
2720
|
+
_iid_ = Guid('{f095d058-bc9e-58ee-8877-e084723b4333}')
|
|
2721
|
+
@winrt_commethod(6)
|
|
2722
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
2723
|
+
@winrt_commethod(7)
|
|
2724
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
2725
|
+
@winrt_commethod(8)
|
|
2726
|
+
def get_FromHorizontalOffset(self) -> Double: ...
|
|
2727
|
+
@winrt_commethod(9)
|
|
2728
|
+
def put_FromHorizontalOffset(self, value: Double) -> Void: ...
|
|
2729
|
+
@winrt_commethod(10)
|
|
2730
|
+
def get_FromVerticalOffset(self) -> Double: ...
|
|
2731
|
+
@winrt_commethod(11)
|
|
2732
|
+
def put_FromVerticalOffset(self, value: Double) -> Void: ...
|
|
2733
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
2734
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
2735
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
2736
|
+
class ISwipeBackThemeAnimationStatics(ComPtr):
|
|
2737
|
+
extends: IInspectable
|
|
2738
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimationStatics'
|
|
2739
|
+
_iid_ = Guid('{18a7a588-b9a2-573b-8e2b-38048c4635a7}')
|
|
2740
|
+
@winrt_commethod(6)
|
|
2741
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2742
|
+
@winrt_commethod(7)
|
|
2743
|
+
def get_FromHorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2744
|
+
@winrt_commethod(8)
|
|
2745
|
+
def get_FromVerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2746
|
+
FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
2747
|
+
FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
2748
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2749
|
+
class ISwipeHintThemeAnimation(ComPtr):
|
|
2750
|
+
extends: IInspectable
|
|
2751
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation'
|
|
2752
|
+
_iid_ = Guid('{09de03d7-4b8a-55e1-afad-5f60598733ea}')
|
|
2753
|
+
@winrt_commethod(6)
|
|
2754
|
+
def get_TargetName(self) -> WinRT_String: ...
|
|
2755
|
+
@winrt_commethod(7)
|
|
2756
|
+
def put_TargetName(self, value: WinRT_String) -> Void: ...
|
|
2757
|
+
@winrt_commethod(8)
|
|
2758
|
+
def get_ToHorizontalOffset(self) -> Double: ...
|
|
2759
|
+
@winrt_commethod(9)
|
|
2760
|
+
def put_ToHorizontalOffset(self, value: Double) -> Void: ...
|
|
2761
|
+
@winrt_commethod(10)
|
|
2762
|
+
def get_ToVerticalOffset(self) -> Double: ...
|
|
2763
|
+
@winrt_commethod(11)
|
|
2764
|
+
def put_ToVerticalOffset(self, value: Double) -> Void: ...
|
|
2765
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
2766
|
+
ToHorizontalOffset = property(get_ToHorizontalOffset, put_ToHorizontalOffset)
|
|
2767
|
+
ToVerticalOffset = property(get_ToVerticalOffset, put_ToVerticalOffset)
|
|
2768
|
+
class ISwipeHintThemeAnimationStatics(ComPtr):
|
|
2769
|
+
extends: IInspectable
|
|
2770
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimationStatics'
|
|
2771
|
+
_iid_ = Guid('{f3308304-4f09-54d7-a4d5-ca558bbfe26f}')
|
|
2772
|
+
@winrt_commethod(6)
|
|
2773
|
+
def get_TargetNameProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2774
|
+
@winrt_commethod(7)
|
|
2775
|
+
def get_ToHorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2776
|
+
@winrt_commethod(8)
|
|
2777
|
+
def get_ToVerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2778
|
+
TargetNameProperty = property(get_TargetNameProperty, None)
|
|
2779
|
+
ToHorizontalOffsetProperty = property(get_ToHorizontalOffsetProperty, None)
|
|
2780
|
+
ToVerticalOffsetProperty = property(get_ToVerticalOffsetProperty, None)
|
|
2781
|
+
class ITimeline(ComPtr):
|
|
2782
|
+
extends: IInspectable
|
|
2783
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ITimeline'
|
|
2784
|
+
_iid_ = Guid('{d0f9b330-cc2a-5b05-9786-2da4c6584581}')
|
|
2785
|
+
@winrt_commethod(6)
|
|
2786
|
+
def get_AutoReverse(self) -> Boolean: ...
|
|
2787
|
+
@winrt_commethod(7)
|
|
2788
|
+
def put_AutoReverse(self, value: Boolean) -> Void: ...
|
|
2789
|
+
@winrt_commethod(8)
|
|
2790
|
+
def get_BeginTime(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.TimeSpan]: ...
|
|
2791
|
+
@winrt_commethod(9)
|
|
2792
|
+
def put_BeginTime(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.TimeSpan]) -> Void: ...
|
|
2793
|
+
@winrt_commethod(10)
|
|
2794
|
+
def get_Duration(self) -> win32more.Microsoft.UI.Xaml.Duration: ...
|
|
2795
|
+
@winrt_commethod(11)
|
|
2796
|
+
def put_Duration(self, value: win32more.Microsoft.UI.Xaml.Duration) -> Void: ...
|
|
2797
|
+
@winrt_commethod(12)
|
|
2798
|
+
def get_SpeedRatio(self) -> Double: ...
|
|
2799
|
+
@winrt_commethod(13)
|
|
2800
|
+
def put_SpeedRatio(self, value: Double) -> Void: ...
|
|
2801
|
+
@winrt_commethod(14)
|
|
2802
|
+
def get_FillBehavior(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.FillBehavior: ...
|
|
2803
|
+
@winrt_commethod(15)
|
|
2804
|
+
def put_FillBehavior(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.FillBehavior) -> Void: ...
|
|
2805
|
+
@winrt_commethod(16)
|
|
2806
|
+
def get_RepeatBehavior(self) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
2807
|
+
@winrt_commethod(17)
|
|
2808
|
+
def put_RepeatBehavior(self, value: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Void: ...
|
|
2809
|
+
@winrt_commethod(18)
|
|
2810
|
+
def add_Completed(self, handler: win32more.Windows.Foundation.EventHandler[IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
2811
|
+
@winrt_commethod(19)
|
|
2812
|
+
def remove_Completed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
2813
|
+
AutoReverse = property(get_AutoReverse, put_AutoReverse)
|
|
2814
|
+
BeginTime = property(get_BeginTime, put_BeginTime)
|
|
2815
|
+
Duration = property(get_Duration, put_Duration)
|
|
2816
|
+
FillBehavior = property(get_FillBehavior, put_FillBehavior)
|
|
2817
|
+
RepeatBehavior = property(get_RepeatBehavior, put_RepeatBehavior)
|
|
2818
|
+
SpeedRatio = property(get_SpeedRatio, put_SpeedRatio)
|
|
2819
|
+
Completed = event()
|
|
2820
|
+
class ITimelineFactory(ComPtr):
|
|
2821
|
+
extends: IInspectable
|
|
2822
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ITimelineFactory'
|
|
2823
|
+
_iid_ = Guid('{6a635732-a827-5398-9fc8-dfbc3b97e3c1}')
|
|
2824
|
+
@winrt_commethod(6)
|
|
2825
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.Timeline: ...
|
|
2826
|
+
class ITimelineStatics(ComPtr):
|
|
2827
|
+
extends: IInspectable
|
|
2828
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ITimelineStatics'
|
|
2829
|
+
_iid_ = Guid('{778b8471-c831-503a-8748-fe6bbc7153b7}')
|
|
2830
|
+
@winrt_commethod(6)
|
|
2831
|
+
def get_AllowDependentAnimations(self) -> Boolean: ...
|
|
2832
|
+
@winrt_commethod(7)
|
|
2833
|
+
def put_AllowDependentAnimations(self, value: Boolean) -> Void: ...
|
|
2834
|
+
@winrt_commethod(8)
|
|
2835
|
+
def get_AutoReverseProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2836
|
+
@winrt_commethod(9)
|
|
2837
|
+
def get_BeginTimeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2838
|
+
@winrt_commethod(10)
|
|
2839
|
+
def get_DurationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2840
|
+
@winrt_commethod(11)
|
|
2841
|
+
def get_SpeedRatioProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2842
|
+
@winrt_commethod(12)
|
|
2843
|
+
def get_FillBehaviorProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2844
|
+
@winrt_commethod(13)
|
|
2845
|
+
def get_RepeatBehaviorProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2846
|
+
AllowDependentAnimations = property(get_AllowDependentAnimations, put_AllowDependentAnimations)
|
|
2847
|
+
AutoReverseProperty = property(get_AutoReverseProperty, None)
|
|
2848
|
+
BeginTimeProperty = property(get_BeginTimeProperty, None)
|
|
2849
|
+
DurationProperty = property(get_DurationProperty, None)
|
|
2850
|
+
FillBehaviorProperty = property(get_FillBehaviorProperty, None)
|
|
2851
|
+
RepeatBehaviorProperty = property(get_RepeatBehaviorProperty, None)
|
|
2852
|
+
SpeedRatioProperty = property(get_SpeedRatioProperty, None)
|
|
2853
|
+
class ITransition(ComPtr):
|
|
2854
|
+
extends: IInspectable
|
|
2855
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ITransition'
|
|
2856
|
+
_iid_ = Guid('{e5b71956-8e44-5a38-b41e-274d706102bf}')
|
|
2857
|
+
class ITransitionFactory(ComPtr):
|
|
2858
|
+
extends: IInspectable
|
|
2859
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ITransitionFactory'
|
|
2860
|
+
_iid_ = Guid('{b7023e3b-bcd3-50ec-aacf-8cfcece25f17}')
|
|
2861
|
+
class KeySpline(ComPtr):
|
|
2862
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
2863
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IKeySpline
|
|
2864
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.KeySpline'
|
|
2865
|
+
def __init__(self, *args, **kwargs):
|
|
2866
|
+
if kwargs:
|
|
2867
|
+
super().__init__(**kwargs)
|
|
2868
|
+
elif len(args) == 0:
|
|
2869
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline.CreateInstance(*args))
|
|
2870
|
+
else:
|
|
2871
|
+
raise ValueError('no matched constructor')
|
|
2872
|
+
@winrt_activatemethod
|
|
2873
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline: ...
|
|
2874
|
+
@winrt_mixinmethod
|
|
2875
|
+
def get_ControlPoint1(self: win32more.Microsoft.UI.Xaml.Media.Animation.IKeySpline) -> win32more.Windows.Foundation.Point: ...
|
|
2876
|
+
@winrt_mixinmethod
|
|
2877
|
+
def put_ControlPoint1(self: win32more.Microsoft.UI.Xaml.Media.Animation.IKeySpline, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2878
|
+
@winrt_mixinmethod
|
|
2879
|
+
def get_ControlPoint2(self: win32more.Microsoft.UI.Xaml.Media.Animation.IKeySpline) -> win32more.Windows.Foundation.Point: ...
|
|
2880
|
+
@winrt_mixinmethod
|
|
2881
|
+
def put_ControlPoint2(self: win32more.Microsoft.UI.Xaml.Media.Animation.IKeySpline, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2882
|
+
ControlPoint1 = property(get_ControlPoint1, put_ControlPoint1)
|
|
2883
|
+
ControlPoint2 = property(get_ControlPoint2, put_ControlPoint2)
|
|
2884
|
+
class KeyTime(Structure):
|
|
2885
|
+
TimeSpan: win32more.Windows.Foundation.TimeSpan
|
|
2886
|
+
class KeyTimeHelper(ComPtr):
|
|
2887
|
+
extends: IInspectable
|
|
2888
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IKeyTimeHelper
|
|
2889
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.KeyTimeHelper'
|
|
2890
|
+
@winrt_classmethod
|
|
2891
|
+
def FromTimeSpan(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IKeyTimeHelperStatics, timeSpan: win32more.Windows.Foundation.TimeSpan) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
2892
|
+
class LinearColorKeyFrame(ComPtr):
|
|
2893
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame
|
|
2894
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ILinearColorKeyFrame
|
|
2895
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.LinearColorKeyFrame'
|
|
2896
|
+
def __init__(self, *args, **kwargs):
|
|
2897
|
+
if kwargs:
|
|
2898
|
+
super().__init__(**kwargs)
|
|
2899
|
+
elif len(args) == 0:
|
|
2900
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.LinearColorKeyFrame.CreateInstance(*args))
|
|
2901
|
+
else:
|
|
2902
|
+
raise ValueError('no matched constructor')
|
|
2903
|
+
@winrt_activatemethod
|
|
2904
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.LinearColorKeyFrame: ...
|
|
2905
|
+
class LinearDoubleKeyFrame(ComPtr):
|
|
2906
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame
|
|
2907
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ILinearDoubleKeyFrame
|
|
2908
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.LinearDoubleKeyFrame'
|
|
2909
|
+
def __init__(self, *args, **kwargs):
|
|
2910
|
+
if kwargs:
|
|
2911
|
+
super().__init__(**kwargs)
|
|
2912
|
+
elif len(args) == 0:
|
|
2913
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.LinearDoubleKeyFrame.CreateInstance(*args))
|
|
2914
|
+
else:
|
|
2915
|
+
raise ValueError('no matched constructor')
|
|
2916
|
+
@winrt_activatemethod
|
|
2917
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.LinearDoubleKeyFrame: ...
|
|
2918
|
+
class LinearPointKeyFrame(ComPtr):
|
|
2919
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame
|
|
2920
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ILinearPointKeyFrame
|
|
2921
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.LinearPointKeyFrame'
|
|
2922
|
+
def __init__(self, *args, **kwargs):
|
|
2923
|
+
if kwargs:
|
|
2924
|
+
super().__init__(**kwargs)
|
|
2925
|
+
elif len(args) == 0:
|
|
2926
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.LinearPointKeyFrame.CreateInstance(*args))
|
|
2927
|
+
else:
|
|
2928
|
+
raise ValueError('no matched constructor')
|
|
2929
|
+
@winrt_activatemethod
|
|
2930
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.LinearPointKeyFrame: ...
|
|
2931
|
+
class _NavigationThemeTransition_Meta_(ComPtr.__class__):
|
|
2932
|
+
pass
|
|
2933
|
+
class NavigationThemeTransition(ComPtr, metaclass=_NavigationThemeTransition_Meta_):
|
|
2934
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
2935
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationThemeTransition
|
|
2936
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.NavigationThemeTransition'
|
|
2937
|
+
def __init__(self, *args, **kwargs):
|
|
2938
|
+
if kwargs:
|
|
2939
|
+
super().__init__(**kwargs)
|
|
2940
|
+
elif len(args) == 0:
|
|
2941
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.NavigationThemeTransition.CreateInstance(*args))
|
|
2942
|
+
else:
|
|
2943
|
+
raise ValueError('no matched constructor')
|
|
2944
|
+
@winrt_activatemethod
|
|
2945
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.NavigationThemeTransition: ...
|
|
2946
|
+
@winrt_mixinmethod
|
|
2947
|
+
def get_DefaultNavigationTransitionInfo(self: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationThemeTransition) -> win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo: ...
|
|
2948
|
+
@winrt_mixinmethod
|
|
2949
|
+
def put_DefaultNavigationTransitionInfo(self: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationThemeTransition, value: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo) -> Void: ...
|
|
2950
|
+
@winrt_classmethod
|
|
2951
|
+
def get_DefaultNavigationTransitionInfoProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2952
|
+
DefaultNavigationTransitionInfo = property(get_DefaultNavigationTransitionInfo, put_DefaultNavigationTransitionInfo)
|
|
2953
|
+
_NavigationThemeTransition_Meta_.DefaultNavigationTransitionInfoProperty = property(get_DefaultNavigationTransitionInfoProperty, None)
|
|
2954
|
+
class NavigationTransitionInfo(ComPtr):
|
|
2955
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
2956
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationTransitionInfo
|
|
2957
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo'
|
|
2958
|
+
def __init__(self, *args, **kwargs):
|
|
2959
|
+
if kwargs:
|
|
2960
|
+
super().__init__(**kwargs)
|
|
2961
|
+
elif len(args) == 0:
|
|
2962
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo.CreateInstance(*args, None, None))
|
|
2963
|
+
else:
|
|
2964
|
+
raise ValueError('no matched constructor')
|
|
2965
|
+
@winrt_factorymethod
|
|
2966
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationTransitionInfoFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo: ...
|
|
2967
|
+
@winrt_mixinmethod
|
|
2968
|
+
def GetNavigationStateCore(self: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationTransitionInfoOverrides) -> WinRT_String: ...
|
|
2969
|
+
@winrt_mixinmethod
|
|
2970
|
+
def SetNavigationStateCore(self: win32more.Microsoft.UI.Xaml.Media.Animation.INavigationTransitionInfoOverrides, navigationState: WinRT_String) -> Void: ...
|
|
2971
|
+
class _ObjectAnimationUsingKeyFrames_Meta_(ComPtr.__class__):
|
|
2972
|
+
pass
|
|
2973
|
+
class ObjectAnimationUsingKeyFrames(ComPtr, metaclass=_ObjectAnimationUsingKeyFrames_Meta_):
|
|
2974
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
2975
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectAnimationUsingKeyFrames
|
|
2976
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ObjectAnimationUsingKeyFrames'
|
|
2977
|
+
def __init__(self, *args, **kwargs):
|
|
2978
|
+
if kwargs:
|
|
2979
|
+
super().__init__(**kwargs)
|
|
2980
|
+
elif len(args) == 0:
|
|
2981
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ObjectAnimationUsingKeyFrames.CreateInstance(*args))
|
|
2982
|
+
else:
|
|
2983
|
+
raise ValueError('no matched constructor')
|
|
2984
|
+
@winrt_activatemethod
|
|
2985
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ObjectAnimationUsingKeyFrames: ...
|
|
2986
|
+
@winrt_mixinmethod
|
|
2987
|
+
def get_KeyFrames(self: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectAnimationUsingKeyFrames) -> win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrameCollection: ...
|
|
2988
|
+
@winrt_mixinmethod
|
|
2989
|
+
def get_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectAnimationUsingKeyFrames) -> Boolean: ...
|
|
2990
|
+
@winrt_mixinmethod
|
|
2991
|
+
def put_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectAnimationUsingKeyFrames, value: Boolean) -> Void: ...
|
|
2992
|
+
@winrt_classmethod
|
|
2993
|
+
def get_EnableDependentAnimationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectAnimationUsingKeyFramesStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2994
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
2995
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
2996
|
+
_ObjectAnimationUsingKeyFrames_Meta_.EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
2997
|
+
class _ObjectKeyFrame_Meta_(ComPtr.__class__):
|
|
2998
|
+
pass
|
|
2999
|
+
class ObjectKeyFrame(ComPtr, metaclass=_ObjectKeyFrame_Meta_):
|
|
3000
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
3001
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrame
|
|
3002
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame'
|
|
3003
|
+
def __init__(self, *args, **kwargs):
|
|
3004
|
+
if kwargs:
|
|
3005
|
+
super().__init__(**kwargs)
|
|
3006
|
+
elif len(args) == 0:
|
|
3007
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame.CreateInstance(*args, None, None))
|
|
3008
|
+
else:
|
|
3009
|
+
raise ValueError('no matched constructor')
|
|
3010
|
+
@winrt_factorymethod
|
|
3011
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrameFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame: ...
|
|
3012
|
+
@winrt_mixinmethod
|
|
3013
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrame) -> IInspectable: ...
|
|
3014
|
+
@winrt_mixinmethod
|
|
3015
|
+
def put_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrame, value: IInspectable) -> Void: ...
|
|
3016
|
+
@winrt_mixinmethod
|
|
3017
|
+
def get_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
3018
|
+
@winrt_mixinmethod
|
|
3019
|
+
def put_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
3020
|
+
@winrt_classmethod
|
|
3021
|
+
def get_ValueProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3022
|
+
@winrt_classmethod
|
|
3023
|
+
def get_KeyTimeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IObjectKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3024
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
3025
|
+
Value = property(get_Value, put_Value)
|
|
3026
|
+
_ObjectKeyFrame_Meta_.KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
3027
|
+
_ObjectKeyFrame_Meta_.ValueProperty = property(get_ValueProperty, None)
|
|
3028
|
+
class ObjectKeyFrameCollection(ComPtr):
|
|
3029
|
+
extends: IInspectable
|
|
3030
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]]
|
|
3031
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]
|
|
3032
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrameCollection'
|
|
3033
|
+
def __init__(self, *args, **kwargs):
|
|
3034
|
+
if kwargs:
|
|
3035
|
+
super().__init__(**kwargs)
|
|
3036
|
+
elif len(args) == 0:
|
|
3037
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrameCollection.CreateInstance(*args))
|
|
3038
|
+
else:
|
|
3039
|
+
raise ValueError('no matched constructor')
|
|
3040
|
+
@winrt_activatemethod
|
|
3041
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrameCollection: ...
|
|
3042
|
+
@winrt_mixinmethod
|
|
3043
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame: ...
|
|
3044
|
+
@winrt_mixinmethod
|
|
3045
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]) -> UInt32: ...
|
|
3046
|
+
@winrt_mixinmethod
|
|
3047
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]: ...
|
|
3048
|
+
@winrt_mixinmethod
|
|
3049
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame, index: POINTER(UInt32)) -> Boolean: ...
|
|
3050
|
+
@winrt_mixinmethod
|
|
3051
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame) -> Void: ...
|
|
3052
|
+
@winrt_mixinmethod
|
|
3053
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame) -> Void: ...
|
|
3054
|
+
@winrt_mixinmethod
|
|
3055
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], index: UInt32) -> Void: ...
|
|
3056
|
+
@winrt_mixinmethod
|
|
3057
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame) -> Void: ...
|
|
3058
|
+
@winrt_mixinmethod
|
|
3059
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]) -> Void: ...
|
|
3060
|
+
@winrt_mixinmethod
|
|
3061
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]) -> Void: ...
|
|
3062
|
+
@winrt_mixinmethod
|
|
3063
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]) -> UInt32: ...
|
|
3064
|
+
@winrt_mixinmethod
|
|
3065
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]) -> Void: ...
|
|
3066
|
+
@winrt_mixinmethod
|
|
3067
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Animation.ObjectKeyFrame]: ...
|
|
3068
|
+
Size = property(get_Size, None)
|
|
3069
|
+
class _PaneThemeTransition_Meta_(ComPtr.__class__):
|
|
3070
|
+
pass
|
|
3071
|
+
class PaneThemeTransition(ComPtr, metaclass=_PaneThemeTransition_Meta_):
|
|
3072
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
3073
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPaneThemeTransition
|
|
3074
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PaneThemeTransition'
|
|
3075
|
+
def __init__(self, *args, **kwargs):
|
|
3076
|
+
if kwargs:
|
|
3077
|
+
super().__init__(**kwargs)
|
|
3078
|
+
elif len(args) == 0:
|
|
3079
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PaneThemeTransition.CreateInstance(*args))
|
|
3080
|
+
else:
|
|
3081
|
+
raise ValueError('no matched constructor')
|
|
3082
|
+
@winrt_activatemethod
|
|
3083
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PaneThemeTransition: ...
|
|
3084
|
+
@winrt_mixinmethod
|
|
3085
|
+
def get_Edge(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPaneThemeTransition) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation: ...
|
|
3086
|
+
@winrt_mixinmethod
|
|
3087
|
+
def put_Edge(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPaneThemeTransition, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.EdgeTransitionLocation) -> Void: ...
|
|
3088
|
+
@winrt_classmethod
|
|
3089
|
+
def get_EdgeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPaneThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3090
|
+
Edge = property(get_Edge, put_Edge)
|
|
3091
|
+
_PaneThemeTransition_Meta_.EdgeProperty = property(get_EdgeProperty, None)
|
|
3092
|
+
class _PointAnimation_Meta_(ComPtr.__class__):
|
|
3093
|
+
pass
|
|
3094
|
+
class PointAnimation(ComPtr, metaclass=_PointAnimation_Meta_):
|
|
3095
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3096
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation
|
|
3097
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PointAnimation'
|
|
3098
|
+
def __init__(self, *args, **kwargs):
|
|
3099
|
+
if kwargs:
|
|
3100
|
+
super().__init__(**kwargs)
|
|
3101
|
+
elif len(args) == 0:
|
|
3102
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PointAnimation.CreateInstance(*args))
|
|
3103
|
+
else:
|
|
3104
|
+
raise ValueError('no matched constructor')
|
|
3105
|
+
@winrt_activatemethod
|
|
3106
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointAnimation: ...
|
|
3107
|
+
@winrt_mixinmethod
|
|
3108
|
+
def get_From(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]: ...
|
|
3109
|
+
@winrt_mixinmethod
|
|
3110
|
+
def put_From(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
3111
|
+
@winrt_mixinmethod
|
|
3112
|
+
def get_To(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]: ...
|
|
3113
|
+
@winrt_mixinmethod
|
|
3114
|
+
def put_To(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
3115
|
+
@winrt_mixinmethod
|
|
3116
|
+
def get_By(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]: ...
|
|
3117
|
+
@winrt_mixinmethod
|
|
3118
|
+
def put_By(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
3119
|
+
@winrt_mixinmethod
|
|
3120
|
+
def get_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation) -> win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase: ...
|
|
3121
|
+
@winrt_mixinmethod
|
|
3122
|
+
def put_EasingFunction(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation, value: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase) -> Void: ...
|
|
3123
|
+
@winrt_mixinmethod
|
|
3124
|
+
def get_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation) -> Boolean: ...
|
|
3125
|
+
@winrt_mixinmethod
|
|
3126
|
+
def put_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimation, value: Boolean) -> Void: ...
|
|
3127
|
+
@winrt_classmethod
|
|
3128
|
+
def get_FromProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3129
|
+
@winrt_classmethod
|
|
3130
|
+
def get_ToProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3131
|
+
@winrt_classmethod
|
|
3132
|
+
def get_ByProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3133
|
+
@winrt_classmethod
|
|
3134
|
+
def get_EasingFunctionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3135
|
+
@winrt_classmethod
|
|
3136
|
+
def get_EnableDependentAnimationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3137
|
+
By = property(get_By, put_By)
|
|
3138
|
+
EasingFunction = property(get_EasingFunction, put_EasingFunction)
|
|
3139
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
3140
|
+
From = property(get_From, put_From)
|
|
3141
|
+
To = property(get_To, put_To)
|
|
3142
|
+
_PointAnimation_Meta_.ByProperty = property(get_ByProperty, None)
|
|
3143
|
+
_PointAnimation_Meta_.EasingFunctionProperty = property(get_EasingFunctionProperty, None)
|
|
3144
|
+
_PointAnimation_Meta_.EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
3145
|
+
_PointAnimation_Meta_.FromProperty = property(get_FromProperty, None)
|
|
3146
|
+
_PointAnimation_Meta_.ToProperty = property(get_ToProperty, None)
|
|
3147
|
+
class _PointAnimationUsingKeyFrames_Meta_(ComPtr.__class__):
|
|
3148
|
+
pass
|
|
3149
|
+
class PointAnimationUsingKeyFrames(ComPtr, metaclass=_PointAnimationUsingKeyFrames_Meta_):
|
|
3150
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3151
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationUsingKeyFrames
|
|
3152
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PointAnimationUsingKeyFrames'
|
|
3153
|
+
def __init__(self, *args, **kwargs):
|
|
3154
|
+
if kwargs:
|
|
3155
|
+
super().__init__(**kwargs)
|
|
3156
|
+
elif len(args) == 0:
|
|
3157
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PointAnimationUsingKeyFrames.CreateInstance(*args))
|
|
3158
|
+
else:
|
|
3159
|
+
raise ValueError('no matched constructor')
|
|
3160
|
+
@winrt_activatemethod
|
|
3161
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointAnimationUsingKeyFrames: ...
|
|
3162
|
+
@winrt_mixinmethod
|
|
3163
|
+
def get_KeyFrames(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationUsingKeyFrames) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrameCollection: ...
|
|
3164
|
+
@winrt_mixinmethod
|
|
3165
|
+
def get_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationUsingKeyFrames) -> Boolean: ...
|
|
3166
|
+
@winrt_mixinmethod
|
|
3167
|
+
def put_EnableDependentAnimation(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationUsingKeyFrames, value: Boolean) -> Void: ...
|
|
3168
|
+
@winrt_classmethod
|
|
3169
|
+
def get_EnableDependentAnimationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointAnimationUsingKeyFramesStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3170
|
+
EnableDependentAnimation = property(get_EnableDependentAnimation, put_EnableDependentAnimation)
|
|
3171
|
+
KeyFrames = property(get_KeyFrames, None)
|
|
3172
|
+
_PointAnimationUsingKeyFrames_Meta_.EnableDependentAnimationProperty = property(get_EnableDependentAnimationProperty, None)
|
|
3173
|
+
class _PointKeyFrame_Meta_(ComPtr.__class__):
|
|
3174
|
+
pass
|
|
3175
|
+
class PointKeyFrame(ComPtr, metaclass=_PointKeyFrame_Meta_):
|
|
3176
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
3177
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrame
|
|
3178
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PointKeyFrame'
|
|
3179
|
+
def __init__(self, *args, **kwargs):
|
|
3180
|
+
if kwargs:
|
|
3181
|
+
super().__init__(**kwargs)
|
|
3182
|
+
elif len(args) == 0:
|
|
3183
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame.CreateInstance(*args, None, None))
|
|
3184
|
+
else:
|
|
3185
|
+
raise ValueError('no matched constructor')
|
|
3186
|
+
@winrt_factorymethod
|
|
3187
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrameFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame: ...
|
|
3188
|
+
@winrt_mixinmethod
|
|
3189
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrame) -> win32more.Windows.Foundation.Point: ...
|
|
3190
|
+
@winrt_mixinmethod
|
|
3191
|
+
def put_Value(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrame, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
3192
|
+
@winrt_mixinmethod
|
|
3193
|
+
def get_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime: ...
|
|
3194
|
+
@winrt_mixinmethod
|
|
3195
|
+
def put_KeyTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeyTime) -> Void: ...
|
|
3196
|
+
@winrt_classmethod
|
|
3197
|
+
def get_ValueProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3198
|
+
@winrt_classmethod
|
|
3199
|
+
def get_KeyTimeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3200
|
+
KeyTime = property(get_KeyTime, put_KeyTime)
|
|
3201
|
+
Value = property(get_Value, put_Value)
|
|
3202
|
+
_PointKeyFrame_Meta_.KeyTimeProperty = property(get_KeyTimeProperty, None)
|
|
3203
|
+
_PointKeyFrame_Meta_.ValueProperty = property(get_ValueProperty, None)
|
|
3204
|
+
class PointKeyFrameCollection(ComPtr):
|
|
3205
|
+
extends: IInspectable
|
|
3206
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]]
|
|
3207
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]
|
|
3208
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PointKeyFrameCollection'
|
|
3209
|
+
def __init__(self, *args, **kwargs):
|
|
3210
|
+
if kwargs:
|
|
3211
|
+
super().__init__(**kwargs)
|
|
3212
|
+
elif len(args) == 0:
|
|
3213
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrameCollection.CreateInstance(*args))
|
|
3214
|
+
else:
|
|
3215
|
+
raise ValueError('no matched constructor')
|
|
3216
|
+
@winrt_activatemethod
|
|
3217
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrameCollection: ...
|
|
3218
|
+
@winrt_mixinmethod
|
|
3219
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame: ...
|
|
3220
|
+
@winrt_mixinmethod
|
|
3221
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]) -> UInt32: ...
|
|
3222
|
+
@winrt_mixinmethod
|
|
3223
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]: ...
|
|
3224
|
+
@winrt_mixinmethod
|
|
3225
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame, index: POINTER(UInt32)) -> Boolean: ...
|
|
3226
|
+
@winrt_mixinmethod
|
|
3227
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame) -> Void: ...
|
|
3228
|
+
@winrt_mixinmethod
|
|
3229
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame) -> Void: ...
|
|
3230
|
+
@winrt_mixinmethod
|
|
3231
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], index: UInt32) -> Void: ...
|
|
3232
|
+
@winrt_mixinmethod
|
|
3233
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], value: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame) -> Void: ...
|
|
3234
|
+
@winrt_mixinmethod
|
|
3235
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]) -> Void: ...
|
|
3236
|
+
@winrt_mixinmethod
|
|
3237
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]) -> Void: ...
|
|
3238
|
+
@winrt_mixinmethod
|
|
3239
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]) -> UInt32: ...
|
|
3240
|
+
@winrt_mixinmethod
|
|
3241
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]) -> Void: ...
|
|
3242
|
+
@winrt_mixinmethod
|
|
3243
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame]: ...
|
|
3244
|
+
Size = property(get_Size, None)
|
|
3245
|
+
class _PointerDownThemeAnimation_Meta_(ComPtr.__class__):
|
|
3246
|
+
pass
|
|
3247
|
+
class PointerDownThemeAnimation(ComPtr, metaclass=_PointerDownThemeAnimation_Meta_):
|
|
3248
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3249
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerDownThemeAnimation
|
|
3250
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PointerDownThemeAnimation'
|
|
3251
|
+
def __init__(self, *args, **kwargs):
|
|
3252
|
+
if kwargs:
|
|
3253
|
+
super().__init__(**kwargs)
|
|
3254
|
+
elif len(args) == 0:
|
|
3255
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PointerDownThemeAnimation.CreateInstance(*args))
|
|
3256
|
+
else:
|
|
3257
|
+
raise ValueError('no matched constructor')
|
|
3258
|
+
@winrt_activatemethod
|
|
3259
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointerDownThemeAnimation: ...
|
|
3260
|
+
@winrt_mixinmethod
|
|
3261
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerDownThemeAnimation) -> WinRT_String: ...
|
|
3262
|
+
@winrt_mixinmethod
|
|
3263
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerDownThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3264
|
+
@winrt_classmethod
|
|
3265
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerDownThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3266
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
3267
|
+
_PointerDownThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
3268
|
+
class _PointerUpThemeAnimation_Meta_(ComPtr.__class__):
|
|
3269
|
+
pass
|
|
3270
|
+
class PointerUpThemeAnimation(ComPtr, metaclass=_PointerUpThemeAnimation_Meta_):
|
|
3271
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3272
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerUpThemeAnimation
|
|
3273
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PointerUpThemeAnimation'
|
|
3274
|
+
def __init__(self, *args, **kwargs):
|
|
3275
|
+
if kwargs:
|
|
3276
|
+
super().__init__(**kwargs)
|
|
3277
|
+
elif len(args) == 0:
|
|
3278
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PointerUpThemeAnimation.CreateInstance(*args))
|
|
3279
|
+
else:
|
|
3280
|
+
raise ValueError('no matched constructor')
|
|
3281
|
+
@winrt_activatemethod
|
|
3282
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PointerUpThemeAnimation: ...
|
|
3283
|
+
@winrt_mixinmethod
|
|
3284
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerUpThemeAnimation) -> WinRT_String: ...
|
|
3285
|
+
@winrt_mixinmethod
|
|
3286
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerUpThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3287
|
+
@winrt_classmethod
|
|
3288
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPointerUpThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3289
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
3290
|
+
_PointerUpThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
3291
|
+
class _PopInThemeAnimation_Meta_(ComPtr.__class__):
|
|
3292
|
+
pass
|
|
3293
|
+
class PopInThemeAnimation(ComPtr, metaclass=_PopInThemeAnimation_Meta_):
|
|
3294
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3295
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation
|
|
3296
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PopInThemeAnimation'
|
|
3297
|
+
def __init__(self, *args, **kwargs):
|
|
3298
|
+
if kwargs:
|
|
3299
|
+
super().__init__(**kwargs)
|
|
3300
|
+
elif len(args) == 0:
|
|
3301
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PopInThemeAnimation.CreateInstance(*args))
|
|
3302
|
+
else:
|
|
3303
|
+
raise ValueError('no matched constructor')
|
|
3304
|
+
@winrt_activatemethod
|
|
3305
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PopInThemeAnimation: ...
|
|
3306
|
+
@winrt_mixinmethod
|
|
3307
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation) -> WinRT_String: ...
|
|
3308
|
+
@winrt_mixinmethod
|
|
3309
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3310
|
+
@winrt_mixinmethod
|
|
3311
|
+
def get_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation) -> Double: ...
|
|
3312
|
+
@winrt_mixinmethod
|
|
3313
|
+
def put_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation, value: Double) -> Void: ...
|
|
3314
|
+
@winrt_mixinmethod
|
|
3315
|
+
def get_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation) -> Double: ...
|
|
3316
|
+
@winrt_mixinmethod
|
|
3317
|
+
def put_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimation, value: Double) -> Void: ...
|
|
3318
|
+
@winrt_classmethod
|
|
3319
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3320
|
+
@winrt_classmethod
|
|
3321
|
+
def get_FromHorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3322
|
+
@winrt_classmethod
|
|
3323
|
+
def get_FromVerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPopInThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3324
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
3325
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
3326
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
3327
|
+
_PopInThemeAnimation_Meta_.FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
3328
|
+
_PopInThemeAnimation_Meta_.FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
3329
|
+
_PopInThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
3330
|
+
class _PopOutThemeAnimation_Meta_(ComPtr.__class__):
|
|
3331
|
+
pass
|
|
3332
|
+
class PopOutThemeAnimation(ComPtr, metaclass=_PopOutThemeAnimation_Meta_):
|
|
3333
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3334
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPopOutThemeAnimation
|
|
3335
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PopOutThemeAnimation'
|
|
3336
|
+
def __init__(self, *args, **kwargs):
|
|
3337
|
+
if kwargs:
|
|
3338
|
+
super().__init__(**kwargs)
|
|
3339
|
+
elif len(args) == 0:
|
|
3340
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PopOutThemeAnimation.CreateInstance(*args))
|
|
3341
|
+
else:
|
|
3342
|
+
raise ValueError('no matched constructor')
|
|
3343
|
+
@winrt_activatemethod
|
|
3344
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PopOutThemeAnimation: ...
|
|
3345
|
+
@winrt_mixinmethod
|
|
3346
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopOutThemeAnimation) -> WinRT_String: ...
|
|
3347
|
+
@winrt_mixinmethod
|
|
3348
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopOutThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3349
|
+
@winrt_classmethod
|
|
3350
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPopOutThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3351
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
3352
|
+
_PopOutThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
3353
|
+
class _PopupThemeTransition_Meta_(ComPtr.__class__):
|
|
3354
|
+
pass
|
|
3355
|
+
class PopupThemeTransition(ComPtr, metaclass=_PopupThemeTransition_Meta_):
|
|
3356
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
3357
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransition
|
|
3358
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PopupThemeTransition'
|
|
3359
|
+
def __init__(self, *args, **kwargs):
|
|
3360
|
+
if kwargs:
|
|
3361
|
+
super().__init__(**kwargs)
|
|
3362
|
+
elif len(args) == 0:
|
|
3363
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PopupThemeTransition.CreateInstance(*args))
|
|
3364
|
+
else:
|
|
3365
|
+
raise ValueError('no matched constructor')
|
|
3366
|
+
@winrt_activatemethod
|
|
3367
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PopupThemeTransition: ...
|
|
3368
|
+
@winrt_mixinmethod
|
|
3369
|
+
def get_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransition) -> Double: ...
|
|
3370
|
+
@winrt_mixinmethod
|
|
3371
|
+
def put_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransition, value: Double) -> Void: ...
|
|
3372
|
+
@winrt_mixinmethod
|
|
3373
|
+
def get_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransition) -> Double: ...
|
|
3374
|
+
@winrt_mixinmethod
|
|
3375
|
+
def put_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransition, value: Double) -> Void: ...
|
|
3376
|
+
@winrt_classmethod
|
|
3377
|
+
def get_FromHorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3378
|
+
@winrt_classmethod
|
|
3379
|
+
def get_FromVerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPopupThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3380
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
3381
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
3382
|
+
_PopupThemeTransition_Meta_.FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
3383
|
+
_PopupThemeTransition_Meta_.FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
3384
|
+
class _PowerEase_Meta_(ComPtr.__class__):
|
|
3385
|
+
pass
|
|
3386
|
+
class PowerEase(ComPtr, metaclass=_PowerEase_Meta_):
|
|
3387
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
3388
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IPowerEase
|
|
3389
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.PowerEase'
|
|
3390
|
+
def __init__(self, *args, **kwargs):
|
|
3391
|
+
if kwargs:
|
|
3392
|
+
super().__init__(**kwargs)
|
|
3393
|
+
elif len(args) == 0:
|
|
3394
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.PowerEase.CreateInstance(*args))
|
|
3395
|
+
else:
|
|
3396
|
+
raise ValueError('no matched constructor')
|
|
3397
|
+
@winrt_activatemethod
|
|
3398
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.PowerEase: ...
|
|
3399
|
+
@winrt_mixinmethod
|
|
3400
|
+
def get_Power(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPowerEase) -> Double: ...
|
|
3401
|
+
@winrt_mixinmethod
|
|
3402
|
+
def put_Power(self: win32more.Microsoft.UI.Xaml.Media.Animation.IPowerEase, value: Double) -> Void: ...
|
|
3403
|
+
@winrt_classmethod
|
|
3404
|
+
def get_PowerProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IPowerEaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3405
|
+
Power = property(get_Power, put_Power)
|
|
3406
|
+
_PowerEase_Meta_.PowerProperty = property(get_PowerProperty, None)
|
|
3407
|
+
class QuadraticEase(ComPtr):
|
|
3408
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
3409
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IQuadraticEase
|
|
3410
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.QuadraticEase'
|
|
3411
|
+
def __init__(self, *args, **kwargs):
|
|
3412
|
+
if kwargs:
|
|
3413
|
+
super().__init__(**kwargs)
|
|
3414
|
+
elif len(args) == 0:
|
|
3415
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.QuadraticEase.CreateInstance(*args))
|
|
3416
|
+
else:
|
|
3417
|
+
raise ValueError('no matched constructor')
|
|
3418
|
+
@winrt_activatemethod
|
|
3419
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.QuadraticEase: ...
|
|
3420
|
+
class QuarticEase(ComPtr):
|
|
3421
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
3422
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IQuarticEase
|
|
3423
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.QuarticEase'
|
|
3424
|
+
def __init__(self, *args, **kwargs):
|
|
3425
|
+
if kwargs:
|
|
3426
|
+
super().__init__(**kwargs)
|
|
3427
|
+
elif len(args) == 0:
|
|
3428
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.QuarticEase.CreateInstance(*args))
|
|
3429
|
+
else:
|
|
3430
|
+
raise ValueError('no matched constructor')
|
|
3431
|
+
@winrt_activatemethod
|
|
3432
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.QuarticEase: ...
|
|
3433
|
+
class QuinticEase(ComPtr):
|
|
3434
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
3435
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IQuinticEase
|
|
3436
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.QuinticEase'
|
|
3437
|
+
def __init__(self, *args, **kwargs):
|
|
3438
|
+
if kwargs:
|
|
3439
|
+
super().__init__(**kwargs)
|
|
3440
|
+
elif len(args) == 0:
|
|
3441
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.QuinticEase.CreateInstance(*args))
|
|
3442
|
+
else:
|
|
3443
|
+
raise ValueError('no matched constructor')
|
|
3444
|
+
@winrt_activatemethod
|
|
3445
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.QuinticEase: ...
|
|
3446
|
+
class ReorderThemeTransition(ComPtr):
|
|
3447
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
3448
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IReorderThemeTransition
|
|
3449
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.ReorderThemeTransition'
|
|
3450
|
+
def __init__(self, *args, **kwargs):
|
|
3451
|
+
if kwargs:
|
|
3452
|
+
super().__init__(**kwargs)
|
|
3453
|
+
elif len(args) == 0:
|
|
3454
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.ReorderThemeTransition.CreateInstance(*args))
|
|
3455
|
+
else:
|
|
3456
|
+
raise ValueError('no matched constructor')
|
|
3457
|
+
@winrt_activatemethod
|
|
3458
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.ReorderThemeTransition: ...
|
|
3459
|
+
class RepeatBehavior(Structure):
|
|
3460
|
+
Count: Double
|
|
3461
|
+
Duration: win32more.Windows.Foundation.TimeSpan
|
|
3462
|
+
Type: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehaviorType
|
|
3463
|
+
class _RepeatBehaviorHelper_Meta_(ComPtr.__class__):
|
|
3464
|
+
pass
|
|
3465
|
+
class RepeatBehaviorHelper(ComPtr, metaclass=_RepeatBehaviorHelper_Meta_):
|
|
3466
|
+
extends: IInspectable
|
|
3467
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelper
|
|
3468
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.RepeatBehaviorHelper'
|
|
3469
|
+
@winrt_classmethod
|
|
3470
|
+
def get_Forever(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelperStatics) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
3471
|
+
@winrt_classmethod
|
|
3472
|
+
def FromCount(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelperStatics, count: Double) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
3473
|
+
@winrt_classmethod
|
|
3474
|
+
def FromDuration(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelperStatics, duration: win32more.Windows.Foundation.TimeSpan) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
3475
|
+
@winrt_classmethod
|
|
3476
|
+
def GetHasCount(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelperStatics, target: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Boolean: ...
|
|
3477
|
+
@winrt_classmethod
|
|
3478
|
+
def GetHasDuration(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelperStatics, target: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Boolean: ...
|
|
3479
|
+
@winrt_classmethod
|
|
3480
|
+
def Equals(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepeatBehaviorHelperStatics, target: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior, value: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Boolean: ...
|
|
3481
|
+
_RepeatBehaviorHelper_Meta_.Forever = property(get_Forever, None)
|
|
3482
|
+
class RepeatBehaviorType(Enum, Int32):
|
|
3483
|
+
Count = 0
|
|
3484
|
+
Duration = 1
|
|
3485
|
+
Forever = 2
|
|
3486
|
+
class _RepositionThemeAnimation_Meta_(ComPtr.__class__):
|
|
3487
|
+
pass
|
|
3488
|
+
class RepositionThemeAnimation(ComPtr, metaclass=_RepositionThemeAnimation_Meta_):
|
|
3489
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3490
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation
|
|
3491
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.RepositionThemeAnimation'
|
|
3492
|
+
def __init__(self, *args, **kwargs):
|
|
3493
|
+
if kwargs:
|
|
3494
|
+
super().__init__(**kwargs)
|
|
3495
|
+
elif len(args) == 0:
|
|
3496
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.RepositionThemeAnimation.CreateInstance(*args))
|
|
3497
|
+
else:
|
|
3498
|
+
raise ValueError('no matched constructor')
|
|
3499
|
+
@winrt_activatemethod
|
|
3500
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepositionThemeAnimation: ...
|
|
3501
|
+
@winrt_mixinmethod
|
|
3502
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation) -> WinRT_String: ...
|
|
3503
|
+
@winrt_mixinmethod
|
|
3504
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3505
|
+
@winrt_mixinmethod
|
|
3506
|
+
def get_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation) -> Double: ...
|
|
3507
|
+
@winrt_mixinmethod
|
|
3508
|
+
def put_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation, value: Double) -> Void: ...
|
|
3509
|
+
@winrt_mixinmethod
|
|
3510
|
+
def get_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation) -> Double: ...
|
|
3511
|
+
@winrt_mixinmethod
|
|
3512
|
+
def put_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimation, value: Double) -> Void: ...
|
|
3513
|
+
@winrt_classmethod
|
|
3514
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3515
|
+
@winrt_classmethod
|
|
3516
|
+
def get_FromHorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3517
|
+
@winrt_classmethod
|
|
3518
|
+
def get_FromVerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3519
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
3520
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
3521
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
3522
|
+
_RepositionThemeAnimation_Meta_.FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
3523
|
+
_RepositionThemeAnimation_Meta_.FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
3524
|
+
_RepositionThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
3525
|
+
class _RepositionThemeTransition_Meta_(ComPtr.__class__):
|
|
3526
|
+
pass
|
|
3527
|
+
class RepositionThemeTransition(ComPtr, metaclass=_RepositionThemeTransition_Meta_):
|
|
3528
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Transition
|
|
3529
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeTransition
|
|
3530
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.RepositionThemeTransition'
|
|
3531
|
+
def __init__(self, *args, **kwargs):
|
|
3532
|
+
if kwargs:
|
|
3533
|
+
super().__init__(**kwargs)
|
|
3534
|
+
elif len(args) == 0:
|
|
3535
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.RepositionThemeTransition.CreateInstance(*args))
|
|
3536
|
+
else:
|
|
3537
|
+
raise ValueError('no matched constructor')
|
|
3538
|
+
@winrt_activatemethod
|
|
3539
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepositionThemeTransition: ...
|
|
3540
|
+
@winrt_mixinmethod
|
|
3541
|
+
def get_IsStaggeringEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeTransition) -> Boolean: ...
|
|
3542
|
+
@winrt_mixinmethod
|
|
3543
|
+
def put_IsStaggeringEnabled(self: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeTransition, value: Boolean) -> Void: ...
|
|
3544
|
+
@winrt_classmethod
|
|
3545
|
+
def get_IsStaggeringEnabledProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IRepositionThemeTransitionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3546
|
+
IsStaggeringEnabled = property(get_IsStaggeringEnabled, put_IsStaggeringEnabled)
|
|
3547
|
+
_RepositionThemeTransition_Meta_.IsStaggeringEnabledProperty = property(get_IsStaggeringEnabledProperty, None)
|
|
3548
|
+
class SineEase(ComPtr):
|
|
3549
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.EasingFunctionBase
|
|
3550
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISineEase
|
|
3551
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SineEase'
|
|
3552
|
+
def __init__(self, *args, **kwargs):
|
|
3553
|
+
if kwargs:
|
|
3554
|
+
super().__init__(**kwargs)
|
|
3555
|
+
elif len(args) == 0:
|
|
3556
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SineEase.CreateInstance(*args))
|
|
3557
|
+
else:
|
|
3558
|
+
raise ValueError('no matched constructor')
|
|
3559
|
+
@winrt_activatemethod
|
|
3560
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SineEase: ...
|
|
3561
|
+
class SlideNavigationTransitionEffect(Enum, Int32):
|
|
3562
|
+
FromBottom = 0
|
|
3563
|
+
FromLeft = 1
|
|
3564
|
+
FromRight = 2
|
|
3565
|
+
class _SlideNavigationTransitionInfo_Meta_(ComPtr.__class__):
|
|
3566
|
+
pass
|
|
3567
|
+
class SlideNavigationTransitionInfo(ComPtr, metaclass=_SlideNavigationTransitionInfo_Meta_):
|
|
3568
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo
|
|
3569
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISlideNavigationTransitionInfo
|
|
3570
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SlideNavigationTransitionInfo'
|
|
3571
|
+
def __init__(self, *args, **kwargs):
|
|
3572
|
+
if kwargs:
|
|
3573
|
+
super().__init__(**kwargs)
|
|
3574
|
+
elif len(args) == 0:
|
|
3575
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SlideNavigationTransitionInfo.CreateInstance(*args))
|
|
3576
|
+
else:
|
|
3577
|
+
raise ValueError('no matched constructor')
|
|
3578
|
+
@winrt_activatemethod
|
|
3579
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SlideNavigationTransitionInfo: ...
|
|
3580
|
+
@winrt_mixinmethod
|
|
3581
|
+
def get_Effect(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISlideNavigationTransitionInfo) -> win32more.Microsoft.UI.Xaml.Media.Animation.SlideNavigationTransitionEffect: ...
|
|
3582
|
+
@winrt_mixinmethod
|
|
3583
|
+
def put_Effect(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISlideNavigationTransitionInfo, value: win32more.Microsoft.UI.Xaml.Media.Animation.SlideNavigationTransitionEffect) -> Void: ...
|
|
3584
|
+
@winrt_classmethod
|
|
3585
|
+
def get_EffectProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISlideNavigationTransitionInfoStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3586
|
+
Effect = property(get_Effect, put_Effect)
|
|
3587
|
+
_SlideNavigationTransitionInfo_Meta_.EffectProperty = property(get_EffectProperty, None)
|
|
3588
|
+
class _SplineColorKeyFrame_Meta_(ComPtr.__class__):
|
|
3589
|
+
pass
|
|
3590
|
+
class SplineColorKeyFrame(ComPtr, metaclass=_SplineColorKeyFrame_Meta_):
|
|
3591
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame
|
|
3592
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineColorKeyFrame
|
|
3593
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SplineColorKeyFrame'
|
|
3594
|
+
def __init__(self, *args, **kwargs):
|
|
3595
|
+
if kwargs:
|
|
3596
|
+
super().__init__(**kwargs)
|
|
3597
|
+
elif len(args) == 0:
|
|
3598
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SplineColorKeyFrame.CreateInstance(*args))
|
|
3599
|
+
else:
|
|
3600
|
+
raise ValueError('no matched constructor')
|
|
3601
|
+
@winrt_activatemethod
|
|
3602
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SplineColorKeyFrame: ...
|
|
3603
|
+
@winrt_mixinmethod
|
|
3604
|
+
def get_KeySpline(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineColorKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline: ...
|
|
3605
|
+
@winrt_mixinmethod
|
|
3606
|
+
def put_KeySpline(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineColorKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline) -> Void: ...
|
|
3607
|
+
@winrt_classmethod
|
|
3608
|
+
def get_KeySplineProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineColorKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3609
|
+
KeySpline = property(get_KeySpline, put_KeySpline)
|
|
3610
|
+
_SplineColorKeyFrame_Meta_.KeySplineProperty = property(get_KeySplineProperty, None)
|
|
3611
|
+
class _SplineDoubleKeyFrame_Meta_(ComPtr.__class__):
|
|
3612
|
+
pass
|
|
3613
|
+
class SplineDoubleKeyFrame(ComPtr, metaclass=_SplineDoubleKeyFrame_Meta_):
|
|
3614
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.DoubleKeyFrame
|
|
3615
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineDoubleKeyFrame
|
|
3616
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SplineDoubleKeyFrame'
|
|
3617
|
+
def __init__(self, *args, **kwargs):
|
|
3618
|
+
if kwargs:
|
|
3619
|
+
super().__init__(**kwargs)
|
|
3620
|
+
elif len(args) == 0:
|
|
3621
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SplineDoubleKeyFrame.CreateInstance(*args))
|
|
3622
|
+
else:
|
|
3623
|
+
raise ValueError('no matched constructor')
|
|
3624
|
+
@winrt_activatemethod
|
|
3625
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SplineDoubleKeyFrame: ...
|
|
3626
|
+
@winrt_mixinmethod
|
|
3627
|
+
def get_KeySpline(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineDoubleKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline: ...
|
|
3628
|
+
@winrt_mixinmethod
|
|
3629
|
+
def put_KeySpline(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineDoubleKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline) -> Void: ...
|
|
3630
|
+
@winrt_classmethod
|
|
3631
|
+
def get_KeySplineProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplineDoubleKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3632
|
+
KeySpline = property(get_KeySpline, put_KeySpline)
|
|
3633
|
+
_SplineDoubleKeyFrame_Meta_.KeySplineProperty = property(get_KeySplineProperty, None)
|
|
3634
|
+
class _SplinePointKeyFrame_Meta_(ComPtr.__class__):
|
|
3635
|
+
pass
|
|
3636
|
+
class SplinePointKeyFrame(ComPtr, metaclass=_SplinePointKeyFrame_Meta_):
|
|
3637
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.PointKeyFrame
|
|
3638
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISplinePointKeyFrame
|
|
3639
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SplinePointKeyFrame'
|
|
3640
|
+
def __init__(self, *args, **kwargs):
|
|
3641
|
+
if kwargs:
|
|
3642
|
+
super().__init__(**kwargs)
|
|
3643
|
+
elif len(args) == 0:
|
|
3644
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SplinePointKeyFrame.CreateInstance(*args))
|
|
3645
|
+
else:
|
|
3646
|
+
raise ValueError('no matched constructor')
|
|
3647
|
+
@winrt_activatemethod
|
|
3648
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SplinePointKeyFrame: ...
|
|
3649
|
+
@winrt_mixinmethod
|
|
3650
|
+
def get_KeySpline(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplinePointKeyFrame) -> win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline: ...
|
|
3651
|
+
@winrt_mixinmethod
|
|
3652
|
+
def put_KeySpline(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplinePointKeyFrame, value: win32more.Microsoft.UI.Xaml.Media.Animation.KeySpline) -> Void: ...
|
|
3653
|
+
@winrt_classmethod
|
|
3654
|
+
def get_KeySplineProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplinePointKeyFrameStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3655
|
+
KeySpline = property(get_KeySpline, put_KeySpline)
|
|
3656
|
+
_SplinePointKeyFrame_Meta_.KeySplineProperty = property(get_KeySplineProperty, None)
|
|
3657
|
+
class _SplitCloseThemeAnimation_Meta_(ComPtr.__class__):
|
|
3658
|
+
pass
|
|
3659
|
+
class SplitCloseThemeAnimation(ComPtr, metaclass=_SplitCloseThemeAnimation_Meta_):
|
|
3660
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3661
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation
|
|
3662
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SplitCloseThemeAnimation'
|
|
3663
|
+
def __init__(self, *args, **kwargs):
|
|
3664
|
+
if kwargs:
|
|
3665
|
+
super().__init__(**kwargs)
|
|
3666
|
+
elif len(args) == 0:
|
|
3667
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SplitCloseThemeAnimation.CreateInstance(*args))
|
|
3668
|
+
else:
|
|
3669
|
+
raise ValueError('no matched constructor')
|
|
3670
|
+
@winrt_activatemethod
|
|
3671
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SplitCloseThemeAnimation: ...
|
|
3672
|
+
@winrt_mixinmethod
|
|
3673
|
+
def get_OpenedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> WinRT_String: ...
|
|
3674
|
+
@winrt_mixinmethod
|
|
3675
|
+
def put_OpenedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3676
|
+
@winrt_mixinmethod
|
|
3677
|
+
def get_OpenedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3678
|
+
@winrt_mixinmethod
|
|
3679
|
+
def put_OpenedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
3680
|
+
@winrt_mixinmethod
|
|
3681
|
+
def get_ClosedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> WinRT_String: ...
|
|
3682
|
+
@winrt_mixinmethod
|
|
3683
|
+
def put_ClosedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3684
|
+
@winrt_mixinmethod
|
|
3685
|
+
def get_ClosedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3686
|
+
@winrt_mixinmethod
|
|
3687
|
+
def put_ClosedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
3688
|
+
@winrt_mixinmethod
|
|
3689
|
+
def get_ContentTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> WinRT_String: ...
|
|
3690
|
+
@winrt_mixinmethod
|
|
3691
|
+
def put_ContentTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3692
|
+
@winrt_mixinmethod
|
|
3693
|
+
def get_ContentTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3694
|
+
@winrt_mixinmethod
|
|
3695
|
+
def put_ContentTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
3696
|
+
@winrt_mixinmethod
|
|
3697
|
+
def get_OpenedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> Double: ...
|
|
3698
|
+
@winrt_mixinmethod
|
|
3699
|
+
def put_OpenedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: Double) -> Void: ...
|
|
3700
|
+
@winrt_mixinmethod
|
|
3701
|
+
def get_ClosedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> Double: ...
|
|
3702
|
+
@winrt_mixinmethod
|
|
3703
|
+
def put_ClosedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: Double) -> Void: ...
|
|
3704
|
+
@winrt_mixinmethod
|
|
3705
|
+
def get_OffsetFromCenter(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> Double: ...
|
|
3706
|
+
@winrt_mixinmethod
|
|
3707
|
+
def put_OffsetFromCenter(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: Double) -> Void: ...
|
|
3708
|
+
@winrt_mixinmethod
|
|
3709
|
+
def get_ContentTranslationDirection(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection: ...
|
|
3710
|
+
@winrt_mixinmethod
|
|
3711
|
+
def put_ContentTranslationDirection(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection) -> Void: ...
|
|
3712
|
+
@winrt_mixinmethod
|
|
3713
|
+
def get_ContentTranslationOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation) -> Double: ...
|
|
3714
|
+
@winrt_mixinmethod
|
|
3715
|
+
def put_ContentTranslationOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimation, value: Double) -> Void: ...
|
|
3716
|
+
@winrt_classmethod
|
|
3717
|
+
def get_OpenedTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3718
|
+
@winrt_classmethod
|
|
3719
|
+
def get_OpenedTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3720
|
+
@winrt_classmethod
|
|
3721
|
+
def get_ClosedTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3722
|
+
@winrt_classmethod
|
|
3723
|
+
def get_ClosedTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3724
|
+
@winrt_classmethod
|
|
3725
|
+
def get_ContentTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3726
|
+
@winrt_classmethod
|
|
3727
|
+
def get_ContentTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3728
|
+
@winrt_classmethod
|
|
3729
|
+
def get_OpenedLengthProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3730
|
+
@winrt_classmethod
|
|
3731
|
+
def get_ClosedLengthProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3732
|
+
@winrt_classmethod
|
|
3733
|
+
def get_OffsetFromCenterProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3734
|
+
@winrt_classmethod
|
|
3735
|
+
def get_ContentTranslationDirectionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3736
|
+
@winrt_classmethod
|
|
3737
|
+
def get_ContentTranslationOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3738
|
+
ClosedLength = property(get_ClosedLength, put_ClosedLength)
|
|
3739
|
+
ClosedTarget = property(get_ClosedTarget, put_ClosedTarget)
|
|
3740
|
+
ClosedTargetName = property(get_ClosedTargetName, put_ClosedTargetName)
|
|
3741
|
+
ContentTarget = property(get_ContentTarget, put_ContentTarget)
|
|
3742
|
+
ContentTargetName = property(get_ContentTargetName, put_ContentTargetName)
|
|
3743
|
+
ContentTranslationDirection = property(get_ContentTranslationDirection, put_ContentTranslationDirection)
|
|
3744
|
+
ContentTranslationOffset = property(get_ContentTranslationOffset, put_ContentTranslationOffset)
|
|
3745
|
+
OffsetFromCenter = property(get_OffsetFromCenter, put_OffsetFromCenter)
|
|
3746
|
+
OpenedLength = property(get_OpenedLength, put_OpenedLength)
|
|
3747
|
+
OpenedTarget = property(get_OpenedTarget, put_OpenedTarget)
|
|
3748
|
+
OpenedTargetName = property(get_OpenedTargetName, put_OpenedTargetName)
|
|
3749
|
+
_SplitCloseThemeAnimation_Meta_.ClosedLengthProperty = property(get_ClosedLengthProperty, None)
|
|
3750
|
+
_SplitCloseThemeAnimation_Meta_.ClosedTargetNameProperty = property(get_ClosedTargetNameProperty, None)
|
|
3751
|
+
_SplitCloseThemeAnimation_Meta_.ClosedTargetProperty = property(get_ClosedTargetProperty, None)
|
|
3752
|
+
_SplitCloseThemeAnimation_Meta_.ContentTargetNameProperty = property(get_ContentTargetNameProperty, None)
|
|
3753
|
+
_SplitCloseThemeAnimation_Meta_.ContentTargetProperty = property(get_ContentTargetProperty, None)
|
|
3754
|
+
_SplitCloseThemeAnimation_Meta_.ContentTranslationDirectionProperty = property(get_ContentTranslationDirectionProperty, None)
|
|
3755
|
+
_SplitCloseThemeAnimation_Meta_.ContentTranslationOffsetProperty = property(get_ContentTranslationOffsetProperty, None)
|
|
3756
|
+
_SplitCloseThemeAnimation_Meta_.OffsetFromCenterProperty = property(get_OffsetFromCenterProperty, None)
|
|
3757
|
+
_SplitCloseThemeAnimation_Meta_.OpenedLengthProperty = property(get_OpenedLengthProperty, None)
|
|
3758
|
+
_SplitCloseThemeAnimation_Meta_.OpenedTargetNameProperty = property(get_OpenedTargetNameProperty, None)
|
|
3759
|
+
_SplitCloseThemeAnimation_Meta_.OpenedTargetProperty = property(get_OpenedTargetProperty, None)
|
|
3760
|
+
class _SplitOpenThemeAnimation_Meta_(ComPtr.__class__):
|
|
3761
|
+
pass
|
|
3762
|
+
class SplitOpenThemeAnimation(ComPtr, metaclass=_SplitOpenThemeAnimation_Meta_):
|
|
3763
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3764
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation
|
|
3765
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SplitOpenThemeAnimation'
|
|
3766
|
+
def __init__(self, *args, **kwargs):
|
|
3767
|
+
if kwargs:
|
|
3768
|
+
super().__init__(**kwargs)
|
|
3769
|
+
elif len(args) == 0:
|
|
3770
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SplitOpenThemeAnimation.CreateInstance(*args))
|
|
3771
|
+
else:
|
|
3772
|
+
raise ValueError('no matched constructor')
|
|
3773
|
+
@winrt_activatemethod
|
|
3774
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SplitOpenThemeAnimation: ...
|
|
3775
|
+
@winrt_mixinmethod
|
|
3776
|
+
def get_OpenedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> WinRT_String: ...
|
|
3777
|
+
@winrt_mixinmethod
|
|
3778
|
+
def put_OpenedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3779
|
+
@winrt_mixinmethod
|
|
3780
|
+
def get_OpenedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3781
|
+
@winrt_mixinmethod
|
|
3782
|
+
def put_OpenedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
3783
|
+
@winrt_mixinmethod
|
|
3784
|
+
def get_ClosedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> WinRT_String: ...
|
|
3785
|
+
@winrt_mixinmethod
|
|
3786
|
+
def put_ClosedTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3787
|
+
@winrt_mixinmethod
|
|
3788
|
+
def get_ClosedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3789
|
+
@winrt_mixinmethod
|
|
3790
|
+
def put_ClosedTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
3791
|
+
@winrt_mixinmethod
|
|
3792
|
+
def get_ContentTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> WinRT_String: ...
|
|
3793
|
+
@winrt_mixinmethod
|
|
3794
|
+
def put_ContentTargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3795
|
+
@winrt_mixinmethod
|
|
3796
|
+
def get_ContentTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3797
|
+
@winrt_mixinmethod
|
|
3798
|
+
def put_ContentTarget(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
3799
|
+
@winrt_mixinmethod
|
|
3800
|
+
def get_OpenedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> Double: ...
|
|
3801
|
+
@winrt_mixinmethod
|
|
3802
|
+
def put_OpenedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: Double) -> Void: ...
|
|
3803
|
+
@winrt_mixinmethod
|
|
3804
|
+
def get_ClosedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> Double: ...
|
|
3805
|
+
@winrt_mixinmethod
|
|
3806
|
+
def put_ClosedLength(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: Double) -> Void: ...
|
|
3807
|
+
@winrt_mixinmethod
|
|
3808
|
+
def get_OffsetFromCenter(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> Double: ...
|
|
3809
|
+
@winrt_mixinmethod
|
|
3810
|
+
def put_OffsetFromCenter(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: Double) -> Void: ...
|
|
3811
|
+
@winrt_mixinmethod
|
|
3812
|
+
def get_ContentTranslationDirection(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection: ...
|
|
3813
|
+
@winrt_mixinmethod
|
|
3814
|
+
def put_ContentTranslationDirection(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: win32more.Microsoft.UI.Xaml.Controls.Primitives.AnimationDirection) -> Void: ...
|
|
3815
|
+
@winrt_mixinmethod
|
|
3816
|
+
def get_ContentTranslationOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation) -> Double: ...
|
|
3817
|
+
@winrt_mixinmethod
|
|
3818
|
+
def put_ContentTranslationOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimation, value: Double) -> Void: ...
|
|
3819
|
+
@winrt_classmethod
|
|
3820
|
+
def get_OpenedTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3821
|
+
@winrt_classmethod
|
|
3822
|
+
def get_OpenedTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3823
|
+
@winrt_classmethod
|
|
3824
|
+
def get_ClosedTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3825
|
+
@winrt_classmethod
|
|
3826
|
+
def get_ClosedTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3827
|
+
@winrt_classmethod
|
|
3828
|
+
def get_ContentTargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3829
|
+
@winrt_classmethod
|
|
3830
|
+
def get_ContentTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3831
|
+
@winrt_classmethod
|
|
3832
|
+
def get_OpenedLengthProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3833
|
+
@winrt_classmethod
|
|
3834
|
+
def get_ClosedLengthProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3835
|
+
@winrt_classmethod
|
|
3836
|
+
def get_OffsetFromCenterProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3837
|
+
@winrt_classmethod
|
|
3838
|
+
def get_ContentTranslationDirectionProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3839
|
+
@winrt_classmethod
|
|
3840
|
+
def get_ContentTranslationOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISplitOpenThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3841
|
+
ClosedLength = property(get_ClosedLength, put_ClosedLength)
|
|
3842
|
+
ClosedTarget = property(get_ClosedTarget, put_ClosedTarget)
|
|
3843
|
+
ClosedTargetName = property(get_ClosedTargetName, put_ClosedTargetName)
|
|
3844
|
+
ContentTarget = property(get_ContentTarget, put_ContentTarget)
|
|
3845
|
+
ContentTargetName = property(get_ContentTargetName, put_ContentTargetName)
|
|
3846
|
+
ContentTranslationDirection = property(get_ContentTranslationDirection, put_ContentTranslationDirection)
|
|
3847
|
+
ContentTranslationOffset = property(get_ContentTranslationOffset, put_ContentTranslationOffset)
|
|
3848
|
+
OffsetFromCenter = property(get_OffsetFromCenter, put_OffsetFromCenter)
|
|
3849
|
+
OpenedLength = property(get_OpenedLength, put_OpenedLength)
|
|
3850
|
+
OpenedTarget = property(get_OpenedTarget, put_OpenedTarget)
|
|
3851
|
+
OpenedTargetName = property(get_OpenedTargetName, put_OpenedTargetName)
|
|
3852
|
+
_SplitOpenThemeAnimation_Meta_.ClosedLengthProperty = property(get_ClosedLengthProperty, None)
|
|
3853
|
+
_SplitOpenThemeAnimation_Meta_.ClosedTargetNameProperty = property(get_ClosedTargetNameProperty, None)
|
|
3854
|
+
_SplitOpenThemeAnimation_Meta_.ClosedTargetProperty = property(get_ClosedTargetProperty, None)
|
|
3855
|
+
_SplitOpenThemeAnimation_Meta_.ContentTargetNameProperty = property(get_ContentTargetNameProperty, None)
|
|
3856
|
+
_SplitOpenThemeAnimation_Meta_.ContentTargetProperty = property(get_ContentTargetProperty, None)
|
|
3857
|
+
_SplitOpenThemeAnimation_Meta_.ContentTranslationDirectionProperty = property(get_ContentTranslationDirectionProperty, None)
|
|
3858
|
+
_SplitOpenThemeAnimation_Meta_.ContentTranslationOffsetProperty = property(get_ContentTranslationOffsetProperty, None)
|
|
3859
|
+
_SplitOpenThemeAnimation_Meta_.OffsetFromCenterProperty = property(get_OffsetFromCenterProperty, None)
|
|
3860
|
+
_SplitOpenThemeAnimation_Meta_.OpenedLengthProperty = property(get_OpenedLengthProperty, None)
|
|
3861
|
+
_SplitOpenThemeAnimation_Meta_.OpenedTargetNameProperty = property(get_OpenedTargetNameProperty, None)
|
|
3862
|
+
_SplitOpenThemeAnimation_Meta_.OpenedTargetProperty = property(get_OpenedTargetProperty, None)
|
|
3863
|
+
class _Storyboard_Meta_(ComPtr.__class__):
|
|
3864
|
+
pass
|
|
3865
|
+
class Storyboard(ComPtr, metaclass=_Storyboard_Meta_):
|
|
3866
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3867
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard
|
|
3868
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.Storyboard'
|
|
3869
|
+
def __init__(self, *args, **kwargs):
|
|
3870
|
+
if kwargs:
|
|
3871
|
+
super().__init__(**kwargs)
|
|
3872
|
+
elif len(args) == 0:
|
|
3873
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.Storyboard.CreateInstance(*args))
|
|
3874
|
+
else:
|
|
3875
|
+
raise ValueError('no matched constructor')
|
|
3876
|
+
@winrt_activatemethod
|
|
3877
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.Storyboard: ...
|
|
3878
|
+
@winrt_mixinmethod
|
|
3879
|
+
def get_Children(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> win32more.Microsoft.UI.Xaml.Media.Animation.TimelineCollection: ...
|
|
3880
|
+
@winrt_mixinmethod
|
|
3881
|
+
def Seek(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard, offset: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
3882
|
+
@winrt_mixinmethod
|
|
3883
|
+
def Stop(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> Void: ...
|
|
3884
|
+
@winrt_mixinmethod
|
|
3885
|
+
def Begin(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> Void: ...
|
|
3886
|
+
@winrt_mixinmethod
|
|
3887
|
+
def Pause(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> Void: ...
|
|
3888
|
+
@winrt_mixinmethod
|
|
3889
|
+
def Resume(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> Void: ...
|
|
3890
|
+
@winrt_mixinmethod
|
|
3891
|
+
def GetCurrentState(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> win32more.Microsoft.UI.Xaml.Media.Animation.ClockState: ...
|
|
3892
|
+
@winrt_mixinmethod
|
|
3893
|
+
def GetCurrentTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
3894
|
+
@winrt_mixinmethod
|
|
3895
|
+
def SeekAlignedToLastTick(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard, offset: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
3896
|
+
@winrt_mixinmethod
|
|
3897
|
+
def SkipToFill(self: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboard) -> Void: ...
|
|
3898
|
+
@winrt_classmethod
|
|
3899
|
+
def get_TargetPropertyProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3900
|
+
@winrt_classmethod
|
|
3901
|
+
def GetTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline) -> WinRT_String: ...
|
|
3902
|
+
@winrt_classmethod
|
|
3903
|
+
def SetTargetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline, path: WinRT_String) -> Void: ...
|
|
3904
|
+
@winrt_classmethod
|
|
3905
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3906
|
+
@winrt_classmethod
|
|
3907
|
+
def GetTargetName(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline) -> WinRT_String: ...
|
|
3908
|
+
@winrt_classmethod
|
|
3909
|
+
def SetTargetName(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics, element: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline, name: WinRT_String) -> Void: ...
|
|
3910
|
+
@winrt_classmethod
|
|
3911
|
+
def SetTarget(cls: win32more.Microsoft.UI.Xaml.Media.Animation.IStoryboardStatics, timeline: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline, target: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
3912
|
+
Children = property(get_Children, None)
|
|
3913
|
+
_Storyboard_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
3914
|
+
_Storyboard_Meta_.TargetPropertyProperty = property(get_TargetPropertyProperty, None)
|
|
3915
|
+
class SuppressNavigationTransitionInfo(ComPtr):
|
|
3916
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.NavigationTransitionInfo
|
|
3917
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISuppressNavigationTransitionInfo
|
|
3918
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SuppressNavigationTransitionInfo'
|
|
3919
|
+
def __init__(self, *args, **kwargs):
|
|
3920
|
+
if kwargs:
|
|
3921
|
+
super().__init__(**kwargs)
|
|
3922
|
+
elif len(args) == 0:
|
|
3923
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SuppressNavigationTransitionInfo.CreateInstance(*args))
|
|
3924
|
+
else:
|
|
3925
|
+
raise ValueError('no matched constructor')
|
|
3926
|
+
@winrt_activatemethod
|
|
3927
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SuppressNavigationTransitionInfo: ...
|
|
3928
|
+
class _SwipeBackThemeAnimation_Meta_(ComPtr.__class__):
|
|
3929
|
+
pass
|
|
3930
|
+
class SwipeBackThemeAnimation(ComPtr, metaclass=_SwipeBackThemeAnimation_Meta_):
|
|
3931
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3932
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation
|
|
3933
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SwipeBackThemeAnimation'
|
|
3934
|
+
def __init__(self, *args, **kwargs):
|
|
3935
|
+
if kwargs:
|
|
3936
|
+
super().__init__(**kwargs)
|
|
3937
|
+
elif len(args) == 0:
|
|
3938
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SwipeBackThemeAnimation.CreateInstance(*args))
|
|
3939
|
+
else:
|
|
3940
|
+
raise ValueError('no matched constructor')
|
|
3941
|
+
@winrt_activatemethod
|
|
3942
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SwipeBackThemeAnimation: ...
|
|
3943
|
+
@winrt_mixinmethod
|
|
3944
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation) -> WinRT_String: ...
|
|
3945
|
+
@winrt_mixinmethod
|
|
3946
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3947
|
+
@winrt_mixinmethod
|
|
3948
|
+
def get_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation) -> Double: ...
|
|
3949
|
+
@winrt_mixinmethod
|
|
3950
|
+
def put_FromHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation, value: Double) -> Void: ...
|
|
3951
|
+
@winrt_mixinmethod
|
|
3952
|
+
def get_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation) -> Double: ...
|
|
3953
|
+
@winrt_mixinmethod
|
|
3954
|
+
def put_FromVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimation, value: Double) -> Void: ...
|
|
3955
|
+
@winrt_classmethod
|
|
3956
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3957
|
+
@winrt_classmethod
|
|
3958
|
+
def get_FromHorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3959
|
+
@winrt_classmethod
|
|
3960
|
+
def get_FromVerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeBackThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3961
|
+
FromHorizontalOffset = property(get_FromHorizontalOffset, put_FromHorizontalOffset)
|
|
3962
|
+
FromVerticalOffset = property(get_FromVerticalOffset, put_FromVerticalOffset)
|
|
3963
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
3964
|
+
_SwipeBackThemeAnimation_Meta_.FromHorizontalOffsetProperty = property(get_FromHorizontalOffsetProperty, None)
|
|
3965
|
+
_SwipeBackThemeAnimation_Meta_.FromVerticalOffsetProperty = property(get_FromVerticalOffsetProperty, None)
|
|
3966
|
+
_SwipeBackThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
3967
|
+
class _SwipeHintThemeAnimation_Meta_(ComPtr.__class__):
|
|
3968
|
+
pass
|
|
3969
|
+
class SwipeHintThemeAnimation(ComPtr, metaclass=_SwipeHintThemeAnimation_Meta_):
|
|
3970
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline
|
|
3971
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation
|
|
3972
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.SwipeHintThemeAnimation'
|
|
3973
|
+
def __init__(self, *args, **kwargs):
|
|
3974
|
+
if kwargs:
|
|
3975
|
+
super().__init__(**kwargs)
|
|
3976
|
+
elif len(args) == 0:
|
|
3977
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.SwipeHintThemeAnimation.CreateInstance(*args))
|
|
3978
|
+
else:
|
|
3979
|
+
raise ValueError('no matched constructor')
|
|
3980
|
+
@winrt_activatemethod
|
|
3981
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.SwipeHintThemeAnimation: ...
|
|
3982
|
+
@winrt_mixinmethod
|
|
3983
|
+
def get_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation) -> WinRT_String: ...
|
|
3984
|
+
@winrt_mixinmethod
|
|
3985
|
+
def put_TargetName(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation, value: WinRT_String) -> Void: ...
|
|
3986
|
+
@winrt_mixinmethod
|
|
3987
|
+
def get_ToHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation) -> Double: ...
|
|
3988
|
+
@winrt_mixinmethod
|
|
3989
|
+
def put_ToHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation, value: Double) -> Void: ...
|
|
3990
|
+
@winrt_mixinmethod
|
|
3991
|
+
def get_ToVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation) -> Double: ...
|
|
3992
|
+
@winrt_mixinmethod
|
|
3993
|
+
def put_ToVerticalOffset(self: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimation, value: Double) -> Void: ...
|
|
3994
|
+
@winrt_classmethod
|
|
3995
|
+
def get_TargetNameProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3996
|
+
@winrt_classmethod
|
|
3997
|
+
def get_ToHorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3998
|
+
@winrt_classmethod
|
|
3999
|
+
def get_ToVerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ISwipeHintThemeAnimationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
4000
|
+
TargetName = property(get_TargetName, put_TargetName)
|
|
4001
|
+
ToHorizontalOffset = property(get_ToHorizontalOffset, put_ToHorizontalOffset)
|
|
4002
|
+
ToVerticalOffset = property(get_ToVerticalOffset, put_ToVerticalOffset)
|
|
4003
|
+
_SwipeHintThemeAnimation_Meta_.TargetNameProperty = property(get_TargetNameProperty, None)
|
|
4004
|
+
_SwipeHintThemeAnimation_Meta_.ToHorizontalOffsetProperty = property(get_ToHorizontalOffsetProperty, None)
|
|
4005
|
+
_SwipeHintThemeAnimation_Meta_.ToVerticalOffsetProperty = property(get_ToVerticalOffsetProperty, None)
|
|
4006
|
+
class _Timeline_Meta_(ComPtr.__class__):
|
|
4007
|
+
pass
|
|
4008
|
+
class Timeline(ComPtr, metaclass=_Timeline_Meta_):
|
|
4009
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
4010
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline
|
|
4011
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.Timeline'
|
|
4012
|
+
def __init__(self, *args, **kwargs):
|
|
4013
|
+
if kwargs:
|
|
4014
|
+
super().__init__(**kwargs)
|
|
4015
|
+
elif len(args) == 0:
|
|
4016
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.Timeline.CreateInstance(*args, None, None))
|
|
4017
|
+
else:
|
|
4018
|
+
raise ValueError('no matched constructor')
|
|
4019
|
+
@winrt_factorymethod
|
|
4020
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Animation.Timeline: ...
|
|
4021
|
+
@winrt_mixinmethod
|
|
4022
|
+
def get_AutoReverse(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline) -> Boolean: ...
|
|
4023
|
+
@winrt_mixinmethod
|
|
4024
|
+
def put_AutoReverse(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, value: Boolean) -> Void: ...
|
|
4025
|
+
@winrt_mixinmethod
|
|
4026
|
+
def get_BeginTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.TimeSpan]: ...
|
|
4027
|
+
@winrt_mixinmethod
|
|
4028
|
+
def put_BeginTime(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.TimeSpan]) -> Void: ...
|
|
4029
|
+
@winrt_mixinmethod
|
|
4030
|
+
def get_Duration(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline) -> win32more.Microsoft.UI.Xaml.Duration: ...
|
|
4031
|
+
@winrt_mixinmethod
|
|
4032
|
+
def put_Duration(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, value: win32more.Microsoft.UI.Xaml.Duration) -> Void: ...
|
|
4033
|
+
@winrt_mixinmethod
|
|
4034
|
+
def get_SpeedRatio(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline) -> Double: ...
|
|
4035
|
+
@winrt_mixinmethod
|
|
4036
|
+
def put_SpeedRatio(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, value: Double) -> Void: ...
|
|
4037
|
+
@winrt_mixinmethod
|
|
4038
|
+
def get_FillBehavior(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline) -> win32more.Microsoft.UI.Xaml.Media.Animation.FillBehavior: ...
|
|
4039
|
+
@winrt_mixinmethod
|
|
4040
|
+
def put_FillBehavior(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, value: win32more.Microsoft.UI.Xaml.Media.Animation.FillBehavior) -> Void: ...
|
|
4041
|
+
@winrt_mixinmethod
|
|
4042
|
+
def get_RepeatBehavior(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline) -> win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior: ...
|
|
4043
|
+
@winrt_mixinmethod
|
|
4044
|
+
def put_RepeatBehavior(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, value: win32more.Microsoft.UI.Xaml.Media.Animation.RepeatBehavior) -> Void: ...
|
|
4045
|
+
@winrt_mixinmethod
|
|
4046
|
+
def add_Completed(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, handler: win32more.Windows.Foundation.EventHandler[IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
4047
|
+
@winrt_mixinmethod
|
|
4048
|
+
def remove_Completed(self: win32more.Microsoft.UI.Xaml.Media.Animation.ITimeline, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
4049
|
+
@winrt_classmethod
|
|
4050
|
+
def get_AllowDependentAnimations(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics) -> Boolean: ...
|
|
4051
|
+
@winrt_classmethod
|
|
4052
|
+
def put_AllowDependentAnimations(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics, value: Boolean) -> Void: ...
|
|
4053
|
+
@winrt_classmethod
|
|
4054
|
+
def get_AutoReverseProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
4055
|
+
@winrt_classmethod
|
|
4056
|
+
def get_BeginTimeProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
4057
|
+
@winrt_classmethod
|
|
4058
|
+
def get_DurationProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
4059
|
+
@winrt_classmethod
|
|
4060
|
+
def get_SpeedRatioProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
4061
|
+
@winrt_classmethod
|
|
4062
|
+
def get_FillBehaviorProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
4063
|
+
@winrt_classmethod
|
|
4064
|
+
def get_RepeatBehaviorProperty(cls: win32more.Microsoft.UI.Xaml.Media.Animation.ITimelineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
4065
|
+
AutoReverse = property(get_AutoReverse, put_AutoReverse)
|
|
4066
|
+
BeginTime = property(get_BeginTime, put_BeginTime)
|
|
4067
|
+
Duration = property(get_Duration, put_Duration)
|
|
4068
|
+
FillBehavior = property(get_FillBehavior, put_FillBehavior)
|
|
4069
|
+
RepeatBehavior = property(get_RepeatBehavior, put_RepeatBehavior)
|
|
4070
|
+
SpeedRatio = property(get_SpeedRatio, put_SpeedRatio)
|
|
4071
|
+
_Timeline_Meta_.AllowDependentAnimations = property(get_AllowDependentAnimations, put_AllowDependentAnimations)
|
|
4072
|
+
_Timeline_Meta_.AutoReverseProperty = property(get_AutoReverseProperty, None)
|
|
4073
|
+
_Timeline_Meta_.BeginTimeProperty = property(get_BeginTimeProperty, None)
|
|
4074
|
+
_Timeline_Meta_.DurationProperty = property(get_DurationProperty, None)
|
|
4075
|
+
_Timeline_Meta_.FillBehaviorProperty = property(get_FillBehaviorProperty, None)
|
|
4076
|
+
_Timeline_Meta_.RepeatBehaviorProperty = property(get_RepeatBehaviorProperty, None)
|
|
4077
|
+
_Timeline_Meta_.SpeedRatioProperty = property(get_SpeedRatioProperty, None)
|
|
4078
|
+
Completed = event()
|
|
4079
|
+
class TimelineCollection(ComPtr):
|
|
4080
|
+
extends: IInspectable
|
|
4081
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]]
|
|
4082
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]
|
|
4083
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.TimelineCollection'
|
|
4084
|
+
def __init__(self, *args, **kwargs):
|
|
4085
|
+
if kwargs:
|
|
4086
|
+
super().__init__(**kwargs)
|
|
4087
|
+
elif len(args) == 0:
|
|
4088
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.TimelineCollection.CreateInstance(*args))
|
|
4089
|
+
else:
|
|
4090
|
+
raise ValueError('no matched constructor')
|
|
4091
|
+
@winrt_activatemethod
|
|
4092
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.TimelineCollection: ...
|
|
4093
|
+
@winrt_mixinmethod
|
|
4094
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Animation.Timeline: ...
|
|
4095
|
+
@winrt_mixinmethod
|
|
4096
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]) -> UInt32: ...
|
|
4097
|
+
@winrt_mixinmethod
|
|
4098
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]: ...
|
|
4099
|
+
@winrt_mixinmethod
|
|
4100
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], value: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline, index: POINTER(UInt32)) -> Boolean: ...
|
|
4101
|
+
@winrt_mixinmethod
|
|
4102
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline) -> Void: ...
|
|
4103
|
+
@winrt_mixinmethod
|
|
4104
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline) -> Void: ...
|
|
4105
|
+
@winrt_mixinmethod
|
|
4106
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], index: UInt32) -> Void: ...
|
|
4107
|
+
@winrt_mixinmethod
|
|
4108
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], value: win32more.Microsoft.UI.Xaml.Media.Animation.Timeline) -> Void: ...
|
|
4109
|
+
@winrt_mixinmethod
|
|
4110
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]) -> Void: ...
|
|
4111
|
+
@winrt_mixinmethod
|
|
4112
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]) -> Void: ...
|
|
4113
|
+
@winrt_mixinmethod
|
|
4114
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]) -> UInt32: ...
|
|
4115
|
+
@winrt_mixinmethod
|
|
4116
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]) -> Void: ...
|
|
4117
|
+
@winrt_mixinmethod
|
|
4118
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Animation.Timeline]: ...
|
|
4119
|
+
Size = property(get_Size, None)
|
|
4120
|
+
class Transition(ComPtr):
|
|
4121
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
4122
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.Animation.ITransition
|
|
4123
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.Transition'
|
|
4124
|
+
class TransitionCollection(ComPtr):
|
|
4125
|
+
extends: IInspectable
|
|
4126
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]]
|
|
4127
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]
|
|
4128
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Animation.TransitionCollection'
|
|
4129
|
+
def __init__(self, *args, **kwargs):
|
|
4130
|
+
if kwargs:
|
|
4131
|
+
super().__init__(**kwargs)
|
|
4132
|
+
elif len(args) == 0:
|
|
4133
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Animation.TransitionCollection.CreateInstance(*args))
|
|
4134
|
+
else:
|
|
4135
|
+
raise ValueError('no matched constructor')
|
|
4136
|
+
@winrt_activatemethod
|
|
4137
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Animation.TransitionCollection: ...
|
|
4138
|
+
@winrt_mixinmethod
|
|
4139
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Animation.Transition: ...
|
|
4140
|
+
@winrt_mixinmethod
|
|
4141
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]) -> UInt32: ...
|
|
4142
|
+
@winrt_mixinmethod
|
|
4143
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]: ...
|
|
4144
|
+
@winrt_mixinmethod
|
|
4145
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], value: win32more.Microsoft.UI.Xaml.Media.Animation.Transition, index: POINTER(UInt32)) -> Boolean: ...
|
|
4146
|
+
@winrt_mixinmethod
|
|
4147
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.Transition) -> Void: ...
|
|
4148
|
+
@winrt_mixinmethod
|
|
4149
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Animation.Transition) -> Void: ...
|
|
4150
|
+
@winrt_mixinmethod
|
|
4151
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], index: UInt32) -> Void: ...
|
|
4152
|
+
@winrt_mixinmethod
|
|
4153
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], value: win32more.Microsoft.UI.Xaml.Media.Animation.Transition) -> Void: ...
|
|
4154
|
+
@winrt_mixinmethod
|
|
4155
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]) -> Void: ...
|
|
4156
|
+
@winrt_mixinmethod
|
|
4157
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]) -> Void: ...
|
|
4158
|
+
@winrt_mixinmethod
|
|
4159
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]) -> UInt32: ...
|
|
4160
|
+
@winrt_mixinmethod
|
|
4161
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Animation.Transition], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]) -> Void: ...
|
|
4162
|
+
@winrt_mixinmethod
|
|
4163
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Animation.Transition]: ...
|
|
4164
|
+
Size = property(get_Size, None)
|
|
4165
|
+
|
|
4166
|
+
|
|
4167
|
+
make_ready(__name__)
|