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,538 @@
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.Media
6
+ import win32more.Microsoft.UI.Xaml.Shapes
7
+ class Ellipse(ComPtr):
8
+ extends: win32more.Microsoft.UI.Xaml.Shapes.Shape
9
+ default_interface: win32more.Microsoft.UI.Xaml.Shapes.IEllipse
10
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.Ellipse'
11
+ def __init__(self, *args, **kwargs):
12
+ if kwargs:
13
+ super().__init__(**kwargs)
14
+ elif len(args) == 0:
15
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Shapes.Ellipse.CreateInstance(*args))
16
+ else:
17
+ raise ValueError('no matched constructor')
18
+ @winrt_activatemethod
19
+ def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Shapes.Ellipse: ...
20
+ class IEllipse(ComPtr):
21
+ extends: IInspectable
22
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IEllipse'
23
+ _iid_ = Guid('{805c39aa-fa8a-5e0b-9847-4ab81b42a3df}')
24
+ class ILine(ComPtr):
25
+ extends: IInspectable
26
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.ILine'
27
+ _iid_ = Guid('{507b3858-af7e-559b-a87e-4cc6a5d8ba96}')
28
+ @winrt_commethod(6)
29
+ def get_X1(self) -> Double: ...
30
+ @winrt_commethod(7)
31
+ def put_X1(self, value: Double) -> Void: ...
32
+ @winrt_commethod(8)
33
+ def get_Y1(self) -> Double: ...
34
+ @winrt_commethod(9)
35
+ def put_Y1(self, value: Double) -> Void: ...
36
+ @winrt_commethod(10)
37
+ def get_X2(self) -> Double: ...
38
+ @winrt_commethod(11)
39
+ def put_X2(self, value: Double) -> Void: ...
40
+ @winrt_commethod(12)
41
+ def get_Y2(self) -> Double: ...
42
+ @winrt_commethod(13)
43
+ def put_Y2(self, value: Double) -> Void: ...
44
+ X1 = property(get_X1, put_X1)
45
+ X2 = property(get_X2, put_X2)
46
+ Y1 = property(get_Y1, put_Y1)
47
+ Y2 = property(get_Y2, put_Y2)
48
+ class ILineStatics(ComPtr):
49
+ extends: IInspectable
50
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.ILineStatics'
51
+ _iid_ = Guid('{a425bf93-f1f3-5dcb-997e-b6a26f7ae8c0}')
52
+ @winrt_commethod(6)
53
+ def get_X1Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
54
+ @winrt_commethod(7)
55
+ def get_Y1Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
56
+ @winrt_commethod(8)
57
+ def get_X2Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
58
+ @winrt_commethod(9)
59
+ def get_Y2Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
60
+ X1Property = property(get_X1Property, None)
61
+ X2Property = property(get_X2Property, None)
62
+ Y1Property = property(get_Y1Property, None)
63
+ Y2Property = property(get_Y2Property, None)
64
+ class IPath(ComPtr):
65
+ extends: IInspectable
66
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IPath'
67
+ _iid_ = Guid('{757d1cd8-0ec0-55c5-b400-66657e493e78}')
68
+ @winrt_commethod(6)
69
+ def get_Data(self) -> win32more.Microsoft.UI.Xaml.Media.Geometry: ...
70
+ @winrt_commethod(7)
71
+ def put_Data(self, value: win32more.Microsoft.UI.Xaml.Media.Geometry) -> Void: ...
72
+ Data = property(get_Data, put_Data)
73
+ class IPathFactory(ComPtr):
74
+ extends: IInspectable
75
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IPathFactory'
76
+ _iid_ = Guid('{5e82e4c9-7502-5b1f-b940-c3346a71362a}')
77
+ @winrt_commethod(6)
78
+ def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Shapes.Path: ...
79
+ class IPathStatics(ComPtr):
80
+ extends: IInspectable
81
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IPathStatics'
82
+ _iid_ = Guid('{2146d36f-721c-5b54-af7d-60f3adc4fbca}')
83
+ @winrt_commethod(6)
84
+ def get_DataProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
85
+ DataProperty = property(get_DataProperty, None)
86
+ class IPolygon(ComPtr):
87
+ extends: IInspectable
88
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IPolygon'
89
+ _iid_ = Guid('{fa126347-d1d4-54dd-b1a4-c35019397944}')
90
+ @winrt_commethod(6)
91
+ def get_FillRule(self) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
92
+ @winrt_commethod(7)
93
+ def put_FillRule(self, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
94
+ @winrt_commethod(8)
95
+ def get_Points(self) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
96
+ @winrt_commethod(9)
97
+ def put_Points(self, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
98
+ FillRule = property(get_FillRule, put_FillRule)
99
+ Points = property(get_Points, put_Points)
100
+ class IPolygonStatics(ComPtr):
101
+ extends: IInspectable
102
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IPolygonStatics'
103
+ _iid_ = Guid('{85ddbada-9e37-5971-a9aa-dce31f9cf67a}')
104
+ @winrt_commethod(6)
105
+ def get_FillRuleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
106
+ @winrt_commethod(7)
107
+ def get_PointsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
108
+ FillRuleProperty = property(get_FillRuleProperty, None)
109
+ PointsProperty = property(get_PointsProperty, None)
110
+ class IPolyline(ComPtr):
111
+ extends: IInspectable
112
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IPolyline'
113
+ _iid_ = Guid('{c7f0bec6-184c-5d96-8102-04dd211e100c}')
114
+ @winrt_commethod(6)
115
+ def get_FillRule(self) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
116
+ @winrt_commethod(7)
117
+ def put_FillRule(self, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
118
+ @winrt_commethod(8)
119
+ def get_Points(self) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
120
+ @winrt_commethod(9)
121
+ def put_Points(self, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
122
+ FillRule = property(get_FillRule, put_FillRule)
123
+ Points = property(get_Points, put_Points)
124
+ class IPolylineStatics(ComPtr):
125
+ extends: IInspectable
126
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IPolylineStatics'
127
+ _iid_ = Guid('{48840fe7-d735-5080-9c6d-2862665cdda0}')
128
+ @winrt_commethod(6)
129
+ def get_FillRuleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
130
+ @winrt_commethod(7)
131
+ def get_PointsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
132
+ FillRuleProperty = property(get_FillRuleProperty, None)
133
+ PointsProperty = property(get_PointsProperty, None)
134
+ class IRectangle(ComPtr):
135
+ extends: IInspectable
136
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IRectangle'
137
+ _iid_ = Guid('{bf7d30b9-152c-556e-9f10-d0b7eba4e52f}')
138
+ @winrt_commethod(6)
139
+ def get_RadiusX(self) -> Double: ...
140
+ @winrt_commethod(7)
141
+ def put_RadiusX(self, value: Double) -> Void: ...
142
+ @winrt_commethod(8)
143
+ def get_RadiusY(self) -> Double: ...
144
+ @winrt_commethod(9)
145
+ def put_RadiusY(self, value: Double) -> Void: ...
146
+ RadiusX = property(get_RadiusX, put_RadiusX)
147
+ RadiusY = property(get_RadiusY, put_RadiusY)
148
+ class IRectangleStatics(ComPtr):
149
+ extends: IInspectable
150
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IRectangleStatics'
151
+ _iid_ = Guid('{3cc3cc79-c332-5ad0-8743-1f1b1e670a86}')
152
+ @winrt_commethod(6)
153
+ def get_RadiusXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
154
+ @winrt_commethod(7)
155
+ def get_RadiusYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
156
+ RadiusXProperty = property(get_RadiusXProperty, None)
157
+ RadiusYProperty = property(get_RadiusYProperty, None)
158
+ class IShape(ComPtr):
159
+ extends: IInspectable
160
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IShape'
161
+ _iid_ = Guid('{9941aad3-6af2-5ba2-9085-8506d5f2485e}')
162
+ @winrt_commethod(6)
163
+ def get_Fill(self) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
164
+ @winrt_commethod(7)
165
+ def put_Fill(self, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
166
+ @winrt_commethod(8)
167
+ def get_Stroke(self) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
168
+ @winrt_commethod(9)
169
+ def put_Stroke(self, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
170
+ @winrt_commethod(10)
171
+ def get_StrokeMiterLimit(self) -> Double: ...
172
+ @winrt_commethod(11)
173
+ def put_StrokeMiterLimit(self, value: Double) -> Void: ...
174
+ @winrt_commethod(12)
175
+ def get_StrokeThickness(self) -> Double: ...
176
+ @winrt_commethod(13)
177
+ def put_StrokeThickness(self, value: Double) -> Void: ...
178
+ @winrt_commethod(14)
179
+ def get_StrokeStartLineCap(self) -> win32more.Microsoft.UI.Xaml.Media.PenLineCap: ...
180
+ @winrt_commethod(15)
181
+ def put_StrokeStartLineCap(self, value: win32more.Microsoft.UI.Xaml.Media.PenLineCap) -> Void: ...
182
+ @winrt_commethod(16)
183
+ def get_StrokeEndLineCap(self) -> win32more.Microsoft.UI.Xaml.Media.PenLineCap: ...
184
+ @winrt_commethod(17)
185
+ def put_StrokeEndLineCap(self, value: win32more.Microsoft.UI.Xaml.Media.PenLineCap) -> Void: ...
186
+ @winrt_commethod(18)
187
+ def get_StrokeLineJoin(self) -> win32more.Microsoft.UI.Xaml.Media.PenLineJoin: ...
188
+ @winrt_commethod(19)
189
+ def put_StrokeLineJoin(self, value: win32more.Microsoft.UI.Xaml.Media.PenLineJoin) -> Void: ...
190
+ @winrt_commethod(20)
191
+ def get_StrokeDashOffset(self) -> Double: ...
192
+ @winrt_commethod(21)
193
+ def put_StrokeDashOffset(self, value: Double) -> Void: ...
194
+ @winrt_commethod(22)
195
+ def get_StrokeDashCap(self) -> win32more.Microsoft.UI.Xaml.Media.PenLineCap: ...
196
+ @winrt_commethod(23)
197
+ def put_StrokeDashCap(self, value: win32more.Microsoft.UI.Xaml.Media.PenLineCap) -> Void: ...
198
+ @winrt_commethod(24)
199
+ def get_StrokeDashArray(self) -> win32more.Microsoft.UI.Xaml.Media.DoubleCollection: ...
200
+ @winrt_commethod(25)
201
+ def put_StrokeDashArray(self, value: win32more.Microsoft.UI.Xaml.Media.DoubleCollection) -> Void: ...
202
+ @winrt_commethod(26)
203
+ def get_Stretch(self) -> win32more.Microsoft.UI.Xaml.Media.Stretch: ...
204
+ @winrt_commethod(27)
205
+ def put_Stretch(self, value: win32more.Microsoft.UI.Xaml.Media.Stretch) -> Void: ...
206
+ @winrt_commethod(28)
207
+ def get_GeometryTransform(self) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
208
+ @winrt_commethod(29)
209
+ def GetAlphaMask(self) -> win32more.Microsoft.UI.Composition.CompositionBrush: ...
210
+ Fill = property(get_Fill, put_Fill)
211
+ GeometryTransform = property(get_GeometryTransform, None)
212
+ Stretch = property(get_Stretch, put_Stretch)
213
+ Stroke = property(get_Stroke, put_Stroke)
214
+ StrokeDashArray = property(get_StrokeDashArray, put_StrokeDashArray)
215
+ StrokeDashCap = property(get_StrokeDashCap, put_StrokeDashCap)
216
+ StrokeDashOffset = property(get_StrokeDashOffset, put_StrokeDashOffset)
217
+ StrokeEndLineCap = property(get_StrokeEndLineCap, put_StrokeEndLineCap)
218
+ StrokeLineJoin = property(get_StrokeLineJoin, put_StrokeLineJoin)
219
+ StrokeMiterLimit = property(get_StrokeMiterLimit, put_StrokeMiterLimit)
220
+ StrokeStartLineCap = property(get_StrokeStartLineCap, put_StrokeStartLineCap)
221
+ StrokeThickness = property(get_StrokeThickness, put_StrokeThickness)
222
+ class IShapeFactory(ComPtr):
223
+ extends: IInspectable
224
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IShapeFactory'
225
+ _iid_ = Guid('{4fecafaf-8265-5252-ba5c-f43639f974a5}')
226
+ @winrt_commethod(6)
227
+ def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Shapes.Shape: ...
228
+ class IShapeStatics(ComPtr):
229
+ extends: IInspectable
230
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.IShapeStatics'
231
+ _iid_ = Guid('{ea407c43-8a09-587a-958a-4dd17d217ce1}')
232
+ @winrt_commethod(6)
233
+ def get_FillProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
234
+ @winrt_commethod(7)
235
+ def get_StrokeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
236
+ @winrt_commethod(8)
237
+ def get_StrokeMiterLimitProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
238
+ @winrt_commethod(9)
239
+ def get_StrokeThicknessProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
240
+ @winrt_commethod(10)
241
+ def get_StrokeStartLineCapProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
242
+ @winrt_commethod(11)
243
+ def get_StrokeEndLineCapProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
244
+ @winrt_commethod(12)
245
+ def get_StrokeLineJoinProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
246
+ @winrt_commethod(13)
247
+ def get_StrokeDashOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
248
+ @winrt_commethod(14)
249
+ def get_StrokeDashCapProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
250
+ @winrt_commethod(15)
251
+ def get_StrokeDashArrayProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
252
+ @winrt_commethod(16)
253
+ def get_StretchProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
254
+ FillProperty = property(get_FillProperty, None)
255
+ StretchProperty = property(get_StretchProperty, None)
256
+ StrokeDashArrayProperty = property(get_StrokeDashArrayProperty, None)
257
+ StrokeDashCapProperty = property(get_StrokeDashCapProperty, None)
258
+ StrokeDashOffsetProperty = property(get_StrokeDashOffsetProperty, None)
259
+ StrokeEndLineCapProperty = property(get_StrokeEndLineCapProperty, None)
260
+ StrokeLineJoinProperty = property(get_StrokeLineJoinProperty, None)
261
+ StrokeMiterLimitProperty = property(get_StrokeMiterLimitProperty, None)
262
+ StrokeProperty = property(get_StrokeProperty, None)
263
+ StrokeStartLineCapProperty = property(get_StrokeStartLineCapProperty, None)
264
+ StrokeThicknessProperty = property(get_StrokeThicknessProperty, None)
265
+ class _Line_Meta_(ComPtr.__class__):
266
+ pass
267
+ class Line(ComPtr, metaclass=_Line_Meta_):
268
+ extends: win32more.Microsoft.UI.Xaml.Shapes.Shape
269
+ default_interface: win32more.Microsoft.UI.Xaml.Shapes.ILine
270
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.Line'
271
+ def __init__(self, *args, **kwargs):
272
+ if kwargs:
273
+ super().__init__(**kwargs)
274
+ elif len(args) == 0:
275
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Shapes.Line.CreateInstance(*args))
276
+ else:
277
+ raise ValueError('no matched constructor')
278
+ @winrt_activatemethod
279
+ def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Shapes.Line: ...
280
+ @winrt_mixinmethod
281
+ def get_X1(self: win32more.Microsoft.UI.Xaml.Shapes.ILine) -> Double: ...
282
+ @winrt_mixinmethod
283
+ def put_X1(self: win32more.Microsoft.UI.Xaml.Shapes.ILine, value: Double) -> Void: ...
284
+ @winrt_mixinmethod
285
+ def get_Y1(self: win32more.Microsoft.UI.Xaml.Shapes.ILine) -> Double: ...
286
+ @winrt_mixinmethod
287
+ def put_Y1(self: win32more.Microsoft.UI.Xaml.Shapes.ILine, value: Double) -> Void: ...
288
+ @winrt_mixinmethod
289
+ def get_X2(self: win32more.Microsoft.UI.Xaml.Shapes.ILine) -> Double: ...
290
+ @winrt_mixinmethod
291
+ def put_X2(self: win32more.Microsoft.UI.Xaml.Shapes.ILine, value: Double) -> Void: ...
292
+ @winrt_mixinmethod
293
+ def get_Y2(self: win32more.Microsoft.UI.Xaml.Shapes.ILine) -> Double: ...
294
+ @winrt_mixinmethod
295
+ def put_Y2(self: win32more.Microsoft.UI.Xaml.Shapes.ILine, value: Double) -> Void: ...
296
+ @winrt_classmethod
297
+ def get_X1Property(cls: win32more.Microsoft.UI.Xaml.Shapes.ILineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
298
+ @winrt_classmethod
299
+ def get_Y1Property(cls: win32more.Microsoft.UI.Xaml.Shapes.ILineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
300
+ @winrt_classmethod
301
+ def get_X2Property(cls: win32more.Microsoft.UI.Xaml.Shapes.ILineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
302
+ @winrt_classmethod
303
+ def get_Y2Property(cls: win32more.Microsoft.UI.Xaml.Shapes.ILineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
304
+ X1 = property(get_X1, put_X1)
305
+ X2 = property(get_X2, put_X2)
306
+ Y1 = property(get_Y1, put_Y1)
307
+ Y2 = property(get_Y2, put_Y2)
308
+ _Line_Meta_.X1Property = property(get_X1Property, None)
309
+ _Line_Meta_.X2Property = property(get_X2Property, None)
310
+ _Line_Meta_.Y1Property = property(get_Y1Property, None)
311
+ _Line_Meta_.Y2Property = property(get_Y2Property, None)
312
+ class _Path_Meta_(ComPtr.__class__):
313
+ pass
314
+ class Path(ComPtr, metaclass=_Path_Meta_):
315
+ extends: win32more.Microsoft.UI.Xaml.Shapes.Shape
316
+ default_interface: win32more.Microsoft.UI.Xaml.Shapes.IPath
317
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.Path'
318
+ def __init__(self, *args, **kwargs):
319
+ if kwargs:
320
+ super().__init__(**kwargs)
321
+ elif len(args) == 0:
322
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Shapes.Path.CreateInstance(*args, None, None))
323
+ else:
324
+ raise ValueError('no matched constructor')
325
+ @winrt_factorymethod
326
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Shapes.IPathFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Shapes.Path: ...
327
+ @winrt_mixinmethod
328
+ def get_Data(self: win32more.Microsoft.UI.Xaml.Shapes.IPath) -> win32more.Microsoft.UI.Xaml.Media.Geometry: ...
329
+ @winrt_mixinmethod
330
+ def put_Data(self: win32more.Microsoft.UI.Xaml.Shapes.IPath, value: win32more.Microsoft.UI.Xaml.Media.Geometry) -> Void: ...
331
+ @winrt_classmethod
332
+ def get_DataProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IPathStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
333
+ Data = property(get_Data, put_Data)
334
+ _Path_Meta_.DataProperty = property(get_DataProperty, None)
335
+ class _Polygon_Meta_(ComPtr.__class__):
336
+ pass
337
+ class Polygon(ComPtr, metaclass=_Polygon_Meta_):
338
+ extends: win32more.Microsoft.UI.Xaml.Shapes.Shape
339
+ default_interface: win32more.Microsoft.UI.Xaml.Shapes.IPolygon
340
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.Polygon'
341
+ def __init__(self, *args, **kwargs):
342
+ if kwargs:
343
+ super().__init__(**kwargs)
344
+ elif len(args) == 0:
345
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Shapes.Polygon.CreateInstance(*args))
346
+ else:
347
+ raise ValueError('no matched constructor')
348
+ @winrt_activatemethod
349
+ def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Shapes.Polygon: ...
350
+ @winrt_mixinmethod
351
+ def get_FillRule(self: win32more.Microsoft.UI.Xaml.Shapes.IPolygon) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
352
+ @winrt_mixinmethod
353
+ def put_FillRule(self: win32more.Microsoft.UI.Xaml.Shapes.IPolygon, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
354
+ @winrt_mixinmethod
355
+ def get_Points(self: win32more.Microsoft.UI.Xaml.Shapes.IPolygon) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
356
+ @winrt_mixinmethod
357
+ def put_Points(self: win32more.Microsoft.UI.Xaml.Shapes.IPolygon, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
358
+ @winrt_classmethod
359
+ def get_FillRuleProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IPolygonStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
360
+ @winrt_classmethod
361
+ def get_PointsProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IPolygonStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
362
+ FillRule = property(get_FillRule, put_FillRule)
363
+ Points = property(get_Points, put_Points)
364
+ _Polygon_Meta_.FillRuleProperty = property(get_FillRuleProperty, None)
365
+ _Polygon_Meta_.PointsProperty = property(get_PointsProperty, None)
366
+ class _Polyline_Meta_(ComPtr.__class__):
367
+ pass
368
+ class Polyline(ComPtr, metaclass=_Polyline_Meta_):
369
+ extends: win32more.Microsoft.UI.Xaml.Shapes.Shape
370
+ default_interface: win32more.Microsoft.UI.Xaml.Shapes.IPolyline
371
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.Polyline'
372
+ def __init__(self, *args, **kwargs):
373
+ if kwargs:
374
+ super().__init__(**kwargs)
375
+ elif len(args) == 0:
376
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Shapes.Polyline.CreateInstance(*args))
377
+ else:
378
+ raise ValueError('no matched constructor')
379
+ @winrt_activatemethod
380
+ def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Shapes.Polyline: ...
381
+ @winrt_mixinmethod
382
+ def get_FillRule(self: win32more.Microsoft.UI.Xaml.Shapes.IPolyline) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
383
+ @winrt_mixinmethod
384
+ def put_FillRule(self: win32more.Microsoft.UI.Xaml.Shapes.IPolyline, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
385
+ @winrt_mixinmethod
386
+ def get_Points(self: win32more.Microsoft.UI.Xaml.Shapes.IPolyline) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
387
+ @winrt_mixinmethod
388
+ def put_Points(self: win32more.Microsoft.UI.Xaml.Shapes.IPolyline, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
389
+ @winrt_classmethod
390
+ def get_FillRuleProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IPolylineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
391
+ @winrt_classmethod
392
+ def get_PointsProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IPolylineStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
393
+ FillRule = property(get_FillRule, put_FillRule)
394
+ Points = property(get_Points, put_Points)
395
+ _Polyline_Meta_.FillRuleProperty = property(get_FillRuleProperty, None)
396
+ _Polyline_Meta_.PointsProperty = property(get_PointsProperty, None)
397
+ class _Rectangle_Meta_(ComPtr.__class__):
398
+ pass
399
+ class Rectangle(ComPtr, metaclass=_Rectangle_Meta_):
400
+ extends: win32more.Microsoft.UI.Xaml.Shapes.Shape
401
+ default_interface: win32more.Microsoft.UI.Xaml.Shapes.IRectangle
402
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.Rectangle'
403
+ def __init__(self, *args, **kwargs):
404
+ if kwargs:
405
+ super().__init__(**kwargs)
406
+ elif len(args) == 0:
407
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Shapes.Rectangle.CreateInstance(*args))
408
+ else:
409
+ raise ValueError('no matched constructor')
410
+ @winrt_activatemethod
411
+ def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Shapes.Rectangle: ...
412
+ @winrt_mixinmethod
413
+ def get_RadiusX(self: win32more.Microsoft.UI.Xaml.Shapes.IRectangle) -> Double: ...
414
+ @winrt_mixinmethod
415
+ def put_RadiusX(self: win32more.Microsoft.UI.Xaml.Shapes.IRectangle, value: Double) -> Void: ...
416
+ @winrt_mixinmethod
417
+ def get_RadiusY(self: win32more.Microsoft.UI.Xaml.Shapes.IRectangle) -> Double: ...
418
+ @winrt_mixinmethod
419
+ def put_RadiusY(self: win32more.Microsoft.UI.Xaml.Shapes.IRectangle, value: Double) -> Void: ...
420
+ @winrt_classmethod
421
+ def get_RadiusXProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IRectangleStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
422
+ @winrt_classmethod
423
+ def get_RadiusYProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IRectangleStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
424
+ RadiusX = property(get_RadiusX, put_RadiusX)
425
+ RadiusY = property(get_RadiusY, put_RadiusY)
426
+ _Rectangle_Meta_.RadiusXProperty = property(get_RadiusXProperty, None)
427
+ _Rectangle_Meta_.RadiusYProperty = property(get_RadiusYProperty, None)
428
+ class _Shape_Meta_(ComPtr.__class__):
429
+ pass
430
+ class Shape(ComPtr, metaclass=_Shape_Meta_):
431
+ extends: win32more.Microsoft.UI.Xaml.FrameworkElement
432
+ default_interface: win32more.Microsoft.UI.Xaml.Shapes.IShape
433
+ _classid_ = 'Microsoft.UI.Xaml.Shapes.Shape'
434
+ def __init__(self, *args, **kwargs):
435
+ if kwargs:
436
+ super().__init__(**kwargs)
437
+ elif len(args) == 0:
438
+ super().__init__(move=win32more.Microsoft.UI.Xaml.Shapes.Shape.CreateInstance(*args, None, None))
439
+ else:
440
+ raise ValueError('no matched constructor')
441
+ @winrt_factorymethod
442
+ def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Shapes.Shape: ...
443
+ @winrt_mixinmethod
444
+ def get_Fill(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
445
+ @winrt_mixinmethod
446
+ def put_Fill(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
447
+ @winrt_mixinmethod
448
+ def get_Stroke(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
449
+ @winrt_mixinmethod
450
+ def put_Stroke(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
451
+ @winrt_mixinmethod
452
+ def get_StrokeMiterLimit(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> Double: ...
453
+ @winrt_mixinmethod
454
+ def put_StrokeMiterLimit(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: Double) -> Void: ...
455
+ @winrt_mixinmethod
456
+ def get_StrokeThickness(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> Double: ...
457
+ @winrt_mixinmethod
458
+ def put_StrokeThickness(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: Double) -> Void: ...
459
+ @winrt_mixinmethod
460
+ def get_StrokeStartLineCap(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.PenLineCap: ...
461
+ @winrt_mixinmethod
462
+ def put_StrokeStartLineCap(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.PenLineCap) -> Void: ...
463
+ @winrt_mixinmethod
464
+ def get_StrokeEndLineCap(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.PenLineCap: ...
465
+ @winrt_mixinmethod
466
+ def put_StrokeEndLineCap(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.PenLineCap) -> Void: ...
467
+ @winrt_mixinmethod
468
+ def get_StrokeLineJoin(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.PenLineJoin: ...
469
+ @winrt_mixinmethod
470
+ def put_StrokeLineJoin(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.PenLineJoin) -> Void: ...
471
+ @winrt_mixinmethod
472
+ def get_StrokeDashOffset(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> Double: ...
473
+ @winrt_mixinmethod
474
+ def put_StrokeDashOffset(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: Double) -> Void: ...
475
+ @winrt_mixinmethod
476
+ def get_StrokeDashCap(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.PenLineCap: ...
477
+ @winrt_mixinmethod
478
+ def put_StrokeDashCap(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.PenLineCap) -> Void: ...
479
+ @winrt_mixinmethod
480
+ def get_StrokeDashArray(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.DoubleCollection: ...
481
+ @winrt_mixinmethod
482
+ def put_StrokeDashArray(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.DoubleCollection) -> Void: ...
483
+ @winrt_mixinmethod
484
+ def get_Stretch(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.Stretch: ...
485
+ @winrt_mixinmethod
486
+ def put_Stretch(self: win32more.Microsoft.UI.Xaml.Shapes.IShape, value: win32more.Microsoft.UI.Xaml.Media.Stretch) -> Void: ...
487
+ @winrt_mixinmethod
488
+ def get_GeometryTransform(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
489
+ @winrt_mixinmethod
490
+ def GetAlphaMask(self: win32more.Microsoft.UI.Xaml.Shapes.IShape) -> win32more.Microsoft.UI.Composition.CompositionBrush: ...
491
+ @winrt_classmethod
492
+ def get_FillProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
493
+ @winrt_classmethod
494
+ def get_StrokeProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
495
+ @winrt_classmethod
496
+ def get_StrokeMiterLimitProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
497
+ @winrt_classmethod
498
+ def get_StrokeThicknessProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
499
+ @winrt_classmethod
500
+ def get_StrokeStartLineCapProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
501
+ @winrt_classmethod
502
+ def get_StrokeEndLineCapProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
503
+ @winrt_classmethod
504
+ def get_StrokeLineJoinProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
505
+ @winrt_classmethod
506
+ def get_StrokeDashOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
507
+ @winrt_classmethod
508
+ def get_StrokeDashCapProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
509
+ @winrt_classmethod
510
+ def get_StrokeDashArrayProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
511
+ @winrt_classmethod
512
+ def get_StretchProperty(cls: win32more.Microsoft.UI.Xaml.Shapes.IShapeStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
513
+ Fill = property(get_Fill, put_Fill)
514
+ GeometryTransform = property(get_GeometryTransform, None)
515
+ Stretch = property(get_Stretch, put_Stretch)
516
+ Stroke = property(get_Stroke, put_Stroke)
517
+ StrokeDashArray = property(get_StrokeDashArray, put_StrokeDashArray)
518
+ StrokeDashCap = property(get_StrokeDashCap, put_StrokeDashCap)
519
+ StrokeDashOffset = property(get_StrokeDashOffset, put_StrokeDashOffset)
520
+ StrokeEndLineCap = property(get_StrokeEndLineCap, put_StrokeEndLineCap)
521
+ StrokeLineJoin = property(get_StrokeLineJoin, put_StrokeLineJoin)
522
+ StrokeMiterLimit = property(get_StrokeMiterLimit, put_StrokeMiterLimit)
523
+ StrokeStartLineCap = property(get_StrokeStartLineCap, put_StrokeStartLineCap)
524
+ StrokeThickness = property(get_StrokeThickness, put_StrokeThickness)
525
+ _Shape_Meta_.FillProperty = property(get_FillProperty, None)
526
+ _Shape_Meta_.StretchProperty = property(get_StretchProperty, None)
527
+ _Shape_Meta_.StrokeDashArrayProperty = property(get_StrokeDashArrayProperty, None)
528
+ _Shape_Meta_.StrokeDashCapProperty = property(get_StrokeDashCapProperty, None)
529
+ _Shape_Meta_.StrokeDashOffsetProperty = property(get_StrokeDashOffsetProperty, None)
530
+ _Shape_Meta_.StrokeEndLineCapProperty = property(get_StrokeEndLineCapProperty, None)
531
+ _Shape_Meta_.StrokeLineJoinProperty = property(get_StrokeLineJoinProperty, None)
532
+ _Shape_Meta_.StrokeMiterLimitProperty = property(get_StrokeMiterLimitProperty, None)
533
+ _Shape_Meta_.StrokeProperty = property(get_StrokeProperty, None)
534
+ _Shape_Meta_.StrokeStartLineCapProperty = property(get_StrokeStartLineCapProperty, None)
535
+ _Shape_Meta_.StrokeThicknessProperty = property(get_StrokeThicknessProperty, None)
536
+
537
+
538
+ make_ready(__name__)
@@ -0,0 +1,39 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.UI.Xaml.Markup
4
+ import win32more.Microsoft.UI.Xaml.XamlTypeInfo
5
+ import win32more.Windows.UI.Xaml.Interop
6
+ class IXamlControlsXamlMetaDataProvider(ComPtr):
7
+ extends: IInspectable
8
+ _classid_ = 'Microsoft.UI.Xaml.XamlTypeInfo.IXamlControlsXamlMetaDataProvider'
9
+ _iid_ = Guid('{17fa3f58-3472-5aa2-a0f8-1ab8a519573d}')
10
+ class IXamlControlsXamlMetaDataProviderStatics(ComPtr):
11
+ extends: IInspectable
12
+ _classid_ = 'Microsoft.UI.Xaml.XamlTypeInfo.IXamlControlsXamlMetaDataProviderStatics'
13
+ _iid_ = Guid('{2d7eb3fd-ecdb-5084-b7e0-12f9598381ef}')
14
+ @winrt_commethod(6)
15
+ def Initialize(self) -> Void: ...
16
+ class XamlControlsXamlMetaDataProvider(ComPtr):
17
+ extends: IInspectable
18
+ default_interface: win32more.Microsoft.UI.Xaml.Markup.IXamlMetadataProvider
19
+ _classid_ = 'Microsoft.UI.Xaml.XamlTypeInfo.XamlControlsXamlMetaDataProvider'
20
+ def __init__(self, *args, **kwargs):
21
+ if kwargs:
22
+ super().__init__(**kwargs)
23
+ elif len(args) == 0:
24
+ super().__init__(move=win32more.Microsoft.UI.Xaml.XamlTypeInfo.XamlControlsXamlMetaDataProvider.CreateInstance(*args))
25
+ else:
26
+ raise ValueError('no matched constructor')
27
+ @winrt_activatemethod
28
+ def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.XamlTypeInfo.XamlControlsXamlMetaDataProvider: ...
29
+ @winrt_mixinmethod
30
+ def GetXamlType(self: win32more.Microsoft.UI.Xaml.Markup.IXamlMetadataProvider, type: win32more.Windows.UI.Xaml.Interop.TypeName) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
31
+ @winrt_mixinmethod
32
+ def GetXamlTypeByFullName(self: win32more.Microsoft.UI.Xaml.Markup.IXamlMetadataProvider, fullName: WinRT_String) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
33
+ @winrt_mixinmethod
34
+ def GetXmlnsDefinitions(self: win32more.Microsoft.UI.Xaml.Markup.IXamlMetadataProvider) -> ReceiveArray[win32more.Microsoft.UI.Xaml.Markup.XmlnsDefinition]: ...
35
+ @winrt_classmethod
36
+ def Initialize(cls: win32more.Microsoft.UI.Xaml.XamlTypeInfo.IXamlControlsXamlMetaDataProviderStatics) -> Void: ...
37
+
38
+
39
+ make_ready(__name__)