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.

Files changed (66) hide show
  1. win32more/Microsoft/Foundation/__init__.py +7 -0
  2. win32more/Microsoft/Graphics/DirectX/__init__.py +167 -0
  3. win32more/Microsoft/Graphics/Display/__init__.py +174 -0
  4. win32more/Microsoft/UI/Composition/Core/__init__.py +52 -0
  5. win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +63 -0
  6. win32more/Microsoft/UI/Composition/Effects/__init__.py +96 -0
  7. win32more/Microsoft/UI/Composition/Interactions/__init__.py +951 -0
  8. win32more/Microsoft/UI/Composition/Scenes/__init__.py +671 -0
  9. win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +356 -0
  10. win32more/Microsoft/UI/Composition/__init__.py +4793 -0
  11. win32more/Microsoft/UI/Content/__init__.py +918 -0
  12. win32more/Microsoft/UI/Dispatching/__init__.py +241 -0
  13. win32more/Microsoft/UI/Input/DragDrop/__init__.py +235 -0
  14. win32more/Microsoft/UI/Input/Interop/__init__.py +19 -0
  15. win32more/Microsoft/UI/Input/__init__.py +1927 -0
  16. win32more/Microsoft/UI/System/__init__.py +46 -0
  17. win32more/Microsoft/UI/Text/__init__.py +1090 -0
  18. win32more/Microsoft/UI/Windowing/__init__.py +877 -0
  19. win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +3414 -0
  20. win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py +489 -0
  21. win32more/Microsoft/UI/Xaml/Automation/Text/__init__.py +17 -0
  22. win32more/Microsoft/UI/Xaml/Automation/__init__.py +1607 -0
  23. win32more/Microsoft/UI/Xaml/Controls/AnimatedVisuals/__init__.py +170 -0
  24. win32more/Microsoft/UI/Xaml/Controls/Primitives/__init__.py +6458 -0
  25. win32more/Microsoft/UI/Xaml/Controls/__init__.py +31159 -0
  26. win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +7 -0
  27. win32more/Microsoft/UI/Xaml/Data/__init__.py +670 -0
  28. win32more/Microsoft/UI/Xaml/Documents/__init__.py +2030 -0
  29. win32more/Microsoft/UI/Xaml/Hosting/__init__.py +329 -0
  30. win32more/Microsoft/UI/Xaml/Input/__init__.py +1985 -0
  31. win32more/Microsoft/UI/Xaml/Interop/__init__.py +148 -0
  32. win32more/Microsoft/UI/Xaml/Markup/__init__.py +391 -0
  33. win32more/Microsoft/UI/Xaml/Media/Animation/__init__.py +4167 -0
  34. win32more/Microsoft/UI/Xaml/Media/Imaging/__init__.py +632 -0
  35. win32more/Microsoft/UI/Xaml/Media/Media3D/__init__.py +373 -0
  36. win32more/Microsoft/UI/Xaml/Media/__init__.py +3510 -0
  37. win32more/Microsoft/UI/Xaml/Navigation/__init__.py +255 -0
  38. win32more/Microsoft/UI/Xaml/Printing/__init__.py +193 -0
  39. win32more/Microsoft/UI/Xaml/Resources/__init__.py +53 -0
  40. win32more/Microsoft/UI/Xaml/Shapes/__init__.py +538 -0
  41. win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py +39 -0
  42. win32more/Microsoft/UI/Xaml/__init__.py +6010 -0
  43. win32more/Microsoft/UI/__init__.py +912 -0
  44. win32more/Microsoft/Web/WebView2/Core/__init__.py +4685 -0
  45. win32more/Microsoft/Windows/AppLifecycle/__init__.py +180 -0
  46. win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +572 -0
  47. win32more/Microsoft/Windows/AppNotifications/__init__.py +333 -0
  48. win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py +244 -0
  49. win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +322 -0
  50. win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +114 -0
  51. win32more/Microsoft/Windows/Management/Deployment/__init__.py +1114 -0
  52. win32more/Microsoft/Windows/PushNotifications/__init__.py +146 -0
  53. win32more/Microsoft/Windows/Security/AccessControl/__init__.py +25 -0
  54. win32more/Microsoft/Windows/System/Power/__init__.py +223 -0
  55. win32more/Microsoft/Windows/System/__init__.py +78 -0
  56. win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +181 -0
  57. win32more/Microsoft/Windows/Widgets/Providers/__init__.py +325 -0
  58. win32more/Microsoft/Windows/Widgets/__init__.py +11 -0
  59. win32more/appsdk/versioninfo.py +3 -0
  60. win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  61. win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  62. win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  63. win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/METADATA +5 -0
  64. win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/RECORD +66 -0
  65. win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/WHEEL +5 -0
  66. win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +90 -0
@@ -0,0 +1,670 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.UI.Xaml
4
+ import win32more.Microsoft.UI.Xaml.Data
5
+ import win32more.Windows.Foundation
6
+ import win32more.Windows.Foundation.Collections
7
+ import win32more.Windows.UI.Xaml.Interop
8
+ class Binding(ComPtr):
9
+ extends: win32more.Microsoft.UI.Xaml.Data.BindingBase
10
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IBinding
11
+ _classid_ = 'Microsoft.UI.Xaml.Data.Binding'
12
+ def __init__(self, *args, **kwargs):
13
+ if kwargs:
14
+ super().__init__(**kwargs)
15
+ elif len(args) == 0:
16
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.Binding.CreateInstance(*args, None, None))
17
+ else:
18
+ raise ValueError('no matched constructor')
19
+ @winrt_factorymethod
20
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Data.IBindingFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.Binding: ...
21
+ @winrt_mixinmethod
22
+ def get_Path(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> win32more.Microsoft.UI.Xaml.PropertyPath: ...
23
+ @winrt_mixinmethod
24
+ def put_Path(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: win32more.Microsoft.UI.Xaml.PropertyPath) -> Void: ...
25
+ @winrt_mixinmethod
26
+ def get_Mode(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> win32more.Microsoft.UI.Xaml.Data.BindingMode: ...
27
+ @winrt_mixinmethod
28
+ def put_Mode(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: win32more.Microsoft.UI.Xaml.Data.BindingMode) -> Void: ...
29
+ @winrt_mixinmethod
30
+ def get_Source(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> IInspectable: ...
31
+ @winrt_mixinmethod
32
+ def put_Source(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: IInspectable) -> Void: ...
33
+ @winrt_mixinmethod
34
+ def get_RelativeSource(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> win32more.Microsoft.UI.Xaml.Data.RelativeSource: ...
35
+ @winrt_mixinmethod
36
+ def put_RelativeSource(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: win32more.Microsoft.UI.Xaml.Data.RelativeSource) -> Void: ...
37
+ @winrt_mixinmethod
38
+ def get_ElementName(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> WinRT_String: ...
39
+ @winrt_mixinmethod
40
+ def put_ElementName(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: WinRT_String) -> Void: ...
41
+ @winrt_mixinmethod
42
+ def get_Converter(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> win32more.Microsoft.UI.Xaml.Data.IValueConverter: ...
43
+ @winrt_mixinmethod
44
+ def put_Converter(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: win32more.Microsoft.UI.Xaml.Data.IValueConverter) -> Void: ...
45
+ @winrt_mixinmethod
46
+ def get_ConverterParameter(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> IInspectable: ...
47
+ @winrt_mixinmethod
48
+ def put_ConverterParameter(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: IInspectable) -> Void: ...
49
+ @winrt_mixinmethod
50
+ def get_ConverterLanguage(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> WinRT_String: ...
51
+ @winrt_mixinmethod
52
+ def put_ConverterLanguage(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: WinRT_String) -> Void: ...
53
+ @winrt_mixinmethod
54
+ def get_FallbackValue(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> IInspectable: ...
55
+ @winrt_mixinmethod
56
+ def put_FallbackValue(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: IInspectable) -> Void: ...
57
+ @winrt_mixinmethod
58
+ def get_TargetNullValue(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> IInspectable: ...
59
+ @winrt_mixinmethod
60
+ def put_TargetNullValue(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: IInspectable) -> Void: ...
61
+ @winrt_mixinmethod
62
+ def get_UpdateSourceTrigger(self: win32more.Microsoft.UI.Xaml.Data.IBinding) -> win32more.Microsoft.UI.Xaml.Data.UpdateSourceTrigger: ...
63
+ @winrt_mixinmethod
64
+ def put_UpdateSourceTrigger(self: win32more.Microsoft.UI.Xaml.Data.IBinding, value: win32more.Microsoft.UI.Xaml.Data.UpdateSourceTrigger) -> Void: ...
65
+ Converter = property(get_Converter, put_Converter)
66
+ ConverterLanguage = property(get_ConverterLanguage, put_ConverterLanguage)
67
+ ConverterParameter = property(get_ConverterParameter, put_ConverterParameter)
68
+ ElementName = property(get_ElementName, put_ElementName)
69
+ FallbackValue = property(get_FallbackValue, put_FallbackValue)
70
+ Mode = property(get_Mode, put_Mode)
71
+ Path = property(get_Path, put_Path)
72
+ RelativeSource = property(get_RelativeSource, put_RelativeSource)
73
+ Source = property(get_Source, put_Source)
74
+ TargetNullValue = property(get_TargetNullValue, put_TargetNullValue)
75
+ UpdateSourceTrigger = property(get_UpdateSourceTrigger, put_UpdateSourceTrigger)
76
+ class BindingBase(ComPtr):
77
+ extends: win32more.Microsoft.UI.Xaml.DependencyObject
78
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IBindingBase
79
+ _classid_ = 'Microsoft.UI.Xaml.Data.BindingBase'
80
+ def __init__(self, *args, **kwargs):
81
+ if kwargs:
82
+ super().__init__(**kwargs)
83
+ elif len(args) == 0:
84
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.BindingBase.CreateInstance(*args, None, None))
85
+ else:
86
+ raise ValueError('no matched constructor')
87
+ @winrt_factorymethod
88
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Data.IBindingBaseFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.BindingBase: ...
89
+ class BindingExpression(ComPtr):
90
+ extends: win32more.Microsoft.UI.Xaml.Data.BindingExpressionBase
91
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IBindingExpression
92
+ _classid_ = 'Microsoft.UI.Xaml.Data.BindingExpression'
93
+ @winrt_mixinmethod
94
+ def get_DataItem(self: win32more.Microsoft.UI.Xaml.Data.IBindingExpression) -> IInspectable: ...
95
+ @winrt_mixinmethod
96
+ def get_ParentBinding(self: win32more.Microsoft.UI.Xaml.Data.IBindingExpression) -> win32more.Microsoft.UI.Xaml.Data.Binding: ...
97
+ @winrt_mixinmethod
98
+ def UpdateSource(self: win32more.Microsoft.UI.Xaml.Data.IBindingExpression) -> Void: ...
99
+ DataItem = property(get_DataItem, None)
100
+ ParentBinding = property(get_ParentBinding, None)
101
+ class BindingExpressionBase(ComPtr):
102
+ extends: IInspectable
103
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IBindingExpressionBase
104
+ _classid_ = 'Microsoft.UI.Xaml.Data.BindingExpressionBase'
105
+ class BindingMode(Enum, Int32):
106
+ OneWay = 1
107
+ OneTime = 2
108
+ TwoWay = 3
109
+ class BindingOperations(ComPtr):
110
+ extends: IInspectable
111
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IBindingOperations
112
+ _classid_ = 'Microsoft.UI.Xaml.Data.BindingOperations'
113
+ @winrt_classmethod
114
+ def SetBinding(cls: win32more.Microsoft.UI.Xaml.Data.IBindingOperationsStatics, target: win32more.Microsoft.UI.Xaml.DependencyObject, dp: win32more.Microsoft.UI.Xaml.DependencyProperty, binding: win32more.Microsoft.UI.Xaml.Data.BindingBase) -> Void: ...
115
+ class _CollectionViewSource_Meta_(ComPtr.__class__):
116
+ pass
117
+ class CollectionViewSource(ComPtr, metaclass=_CollectionViewSource_Meta_):
118
+ extends: win32more.Microsoft.UI.Xaml.DependencyObject
119
+ default_interface: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource
120
+ _classid_ = 'Microsoft.UI.Xaml.Data.CollectionViewSource'
121
+ def __init__(self, *args, **kwargs):
122
+ if kwargs:
123
+ super().__init__(**kwargs)
124
+ elif len(args) == 0:
125
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.CollectionViewSource.CreateInstance(*args))
126
+ else:
127
+ raise ValueError('no matched constructor')
128
+ @winrt_activatemethod
129
+ def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Data.CollectionViewSource: ...
130
+ @winrt_mixinmethod
131
+ def get_Source(self: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource) -> IInspectable: ...
132
+ @winrt_mixinmethod
133
+ def put_Source(self: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource, value: IInspectable) -> Void: ...
134
+ @winrt_mixinmethod
135
+ def get_View(self: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource) -> win32more.Microsoft.UI.Xaml.Data.ICollectionView: ...
136
+ @winrt_mixinmethod
137
+ def get_IsSourceGrouped(self: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource) -> Boolean: ...
138
+ @winrt_mixinmethod
139
+ def put_IsSourceGrouped(self: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource, value: Boolean) -> Void: ...
140
+ @winrt_mixinmethod
141
+ def get_ItemsPath(self: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource) -> win32more.Microsoft.UI.Xaml.PropertyPath: ...
142
+ @winrt_mixinmethod
143
+ def put_ItemsPath(self: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSource, value: win32more.Microsoft.UI.Xaml.PropertyPath) -> Void: ...
144
+ @winrt_classmethod
145
+ def get_SourceProperty(cls: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSourceStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
146
+ @winrt_classmethod
147
+ def get_ViewProperty(cls: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSourceStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
148
+ @winrt_classmethod
149
+ def get_IsSourceGroupedProperty(cls: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSourceStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
150
+ @winrt_classmethod
151
+ def get_ItemsPathProperty(cls: win32more.Microsoft.UI.Xaml.Data.ICollectionViewSourceStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
152
+ IsSourceGrouped = property(get_IsSourceGrouped, put_IsSourceGrouped)
153
+ ItemsPath = property(get_ItemsPath, put_ItemsPath)
154
+ Source = property(get_Source, put_Source)
155
+ View = property(get_View, None)
156
+ _CollectionViewSource_Meta_.IsSourceGroupedProperty = property(get_IsSourceGroupedProperty, None)
157
+ _CollectionViewSource_Meta_.ItemsPathProperty = property(get_ItemsPathProperty, None)
158
+ _CollectionViewSource_Meta_.SourceProperty = property(get_SourceProperty, None)
159
+ _CollectionViewSource_Meta_.ViewProperty = property(get_ViewProperty, None)
160
+ class CurrentChangingEventArgs(ComPtr):
161
+ extends: IInspectable
162
+ default_interface: win32more.Microsoft.UI.Xaml.Data.ICurrentChangingEventArgs
163
+ _classid_ = 'Microsoft.UI.Xaml.Data.CurrentChangingEventArgs'
164
+ def __init__(self, *args, **kwargs):
165
+ if kwargs:
166
+ super().__init__(**kwargs)
167
+ elif len(args) == 0:
168
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventArgs.CreateInstance(*args, None, None))
169
+ elif len(args) == 1:
170
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventArgs.CreateWithCancelableParameter(*args, None, None))
171
+ else:
172
+ raise ValueError('no matched constructor')
173
+ @winrt_factorymethod
174
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Data.ICurrentChangingEventArgsFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventArgs: ...
175
+ @winrt_factorymethod
176
+ def CreateWithCancelableParameter(cls: win32more.Microsoft.UI.Xaml.Data.ICurrentChangingEventArgsFactory, isCancelable: Boolean, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventArgs: ...
177
+ @winrt_mixinmethod
178
+ def get_Cancel(self: win32more.Microsoft.UI.Xaml.Data.ICurrentChangingEventArgs) -> Boolean: ...
179
+ @winrt_mixinmethod
180
+ def put_Cancel(self: win32more.Microsoft.UI.Xaml.Data.ICurrentChangingEventArgs, value: Boolean) -> Void: ...
181
+ @winrt_mixinmethod
182
+ def get_IsCancelable(self: win32more.Microsoft.UI.Xaml.Data.ICurrentChangingEventArgs) -> Boolean: ...
183
+ Cancel = property(get_Cancel, put_Cancel)
184
+ IsCancelable = property(get_IsCancelable, None)
185
+ class CurrentChangingEventHandler(MulticastDelegate):
186
+ extends: IUnknown
187
+ _iid_ = Guid('{3d2a98dd-95b3-5fd5-93b4-a1a2599f225c}')
188
+ @winrt_commethod(3)
189
+ def Invoke(self, sender: IInspectable, e: win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventArgs) -> Void: ...
190
+ class DataErrorsChangedEventArgs(ComPtr):
191
+ extends: IInspectable
192
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IDataErrorsChangedEventArgs
193
+ _classid_ = 'Microsoft.UI.Xaml.Data.DataErrorsChangedEventArgs'
194
+ def __init__(self, *args, **kwargs):
195
+ if kwargs:
196
+ super().__init__(**kwargs)
197
+ elif len(args) == 1:
198
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.DataErrorsChangedEventArgs.CreateInstance(*args))
199
+ else:
200
+ raise ValueError('no matched constructor')
201
+ @winrt_factorymethod
202
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Data.IDataErrorsChangedEventArgsFactory, name: WinRT_String) -> win32more.Microsoft.UI.Xaml.Data.DataErrorsChangedEventArgs: ...
203
+ @winrt_mixinmethod
204
+ def get_PropertyName(self: win32more.Microsoft.UI.Xaml.Data.IDataErrorsChangedEventArgs) -> WinRT_String: ...
205
+ @winrt_mixinmethod
206
+ def put_PropertyName(self: win32more.Microsoft.UI.Xaml.Data.IDataErrorsChangedEventArgs, value: WinRT_String) -> Void: ...
207
+ PropertyName = property(get_PropertyName, put_PropertyName)
208
+ class IBinding(ComPtr):
209
+ extends: IInspectable
210
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBinding'
211
+ _iid_ = Guid('{501ea0e8-edd4-59de-8845-76af2eabbe00}')
212
+ @winrt_commethod(6)
213
+ def get_Path(self) -> win32more.Microsoft.UI.Xaml.PropertyPath: ...
214
+ @winrt_commethod(7)
215
+ def put_Path(self, value: win32more.Microsoft.UI.Xaml.PropertyPath) -> Void: ...
216
+ @winrt_commethod(8)
217
+ def get_Mode(self) -> win32more.Microsoft.UI.Xaml.Data.BindingMode: ...
218
+ @winrt_commethod(9)
219
+ def put_Mode(self, value: win32more.Microsoft.UI.Xaml.Data.BindingMode) -> Void: ...
220
+ @winrt_commethod(10)
221
+ def get_Source(self) -> IInspectable: ...
222
+ @winrt_commethod(11)
223
+ def put_Source(self, value: IInspectable) -> Void: ...
224
+ @winrt_commethod(12)
225
+ def get_RelativeSource(self) -> win32more.Microsoft.UI.Xaml.Data.RelativeSource: ...
226
+ @winrt_commethod(13)
227
+ def put_RelativeSource(self, value: win32more.Microsoft.UI.Xaml.Data.RelativeSource) -> Void: ...
228
+ @winrt_commethod(14)
229
+ def get_ElementName(self) -> WinRT_String: ...
230
+ @winrt_commethod(15)
231
+ def put_ElementName(self, value: WinRT_String) -> Void: ...
232
+ @winrt_commethod(16)
233
+ def get_Converter(self) -> win32more.Microsoft.UI.Xaml.Data.IValueConverter: ...
234
+ @winrt_commethod(17)
235
+ def put_Converter(self, value: win32more.Microsoft.UI.Xaml.Data.IValueConverter) -> Void: ...
236
+ @winrt_commethod(18)
237
+ def get_ConverterParameter(self) -> IInspectable: ...
238
+ @winrt_commethod(19)
239
+ def put_ConverterParameter(self, value: IInspectable) -> Void: ...
240
+ @winrt_commethod(20)
241
+ def get_ConverterLanguage(self) -> WinRT_String: ...
242
+ @winrt_commethod(21)
243
+ def put_ConverterLanguage(self, value: WinRT_String) -> Void: ...
244
+ @winrt_commethod(22)
245
+ def get_FallbackValue(self) -> IInspectable: ...
246
+ @winrt_commethod(23)
247
+ def put_FallbackValue(self, value: IInspectable) -> Void: ...
248
+ @winrt_commethod(24)
249
+ def get_TargetNullValue(self) -> IInspectable: ...
250
+ @winrt_commethod(25)
251
+ def put_TargetNullValue(self, value: IInspectable) -> Void: ...
252
+ @winrt_commethod(26)
253
+ def get_UpdateSourceTrigger(self) -> win32more.Microsoft.UI.Xaml.Data.UpdateSourceTrigger: ...
254
+ @winrt_commethod(27)
255
+ def put_UpdateSourceTrigger(self, value: win32more.Microsoft.UI.Xaml.Data.UpdateSourceTrigger) -> Void: ...
256
+ Converter = property(get_Converter, put_Converter)
257
+ ConverterLanguage = property(get_ConverterLanguage, put_ConverterLanguage)
258
+ ConverterParameter = property(get_ConverterParameter, put_ConverterParameter)
259
+ ElementName = property(get_ElementName, put_ElementName)
260
+ FallbackValue = property(get_FallbackValue, put_FallbackValue)
261
+ Mode = property(get_Mode, put_Mode)
262
+ Path = property(get_Path, put_Path)
263
+ RelativeSource = property(get_RelativeSource, put_RelativeSource)
264
+ Source = property(get_Source, put_Source)
265
+ TargetNullValue = property(get_TargetNullValue, put_TargetNullValue)
266
+ UpdateSourceTrigger = property(get_UpdateSourceTrigger, put_UpdateSourceTrigger)
267
+ class IBindingBase(ComPtr):
268
+ extends: IInspectable
269
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingBase'
270
+ _iid_ = Guid('{91ddd141-5944-50ef-b85e-218e463f7a73}')
271
+ class IBindingBaseFactory(ComPtr):
272
+ extends: IInspectable
273
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingBaseFactory'
274
+ _iid_ = Guid('{c8a866c5-f6f3-5f7a-9592-d385af48bd8f}')
275
+ @winrt_commethod(6)
276
+ def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.BindingBase: ...
277
+ class IBindingExpression(ComPtr):
278
+ extends: IInspectable
279
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingExpression'
280
+ _iid_ = Guid('{4c023916-37bc-5b07-bc9d-15c547bd9b26}')
281
+ @winrt_commethod(6)
282
+ def get_DataItem(self) -> IInspectable: ...
283
+ @winrt_commethod(7)
284
+ def get_ParentBinding(self) -> win32more.Microsoft.UI.Xaml.Data.Binding: ...
285
+ @winrt_commethod(8)
286
+ def UpdateSource(self) -> Void: ...
287
+ DataItem = property(get_DataItem, None)
288
+ ParentBinding = property(get_ParentBinding, None)
289
+ class IBindingExpressionBase(ComPtr):
290
+ extends: IInspectable
291
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingExpressionBase'
292
+ _iid_ = Guid('{8825e5a9-d9a3-5e87-bcd8-c63133d29029}')
293
+ class IBindingExpressionBaseFactory(ComPtr):
294
+ extends: IInspectable
295
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingExpressionBaseFactory'
296
+ _iid_ = Guid('{41d643b9-2629-5451-a716-596c0848b5dc}')
297
+ class IBindingExpressionFactory(ComPtr):
298
+ extends: IInspectable
299
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingExpressionFactory'
300
+ _iid_ = Guid('{086cae14-81a1-588b-b619-05ee84c0f089}')
301
+ class IBindingFactory(ComPtr):
302
+ extends: IInspectable
303
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingFactory'
304
+ _iid_ = Guid('{cb2de749-b115-5f67-b64a-797d54885d5c}')
305
+ @winrt_commethod(6)
306
+ def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.Binding: ...
307
+ class IBindingOperations(ComPtr):
308
+ extends: IInspectable
309
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingOperations'
310
+ _iid_ = Guid('{9a319b95-aabe-5075-b227-8eb07e443d8b}')
311
+ class IBindingOperationsStatics(ComPtr):
312
+ extends: IInspectable
313
+ _classid_ = 'Microsoft.UI.Xaml.Data.IBindingOperationsStatics'
314
+ _iid_ = Guid('{1e1bdbd3-fca5-5c85-b87d-b504cd8fa8ac}')
315
+ @winrt_commethod(6)
316
+ def SetBinding(self, target: win32more.Microsoft.UI.Xaml.DependencyObject, dp: win32more.Microsoft.UI.Xaml.DependencyProperty, binding: win32more.Microsoft.UI.Xaml.Data.BindingBase) -> Void: ...
317
+ class ICollectionView(ComPtr):
318
+ extends: IInspectable
319
+ implements: Tuple[SequenceProtocol[IInspectable]]
320
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICollectionView'
321
+ _iid_ = Guid('{f8bb90d8-e008-5d65-8c97-7bb790a4230c}')
322
+ @winrt_commethod(6)
323
+ def get_CurrentItem(self) -> IInspectable: ...
324
+ @winrt_commethod(7)
325
+ def get_CurrentPosition(self) -> Int32: ...
326
+ @winrt_commethod(8)
327
+ def get_IsCurrentAfterLast(self) -> Boolean: ...
328
+ @winrt_commethod(9)
329
+ def get_IsCurrentBeforeFirst(self) -> Boolean: ...
330
+ @winrt_commethod(10)
331
+ def get_CollectionGroups(self) -> win32more.Windows.Foundation.Collections.IObservableVector[IInspectable]: ...
332
+ @winrt_commethod(11)
333
+ def get_HasMoreItems(self) -> Boolean: ...
334
+ @winrt_commethod(12)
335
+ def add_CurrentChanged(self, handler: win32more.Windows.Foundation.EventHandler[IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
336
+ @winrt_commethod(13)
337
+ def remove_CurrentChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
338
+ @winrt_commethod(14)
339
+ def add_CurrentChanging(self, handler: win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
340
+ @winrt_commethod(15)
341
+ def remove_CurrentChanging(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
342
+ @winrt_commethod(16)
343
+ def MoveCurrentTo(self, item: IInspectable) -> Boolean: ...
344
+ @winrt_commethod(17)
345
+ def MoveCurrentToPosition(self, index: Int32) -> Boolean: ...
346
+ @winrt_commethod(18)
347
+ def MoveCurrentToFirst(self) -> Boolean: ...
348
+ @winrt_commethod(19)
349
+ def MoveCurrentToLast(self) -> Boolean: ...
350
+ @winrt_commethod(20)
351
+ def MoveCurrentToNext(self) -> Boolean: ...
352
+ @winrt_commethod(21)
353
+ def MoveCurrentToPrevious(self) -> Boolean: ...
354
+ @winrt_commethod(22)
355
+ def LoadMoreItemsAsync(self, count: UInt32) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.UI.Xaml.Data.LoadMoreItemsResult]: ...
356
+ CollectionGroups = property(get_CollectionGroups, None)
357
+ CurrentItem = property(get_CurrentItem, None)
358
+ CurrentPosition = property(get_CurrentPosition, None)
359
+ HasMoreItems = property(get_HasMoreItems, None)
360
+ IsCurrentAfterLast = property(get_IsCurrentAfterLast, None)
361
+ IsCurrentBeforeFirst = property(get_IsCurrentBeforeFirst, None)
362
+ CurrentChanged = event()
363
+ CurrentChanging = event()
364
+ class ICollectionViewFactory(ComPtr):
365
+ extends: IInspectable
366
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICollectionViewFactory'
367
+ _iid_ = Guid('{d971f795-5728-5bef-9602-43f2c4250e56}')
368
+ @winrt_commethod(6)
369
+ def CreateView(self) -> win32more.Microsoft.UI.Xaml.Data.ICollectionView: ...
370
+ class ICollectionViewGroup(ComPtr):
371
+ extends: IInspectable
372
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICollectionViewGroup'
373
+ _iid_ = Guid('{96a08da8-be38-5ae0-903d-6fb6111e61f5}')
374
+ @winrt_commethod(6)
375
+ def get_Group(self) -> IInspectable: ...
376
+ @winrt_commethod(7)
377
+ def get_GroupItems(self) -> win32more.Windows.Foundation.Collections.IObservableVector[IInspectable]: ...
378
+ Group = property(get_Group, None)
379
+ GroupItems = property(get_GroupItems, None)
380
+ class ICollectionViewSource(ComPtr):
381
+ extends: IInspectable
382
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICollectionViewSource'
383
+ _iid_ = Guid('{a45e3b3a-f31e-5bbb-8a7c-70cf5c64bc3f}')
384
+ @winrt_commethod(6)
385
+ def get_Source(self) -> IInspectable: ...
386
+ @winrt_commethod(7)
387
+ def put_Source(self, value: IInspectable) -> Void: ...
388
+ @winrt_commethod(8)
389
+ def get_View(self) -> win32more.Microsoft.UI.Xaml.Data.ICollectionView: ...
390
+ @winrt_commethod(9)
391
+ def get_IsSourceGrouped(self) -> Boolean: ...
392
+ @winrt_commethod(10)
393
+ def put_IsSourceGrouped(self, value: Boolean) -> Void: ...
394
+ @winrt_commethod(11)
395
+ def get_ItemsPath(self) -> win32more.Microsoft.UI.Xaml.PropertyPath: ...
396
+ @winrt_commethod(12)
397
+ def put_ItemsPath(self, value: win32more.Microsoft.UI.Xaml.PropertyPath) -> Void: ...
398
+ IsSourceGrouped = property(get_IsSourceGrouped, put_IsSourceGrouped)
399
+ ItemsPath = property(get_ItemsPath, put_ItemsPath)
400
+ Source = property(get_Source, put_Source)
401
+ View = property(get_View, None)
402
+ class ICollectionViewSourceStatics(ComPtr):
403
+ extends: IInspectable
404
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICollectionViewSourceStatics'
405
+ _iid_ = Guid('{e282f10f-d4b1-5769-8a11-30f739e6113b}')
406
+ @winrt_commethod(6)
407
+ def get_SourceProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
408
+ @winrt_commethod(7)
409
+ def get_ViewProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
410
+ @winrt_commethod(8)
411
+ def get_IsSourceGroupedProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
412
+ @winrt_commethod(9)
413
+ def get_ItemsPathProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
414
+ IsSourceGroupedProperty = property(get_IsSourceGroupedProperty, None)
415
+ ItemsPathProperty = property(get_ItemsPathProperty, None)
416
+ SourceProperty = property(get_SourceProperty, None)
417
+ ViewProperty = property(get_ViewProperty, None)
418
+ class ICurrentChangingEventArgs(ComPtr):
419
+ extends: IInspectable
420
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICurrentChangingEventArgs'
421
+ _iid_ = Guid('{63e42ed6-e14a-51ea-9cb1-72f9c907dc80}')
422
+ @winrt_commethod(6)
423
+ def get_Cancel(self) -> Boolean: ...
424
+ @winrt_commethod(7)
425
+ def put_Cancel(self, value: Boolean) -> Void: ...
426
+ @winrt_commethod(8)
427
+ def get_IsCancelable(self) -> Boolean: ...
428
+ Cancel = property(get_Cancel, put_Cancel)
429
+ IsCancelable = property(get_IsCancelable, None)
430
+ class ICurrentChangingEventArgsFactory(ComPtr):
431
+ extends: IInspectable
432
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICurrentChangingEventArgsFactory'
433
+ _iid_ = Guid('{3670f48a-ac2c-5352-8a4b-6b977a08e5f8}')
434
+ @winrt_commethod(6)
435
+ def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventArgs: ...
436
+ @winrt_commethod(7)
437
+ def CreateWithCancelableParameter(self, isCancelable: Boolean, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.CurrentChangingEventArgs: ...
438
+ class ICustomProperty(ComPtr):
439
+ extends: IInspectable
440
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICustomProperty'
441
+ _iid_ = Guid('{30da92c0-23e8-42a0-ae7c-734a0e5d2782}')
442
+ @winrt_commethod(6)
443
+ def get_Type(self) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
444
+ @winrt_commethod(7)
445
+ def get_Name(self) -> WinRT_String: ...
446
+ @winrt_commethod(8)
447
+ def GetValue(self, target: IInspectable) -> IInspectable: ...
448
+ @winrt_commethod(9)
449
+ def SetValue(self, target: IInspectable, value: IInspectable) -> Void: ...
450
+ @winrt_commethod(10)
451
+ def GetIndexedValue(self, target: IInspectable, index: IInspectable) -> IInspectable: ...
452
+ @winrt_commethod(11)
453
+ def SetIndexedValue(self, target: IInspectable, value: IInspectable, index: IInspectable) -> Void: ...
454
+ @winrt_commethod(12)
455
+ def get_CanWrite(self) -> Boolean: ...
456
+ @winrt_commethod(13)
457
+ def get_CanRead(self) -> Boolean: ...
458
+ CanRead = property(get_CanRead, None)
459
+ CanWrite = property(get_CanWrite, None)
460
+ Name = property(get_Name, None)
461
+ Type = property(get_Type, None)
462
+ class ICustomPropertyProvider(ComPtr):
463
+ extends: IInspectable
464
+ _classid_ = 'Microsoft.UI.Xaml.Data.ICustomPropertyProvider'
465
+ _iid_ = Guid('{7c925755-3e48-42b4-8677-76372267033f}')
466
+ @winrt_commethod(6)
467
+ def GetCustomProperty(self, name: WinRT_String) -> win32more.Microsoft.UI.Xaml.Data.ICustomProperty: ...
468
+ @winrt_commethod(7)
469
+ def GetIndexedProperty(self, name: WinRT_String, type: win32more.Windows.UI.Xaml.Interop.TypeName) -> win32more.Microsoft.UI.Xaml.Data.ICustomProperty: ...
470
+ @winrt_commethod(8)
471
+ def GetStringRepresentation(self) -> WinRT_String: ...
472
+ @winrt_commethod(9)
473
+ def get_Type(self) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
474
+ Type = property(get_Type, None)
475
+ class IDataErrorsChangedEventArgs(ComPtr):
476
+ extends: IInspectable
477
+ _classid_ = 'Microsoft.UI.Xaml.Data.IDataErrorsChangedEventArgs'
478
+ _iid_ = Guid('{d026dd64-5f26-5f15-a86a-0dec8a431796}')
479
+ @winrt_commethod(6)
480
+ def get_PropertyName(self) -> WinRT_String: ...
481
+ @winrt_commethod(7)
482
+ def put_PropertyName(self, value: WinRT_String) -> Void: ...
483
+ PropertyName = property(get_PropertyName, put_PropertyName)
484
+ class IDataErrorsChangedEventArgsFactory(ComPtr):
485
+ extends: IInspectable
486
+ _classid_ = 'Microsoft.UI.Xaml.Data.IDataErrorsChangedEventArgsFactory'
487
+ _iid_ = Guid('{62d0bd1e-b85f-5fcc-842a-7cb0dda37fe5}')
488
+ @winrt_commethod(6)
489
+ def CreateInstance(self, name: WinRT_String) -> win32more.Microsoft.UI.Xaml.Data.DataErrorsChangedEventArgs: ...
490
+ class IItemIndexRange(ComPtr):
491
+ extends: IInspectable
492
+ _classid_ = 'Microsoft.UI.Xaml.Data.IItemIndexRange'
493
+ _iid_ = Guid('{eba09846-2554-5b86-ac17-614f05105fa2}')
494
+ @winrt_commethod(6)
495
+ def get_FirstIndex(self) -> Int32: ...
496
+ @winrt_commethod(7)
497
+ def get_Length(self) -> UInt32: ...
498
+ @winrt_commethod(8)
499
+ def get_LastIndex(self) -> Int32: ...
500
+ FirstIndex = property(get_FirstIndex, None)
501
+ LastIndex = property(get_LastIndex, None)
502
+ Length = property(get_Length, None)
503
+ class IItemIndexRangeFactory(ComPtr):
504
+ extends: IInspectable
505
+ _classid_ = 'Microsoft.UI.Xaml.Data.IItemIndexRangeFactory'
506
+ _iid_ = Guid('{9fc73213-eda0-5238-aa2c-401c9921f0f9}')
507
+ @winrt_commethod(6)
508
+ def CreateInstance(self, firstIndex: Int32, length: UInt32, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.ItemIndexRange: ...
509
+ class IItemsRangeInfo(ComPtr):
510
+ extends: IInspectable
511
+ implements: Tuple[ContextManagerProtocol]
512
+ _classid_ = 'Microsoft.UI.Xaml.Data.IItemsRangeInfo'
513
+ _iid_ = Guid('{b8376d08-85fb-563b-8273-39ef2d138256}')
514
+ @winrt_commethod(6)
515
+ def RangesChanged(self, visibleRange: win32more.Microsoft.UI.Xaml.Data.ItemIndexRange, trackedItems: win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Data.ItemIndexRange]) -> Void: ...
516
+ class INotifyDataErrorInfo(ComPtr):
517
+ extends: IInspectable
518
+ _classid_ = 'Microsoft.UI.Xaml.Data.INotifyDataErrorInfo'
519
+ _iid_ = Guid('{0ee6c2cc-273e-567d-bc0a-1dd87ee51eba}')
520
+ @winrt_commethod(6)
521
+ def get_HasErrors(self) -> Boolean: ...
522
+ @winrt_commethod(7)
523
+ def add_ErrorsChanged(self, handler: win32more.Windows.Foundation.EventHandler[win32more.Microsoft.UI.Xaml.Data.DataErrorsChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
524
+ @winrt_commethod(8)
525
+ def remove_ErrorsChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
526
+ @winrt_commethod(9)
527
+ def GetErrors(self, propertyName: WinRT_String) -> win32more.Windows.Foundation.Collections.IIterable[IInspectable]: ...
528
+ HasErrors = property(get_HasErrors, None)
529
+ ErrorsChanged = event()
530
+ class INotifyPropertyChanged(ComPtr):
531
+ extends: IInspectable
532
+ _classid_ = 'Microsoft.UI.Xaml.Data.INotifyPropertyChanged'
533
+ _iid_ = Guid('{90b17601-b065-586e-83d9-9adc3a695284}')
534
+ @winrt_commethod(6)
535
+ def add_PropertyChanged(self, handler: win32more.Microsoft.UI.Xaml.Data.PropertyChangedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
536
+ @winrt_commethod(7)
537
+ def remove_PropertyChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
538
+ PropertyChanged = event()
539
+ class IPropertyChangedEventArgs(ComPtr):
540
+ extends: IInspectable
541
+ _classid_ = 'Microsoft.UI.Xaml.Data.IPropertyChangedEventArgs'
542
+ _iid_ = Guid('{63d0c952-396b-54f4-af8c-ba8724a427bf}')
543
+ @winrt_commethod(6)
544
+ def get_PropertyName(self) -> WinRT_String: ...
545
+ PropertyName = property(get_PropertyName, None)
546
+ class IPropertyChangedEventArgsFactory(ComPtr):
547
+ extends: IInspectable
548
+ _classid_ = 'Microsoft.UI.Xaml.Data.IPropertyChangedEventArgsFactory'
549
+ _iid_ = Guid('{7c0c27a8-0b41-5070-b160-fc9ae960a36c}')
550
+ @winrt_commethod(6)
551
+ def CreateInstance(self, name: WinRT_String, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.PropertyChangedEventArgs: ...
552
+ class IRelativeSource(ComPtr):
553
+ extends: IInspectable
554
+ _classid_ = 'Microsoft.UI.Xaml.Data.IRelativeSource'
555
+ _iid_ = Guid('{7ffc8126-5dd8-58bb-b686-c71eddea07b2}')
556
+ @winrt_commethod(6)
557
+ def get_Mode(self) -> win32more.Microsoft.UI.Xaml.Data.RelativeSourceMode: ...
558
+ @winrt_commethod(7)
559
+ def put_Mode(self, value: win32more.Microsoft.UI.Xaml.Data.RelativeSourceMode) -> Void: ...
560
+ Mode = property(get_Mode, put_Mode)
561
+ class IRelativeSourceFactory(ComPtr):
562
+ extends: IInspectable
563
+ _classid_ = 'Microsoft.UI.Xaml.Data.IRelativeSourceFactory'
564
+ _iid_ = Guid('{8518522c-85e3-5ae1-b9e9-28ea43c2051e}')
565
+ @winrt_commethod(6)
566
+ def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.RelativeSource: ...
567
+ class ISelectionInfo(ComPtr):
568
+ extends: IInspectable
569
+ _classid_ = 'Microsoft.UI.Xaml.Data.ISelectionInfo'
570
+ _iid_ = Guid('{1b84c26b-9532-5803-935b-a03bf7e875dc}')
571
+ @winrt_commethod(6)
572
+ def SelectRange(self, itemIndexRange: win32more.Microsoft.UI.Xaml.Data.ItemIndexRange) -> Void: ...
573
+ @winrt_commethod(7)
574
+ def DeselectRange(self, itemIndexRange: win32more.Microsoft.UI.Xaml.Data.ItemIndexRange) -> Void: ...
575
+ @winrt_commethod(8)
576
+ def IsSelected(self, index: Int32) -> Boolean: ...
577
+ @winrt_commethod(9)
578
+ def GetSelectedRanges(self) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Data.ItemIndexRange]: ...
579
+ class ISupportIncrementalLoading(ComPtr):
580
+ extends: IInspectable
581
+ _classid_ = 'Microsoft.UI.Xaml.Data.ISupportIncrementalLoading'
582
+ _iid_ = Guid('{d8f9b586-a64a-5ff8-868e-204e144f2cf4}')
583
+ @winrt_commethod(6)
584
+ def LoadMoreItemsAsync(self, count: UInt32) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.UI.Xaml.Data.LoadMoreItemsResult]: ...
585
+ @winrt_commethod(7)
586
+ def get_HasMoreItems(self) -> Boolean: ...
587
+ HasMoreItems = property(get_HasMoreItems, None)
588
+ class IValueConverter(ComPtr):
589
+ extends: IInspectable
590
+ _classid_ = 'Microsoft.UI.Xaml.Data.IValueConverter'
591
+ _iid_ = Guid('{afdd2bff-10f5-5173-b7c0-3590bd96cb35}')
592
+ @winrt_commethod(6)
593
+ def Convert(self, value: IInspectable, targetType: win32more.Windows.UI.Xaml.Interop.TypeName, parameter: IInspectable, language: WinRT_String) -> IInspectable: ...
594
+ @winrt_commethod(7)
595
+ def ConvertBack(self, value: IInspectable, targetType: win32more.Windows.UI.Xaml.Interop.TypeName, parameter: IInspectable, language: WinRT_String) -> IInspectable: ...
596
+ class ItemIndexRange(ComPtr):
597
+ extends: IInspectable
598
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IItemIndexRange
599
+ _classid_ = 'Microsoft.UI.Xaml.Data.ItemIndexRange'
600
+ def __init__(self, *args, **kwargs):
601
+ if kwargs:
602
+ super().__init__(**kwargs)
603
+ elif len(args) == 2:
604
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.ItemIndexRange.CreateInstance(*args, None, None))
605
+ else:
606
+ raise ValueError('no matched constructor')
607
+ @winrt_factorymethod
608
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Data.IItemIndexRangeFactory, firstIndex: Int32, length: UInt32, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.ItemIndexRange: ...
609
+ @winrt_mixinmethod
610
+ def get_FirstIndex(self: win32more.Microsoft.UI.Xaml.Data.IItemIndexRange) -> Int32: ...
611
+ @winrt_mixinmethod
612
+ def get_Length(self: win32more.Microsoft.UI.Xaml.Data.IItemIndexRange) -> UInt32: ...
613
+ @winrt_mixinmethod
614
+ def get_LastIndex(self: win32more.Microsoft.UI.Xaml.Data.IItemIndexRange) -> Int32: ...
615
+ FirstIndex = property(get_FirstIndex, None)
616
+ LastIndex = property(get_LastIndex, None)
617
+ Length = property(get_Length, None)
618
+ class LoadMoreItemsResult(Structure):
619
+ Count: UInt32
620
+ class PropertyChangedEventArgs(ComPtr):
621
+ extends: IInspectable
622
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IPropertyChangedEventArgs
623
+ _classid_ = 'Microsoft.UI.Xaml.Data.PropertyChangedEventArgs'
624
+ def __init__(self, *args, **kwargs):
625
+ if kwargs:
626
+ super().__init__(**kwargs)
627
+ elif len(args) == 1:
628
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.PropertyChangedEventArgs.CreateInstance(*args, None, None))
629
+ else:
630
+ raise ValueError('no matched constructor')
631
+ @winrt_factorymethod
632
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Data.IPropertyChangedEventArgsFactory, name: WinRT_String, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.PropertyChangedEventArgs: ...
633
+ @winrt_mixinmethod
634
+ def get_PropertyName(self: win32more.Microsoft.UI.Xaml.Data.IPropertyChangedEventArgs) -> WinRT_String: ...
635
+ PropertyName = property(get_PropertyName, None)
636
+ class PropertyChangedEventHandler(MulticastDelegate):
637
+ extends: IUnknown
638
+ _iid_ = Guid('{e3de52f6-1e32-5da6-bb2d-b5b6096c962d}')
639
+ @winrt_commethod(3)
640
+ def Invoke(self, sender: IInspectable, e: win32more.Microsoft.UI.Xaml.Data.PropertyChangedEventArgs) -> Void: ...
641
+ class RelativeSource(ComPtr):
642
+ extends: win32more.Microsoft.UI.Xaml.DependencyObject
643
+ default_interface: win32more.Microsoft.UI.Xaml.Data.IRelativeSource
644
+ _classid_ = 'Microsoft.UI.Xaml.Data.RelativeSource'
645
+ def __init__(self, *args, **kwargs):
646
+ if kwargs:
647
+ super().__init__(**kwargs)
648
+ elif len(args) == 0:
649
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Data.RelativeSource.CreateInstance(*args, None, None))
650
+ else:
651
+ raise ValueError('no matched constructor')
652
+ @winrt_factorymethod
653
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Data.IRelativeSourceFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Data.RelativeSource: ...
654
+ @winrt_mixinmethod
655
+ def get_Mode(self: win32more.Microsoft.UI.Xaml.Data.IRelativeSource) -> win32more.Microsoft.UI.Xaml.Data.RelativeSourceMode: ...
656
+ @winrt_mixinmethod
657
+ def put_Mode(self: win32more.Microsoft.UI.Xaml.Data.IRelativeSource, value: win32more.Microsoft.UI.Xaml.Data.RelativeSourceMode) -> Void: ...
658
+ Mode = property(get_Mode, put_Mode)
659
+ class RelativeSourceMode(Enum, Int32):
660
+ None_ = 0
661
+ TemplatedParent = 1
662
+ Self = 2
663
+ class UpdateSourceTrigger(Enum, Int32):
664
+ Default = 0
665
+ PropertyChanged = 1
666
+ Explicit = 2
667
+ LostFocus = 3
668
+
669
+
670
+ make_ready(__name__)