win32more-Microsoft.WindowsAppSDK 0.7.1.5.250108004__py2.py3-none-any.whl → 0.7.1.6.240829007__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 +1 -1
- win32more/Microsoft/UI/Composition/Core/__init__.py +2 -2
- win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +4 -4
- win32more/Microsoft/UI/Composition/Interactions/__init__.py +5 -5
- win32more/Microsoft/UI/Composition/Scenes/__init__.py +61 -61
- win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +32 -32
- win32more/Microsoft/UI/Composition/__init__.py +103 -103
- win32more/Microsoft/UI/Content/__init__.py +39 -39
- win32more/Microsoft/UI/Dispatching/__init__.py +6 -6
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +10 -10
- win32more/Microsoft/UI/Input/__init__.py +288 -66
- win32more/Microsoft/UI/Windowing/__init__.py +5 -5
- win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +23 -0
- win32more/Microsoft/UI/Xaml/Controls/__init__.py +219 -3
- win32more/Microsoft/UI/Xaml/__init__.py +12 -2
- win32more/Microsoft/UI/__init__.py +8 -0
- win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +1 -1
- win32more/Microsoft/Windows/Globalization/__init__.py +38 -0
- win32more/Microsoft/Windows/Management/Deployment/__init__.py +62 -1
- win32more/Microsoft/Windows/Storage/__init__.py +178 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +1 -1
- win32more/appsdk/versioninfo.py +2 -2
- 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.7.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/METADATA +2 -1
- {win32more_microsoft_windowsappsdk-0.7.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/RECORD +29 -29
- win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +0 -7
- win32more/Microsoft/Web/WebView2/Core/__init__.py +0 -4686
- {win32more_microsoft_windowsappsdk-0.7.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/WHEEL +0 -0
- {win32more_microsoft_windowsappsdk-0.7.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +0 -0
|
@@ -14,16 +14,16 @@ class ContentCoordinateConverter(ComPtr):
|
|
|
14
14
|
default_interface: win32more.Microsoft.UI.Content.IContentCoordinateConverter
|
|
15
15
|
_classid_ = 'Microsoft.UI.Content.ContentCoordinateConverter'
|
|
16
16
|
@winrt_mixinmethod
|
|
17
|
-
def
|
|
17
|
+
def ConvertLocalToScreenWithRect(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localRect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Graphics.RectInt32: ...
|
|
18
18
|
@winrt_mixinmethod
|
|
19
19
|
def ConvertLocalToScreenWithPoints(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localPoints: PassArray[win32more.Windows.Foundation.Point]) -> ReceiveArray[win32more.Windows.Graphics.PointInt32]: ...
|
|
20
20
|
@winrt_mixinmethod
|
|
21
21
|
def ConvertLocalToScreenWithPointsAndRoundingMode(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localPoints: PassArray[win32more.Windows.Foundation.Point], roundingMode: win32more.Microsoft.UI.Content.ContentCoordinateRoundingMode) -> ReceiveArray[win32more.Windows.Graphics.PointInt32]: ...
|
|
22
22
|
@winrt_mixinmethod
|
|
23
|
-
def ConvertLocalToScreenWithRect(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localRect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Graphics.RectInt32: ...
|
|
24
|
-
@winrt_mixinmethod
|
|
25
23
|
def ConvertLocalToScreenWithPoint(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localPoint: win32more.Windows.Foundation.Point) -> win32more.Windows.Graphics.PointInt32: ...
|
|
26
24
|
@winrt_mixinmethod
|
|
25
|
+
def ConvertScreenToLocalWithPoint(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, screenPoint: win32more.Windows.Graphics.PointInt32) -> win32more.Windows.Foundation.Point: ...
|
|
26
|
+
@winrt_mixinmethod
|
|
27
27
|
def ConvertScreenToLocalWithPoints(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, screenPoints: PassArray[win32more.Windows.Graphics.PointInt32]) -> ReceiveArray[win32more.Windows.Foundation.Point]: ...
|
|
28
28
|
@winrt_mixinmethod
|
|
29
29
|
def ConvertScreenToLocalWithRect(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, screenRect: win32more.Windows.Graphics.RectInt32) -> win32more.Windows.Foundation.Rect: ...
|
|
@@ -63,7 +63,9 @@ class ContentIsland(ComPtr):
|
|
|
63
63
|
default_interface: win32more.Microsoft.UI.Content.IContentIsland
|
|
64
64
|
_classid_ = 'Microsoft.UI.Content.ContentIsland'
|
|
65
65
|
@winrt_mixinmethod
|
|
66
|
-
def
|
|
66
|
+
def put_IsIslandVisible(self: win32more.Microsoft.UI.Content.IContentIsland, value: Boolean) -> Void: ...
|
|
67
|
+
@winrt_mixinmethod
|
|
68
|
+
def get_AppData(self: win32more.Microsoft.UI.Content.IContentIsland) -> IInspectable: ...
|
|
67
69
|
@winrt_mixinmethod
|
|
68
70
|
def put_AppData(self: win32more.Microsoft.UI.Content.IContentIsland, value: IInspectable) -> Void: ...
|
|
69
71
|
@winrt_mixinmethod
|
|
@@ -85,11 +87,11 @@ class ContentIsland(ComPtr):
|
|
|
85
87
|
@winrt_mixinmethod
|
|
86
88
|
def get_IsIslandEnabled(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
87
89
|
@winrt_mixinmethod
|
|
88
|
-
def
|
|
90
|
+
def put_IsIslandEnabled(self: win32more.Microsoft.UI.Content.IContentIsland, value: Boolean) -> Void: ...
|
|
89
91
|
@winrt_mixinmethod
|
|
90
92
|
def get_IsIslandVisible(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
91
93
|
@winrt_mixinmethod
|
|
92
|
-
def
|
|
94
|
+
def get_IsClosed(self: win32more.Microsoft.UI.IClosableNotifier) -> Boolean: ...
|
|
93
95
|
@winrt_mixinmethod
|
|
94
96
|
def get_IsSiteEnabled(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
95
97
|
@winrt_mixinmethod
|
|
@@ -113,11 +115,9 @@ class ContentIsland(ComPtr):
|
|
|
113
115
|
@winrt_mixinmethod
|
|
114
116
|
def remove_StateChanged(self: win32more.Microsoft.UI.Content.IContentIsland, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
115
117
|
@winrt_mixinmethod
|
|
116
|
-
def get_ActualSize(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
117
|
-
@winrt_mixinmethod
|
|
118
118
|
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
119
119
|
@winrt_mixinmethod
|
|
120
|
-
def
|
|
120
|
+
def get_ActualSize(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
121
121
|
@winrt_mixinmethod
|
|
122
122
|
def add_Closed(self: win32more.Microsoft.UI.IClosableNotifier, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
123
123
|
@winrt_mixinmethod
|
|
@@ -166,12 +166,12 @@ class ContentIslandAutomationProviderRequestedEventArgs(ComPtr):
|
|
|
166
166
|
default_interface: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs
|
|
167
167
|
_classid_ = 'Microsoft.UI.Content.ContentIslandAutomationProviderRequestedEventArgs'
|
|
168
168
|
@winrt_mixinmethod
|
|
169
|
+
def get_Handled(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs) -> Boolean: ...
|
|
170
|
+
@winrt_mixinmethod
|
|
169
171
|
def put_AutomationProvider(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs, value: IInspectable) -> Void: ...
|
|
170
172
|
@winrt_mixinmethod
|
|
171
173
|
def get_AutomationProvider(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs) -> IInspectable: ...
|
|
172
174
|
@winrt_mixinmethod
|
|
173
|
-
def get_Handled(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs) -> Boolean: ...
|
|
174
|
-
@winrt_mixinmethod
|
|
175
175
|
def put_Handled(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs, value: Boolean) -> Void: ...
|
|
176
176
|
AutomationProvider = property(get_AutomationProvider, put_AutomationProvider)
|
|
177
177
|
Handled = property(get_Handled, put_Handled)
|
|
@@ -180,13 +180,13 @@ class ContentIslandEnvironment(ComPtr):
|
|
|
180
180
|
default_interface: win32more.Microsoft.UI.Content.IContentIslandEnvironment
|
|
181
181
|
_classid_ = 'Microsoft.UI.Content.ContentIslandEnvironment'
|
|
182
182
|
@winrt_mixinmethod
|
|
183
|
-
def remove_SettingChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
184
|
-
@winrt_mixinmethod
|
|
185
183
|
def get_DisplayId(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment) -> win32more.Microsoft.UI.DisplayId: ...
|
|
186
184
|
@winrt_mixinmethod
|
|
185
|
+
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment) -> win32more.Microsoft.UI.WindowId: ...
|
|
186
|
+
@winrt_mixinmethod
|
|
187
187
|
def add_SettingChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIslandEnvironment, win32more.Microsoft.UI.Content.ContentEnvironmentSettingChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
188
188
|
@winrt_mixinmethod
|
|
189
|
-
def
|
|
189
|
+
def remove_SettingChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
190
190
|
@winrt_mixinmethod
|
|
191
191
|
def add_StateChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIslandEnvironment, win32more.Microsoft.UI.Content.ContentEnvironmentStateChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
192
192
|
@winrt_mixinmethod
|
|
@@ -200,10 +200,10 @@ class ContentIslandStateChangedEventArgs(ComPtr):
|
|
|
200
200
|
default_interface: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs
|
|
201
201
|
_classid_ = 'Microsoft.UI.Content.ContentIslandStateChangedEventArgs'
|
|
202
202
|
@winrt_mixinmethod
|
|
203
|
-
def get_DidActualSizeChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
204
|
-
@winrt_mixinmethod
|
|
205
203
|
def get_DidSiteEnabledChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
206
204
|
@winrt_mixinmethod
|
|
205
|
+
def get_DidActualSizeChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
206
|
+
@winrt_mixinmethod
|
|
207
207
|
def get_DidSiteVisibleChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
208
208
|
@winrt_mixinmethod
|
|
209
209
|
def get_DidLayoutDirectionChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
@@ -223,7 +223,7 @@ class ContentSite(ComPtr):
|
|
|
223
223
|
default_interface: win32more.Microsoft.UI.Content.IContentSite
|
|
224
224
|
_classid_ = 'Microsoft.UI.Content.ContentSite'
|
|
225
225
|
@winrt_mixinmethod
|
|
226
|
-
def
|
|
226
|
+
def get_RasterizationScale(self: win32more.Microsoft.UI.Content.IContentSite) -> Single: ...
|
|
227
227
|
@winrt_mixinmethod
|
|
228
228
|
def put_ActualSize(self: win32more.Microsoft.UI.Content.IContentSite, value: win32more.Windows.Foundation.Numerics.Vector2) -> Void: ...
|
|
229
229
|
@winrt_mixinmethod
|
|
@@ -233,13 +233,13 @@ class ContentSite(ComPtr):
|
|
|
233
233
|
@winrt_mixinmethod
|
|
234
234
|
def get_CoordinateConverter(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
235
235
|
@winrt_mixinmethod
|
|
236
|
-
def
|
|
236
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
237
237
|
@winrt_mixinmethod
|
|
238
238
|
def get_Environment(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentSiteEnvironment: ...
|
|
239
239
|
@winrt_mixinmethod
|
|
240
240
|
def get_IsConnected(self: win32more.Microsoft.UI.Content.IContentSite) -> Boolean: ...
|
|
241
241
|
@winrt_mixinmethod
|
|
242
|
-
def
|
|
242
|
+
def get_IsSiteEnabled(self: win32more.Microsoft.UI.Content.IContentSite) -> Boolean: ...
|
|
243
243
|
@winrt_mixinmethod
|
|
244
244
|
def put_IsSiteEnabled(self: win32more.Microsoft.UI.Content.IContentSite, value: Boolean) -> Void: ...
|
|
245
245
|
@winrt_mixinmethod
|
|
@@ -259,7 +259,7 @@ class ContentSite(ComPtr):
|
|
|
259
259
|
@winrt_mixinmethod
|
|
260
260
|
def put_ParentScale(self: win32more.Microsoft.UI.Content.IContentSite, value: Single) -> Void: ...
|
|
261
261
|
@winrt_mixinmethod
|
|
262
|
-
def
|
|
262
|
+
def get_View(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentSiteView: ...
|
|
263
263
|
@winrt_mixinmethod
|
|
264
264
|
def get_RequestedSize(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
265
265
|
@winrt_mixinmethod
|
|
@@ -267,7 +267,7 @@ class ContentSite(ComPtr):
|
|
|
267
267
|
@winrt_mixinmethod
|
|
268
268
|
def put_ShouldApplyRasterizationScale(self: win32more.Microsoft.UI.Content.IContentSite, value: Boolean) -> Void: ...
|
|
269
269
|
@winrt_mixinmethod
|
|
270
|
-
def
|
|
270
|
+
def get_ActualSize(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
271
271
|
@winrt_mixinmethod
|
|
272
272
|
def GetIslandStateChangeDeferral(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentDeferral: ...
|
|
273
273
|
@winrt_mixinmethod
|
|
@@ -310,17 +310,17 @@ class ContentSiteEnvironment(ComPtr):
|
|
|
310
310
|
default_interface: win32more.Microsoft.UI.Content.IContentSiteEnvironment
|
|
311
311
|
_classid_ = 'Microsoft.UI.Content.ContentSiteEnvironment'
|
|
312
312
|
@winrt_mixinmethod
|
|
313
|
-
def
|
|
313
|
+
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.WindowId: ...
|
|
314
|
+
@winrt_mixinmethod
|
|
315
|
+
def put_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, value: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
314
316
|
@winrt_mixinmethod
|
|
315
317
|
def get_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.DisplayId: ...
|
|
316
318
|
@winrt_mixinmethod
|
|
317
|
-
def
|
|
319
|
+
def put_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, value: win32more.Microsoft.UI.DisplayId) -> Void: ...
|
|
318
320
|
@winrt_mixinmethod
|
|
319
321
|
def get_View(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.Content.ContentSiteEnvironmentView: ...
|
|
320
322
|
@winrt_mixinmethod
|
|
321
323
|
def NotifySettingChanged(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, setting: hstr) -> Void: ...
|
|
322
|
-
@winrt_mixinmethod
|
|
323
|
-
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.WindowId: ...
|
|
324
324
|
AppWindowId = property(get_AppWindowId, put_AppWindowId)
|
|
325
325
|
DisplayId = property(get_DisplayId, put_DisplayId)
|
|
326
326
|
View = property(get_View, None)
|
|
@@ -346,11 +346,11 @@ class ContentSiteView(ComPtr):
|
|
|
346
346
|
default_interface: win32more.Microsoft.UI.Content.IContentSiteView
|
|
347
347
|
_classid_ = 'Microsoft.UI.Content.ContentSiteView'
|
|
348
348
|
@winrt_mixinmethod
|
|
349
|
-
def
|
|
349
|
+
def get_ActualSize(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
350
350
|
@winrt_mixinmethod
|
|
351
351
|
def get_ClientSize(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
352
352
|
@winrt_mixinmethod
|
|
353
|
-
def
|
|
353
|
+
def get_CoordinateConverter(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
354
354
|
@winrt_mixinmethod
|
|
355
355
|
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
356
356
|
@winrt_mixinmethod
|
|
@@ -398,9 +398,9 @@ class DesktopChildSiteBridge(ComPtr):
|
|
|
398
398
|
@winrt_mixinmethod
|
|
399
399
|
def get_ResizePolicy(self: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge) -> win32more.Microsoft.UI.Content.ContentSizePolicy: ...
|
|
400
400
|
@winrt_mixinmethod
|
|
401
|
-
def get_SiteView(self: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge) -> win32more.Microsoft.UI.Content.ContentSiteView: ...
|
|
402
|
-
@winrt_mixinmethod
|
|
403
401
|
def put_ResizePolicy(self: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge, value: win32more.Microsoft.UI.Content.ContentSizePolicy) -> Void: ...
|
|
402
|
+
@winrt_mixinmethod
|
|
403
|
+
def get_SiteView(self: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge) -> win32more.Microsoft.UI.Content.ContentSiteView: ...
|
|
404
404
|
@winrt_classmethod
|
|
405
405
|
def Create(cls: win32more.Microsoft.UI.Content.IDesktopChildSiteBridgeStatics, compositor: win32more.Microsoft.UI.Composition.Compositor, parentWindowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Content.DesktopChildSiteBridge: ...
|
|
406
406
|
ResizePolicy = property(get_ResizePolicy, put_ResizePolicy)
|
|
@@ -411,17 +411,17 @@ class DesktopSiteBridge(ComPtr):
|
|
|
411
411
|
default_interface: win32more.Microsoft.UI.Content.IDesktopSiteBridge
|
|
412
412
|
_classid_ = 'Microsoft.UI.Content.DesktopSiteBridge'
|
|
413
413
|
@winrt_mixinmethod
|
|
414
|
-
def
|
|
414
|
+
def Show(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
415
415
|
@winrt_mixinmethod
|
|
416
|
-
def
|
|
416
|
+
def get_LayoutDirectionOverride(self: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Windows.Foundation.IReference[win32more.Microsoft.UI.Content.ContentLayoutDirection]: ...
|
|
417
417
|
@winrt_mixinmethod
|
|
418
|
-
def
|
|
418
|
+
def put_LayoutDirectionOverride(self: win32more.Microsoft.UI.Content.IContentSiteBridge, value: win32more.Windows.Foundation.IReference[win32more.Microsoft.UI.Content.ContentLayoutDirection]) -> Void: ...
|
|
419
419
|
@winrt_mixinmethod
|
|
420
|
-
def
|
|
420
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
421
421
|
@winrt_mixinmethod
|
|
422
|
-
def
|
|
422
|
+
def get_IsVisible(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Boolean: ...
|
|
423
423
|
@winrt_mixinmethod
|
|
424
|
-
def
|
|
424
|
+
def get_IsEnabled(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Boolean: ...
|
|
425
425
|
@winrt_mixinmethod
|
|
426
426
|
def Connect(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge, content: win32more.Microsoft.UI.Content.ContentIsland) -> Void: ...
|
|
427
427
|
@winrt_mixinmethod
|
|
@@ -437,7 +437,7 @@ class DesktopSiteBridge(ComPtr):
|
|
|
437
437
|
@winrt_mixinmethod
|
|
438
438
|
def MoveInZOrderAtTop(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
439
439
|
@winrt_mixinmethod
|
|
440
|
-
def
|
|
440
|
+
def MoveInZOrderBelow(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge, windowId: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
441
441
|
@winrt_mixinmethod
|
|
442
442
|
def get_IsClosed(self: win32more.Microsoft.UI.IClosableNotifier) -> Boolean: ...
|
|
443
443
|
@winrt_mixinmethod
|
|
@@ -451,11 +451,11 @@ class DesktopSiteBridge(ComPtr):
|
|
|
451
451
|
@winrt_mixinmethod
|
|
452
452
|
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
453
453
|
@winrt_mixinmethod
|
|
454
|
-
def
|
|
455
|
-
@winrt_mixinmethod
|
|
456
|
-
def put_LayoutDirectionOverride(self: win32more.Microsoft.UI.Content.IContentSiteBridge, value: win32more.Windows.Foundation.IReference[win32more.Microsoft.UI.Content.ContentLayoutDirection]) -> Void: ...
|
|
454
|
+
def get_WindowId(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> win32more.Microsoft.UI.WindowId: ...
|
|
457
455
|
@winrt_mixinmethod
|
|
458
456
|
def get_OverrideScale(self: win32more.Microsoft.UI.Content.IContentSiteBridge) -> Single: ...
|
|
457
|
+
@winrt_mixinmethod
|
|
458
|
+
def put_OverrideScale(self: win32more.Microsoft.UI.Content.IContentSiteBridge, value: Single) -> Void: ...
|
|
459
459
|
@winrt_classmethod
|
|
460
460
|
def IsSupported(cls: win32more.Microsoft.UI.Content.IDesktopSiteBridgeStatics) -> Boolean: ...
|
|
461
461
|
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
@@ -22,7 +22,7 @@ class DispatcherQueue(ComPtr):
|
|
|
22
22
|
default_interface: win32more.Microsoft.UI.Dispatching.IDispatcherQueue
|
|
23
23
|
_classid_ = 'Microsoft.UI.Dispatching.DispatcherQueue'
|
|
24
24
|
@winrt_mixinmethod
|
|
25
|
-
def
|
|
25
|
+
def remove_ShutdownCompleted(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
26
26
|
@winrt_mixinmethod
|
|
27
27
|
def TryEnqueue(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, callback: win32more.Microsoft.UI.Dispatching.DispatcherQueueHandler) -> Boolean: ...
|
|
28
28
|
@winrt_mixinmethod
|
|
@@ -34,7 +34,7 @@ class DispatcherQueue(ComPtr):
|
|
|
34
34
|
@winrt_mixinmethod
|
|
35
35
|
def add_ShutdownCompleted(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Dispatching.DispatcherQueue, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
36
36
|
@winrt_mixinmethod
|
|
37
|
-
def
|
|
37
|
+
def add_ShutdownStarting(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Dispatching.DispatcherQueue, win32more.Microsoft.UI.Dispatching.DispatcherQueueShutdownStartingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
38
38
|
@winrt_mixinmethod
|
|
39
39
|
def get_HasThreadAccess(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue2) -> Boolean: ...
|
|
40
40
|
@winrt_mixinmethod
|
|
@@ -42,7 +42,7 @@ class DispatcherQueue(ComPtr):
|
|
|
42
42
|
@winrt_mixinmethod
|
|
43
43
|
def EnsureSystemDispatcherQueue(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue3) -> Void: ...
|
|
44
44
|
@winrt_mixinmethod
|
|
45
|
-
def
|
|
45
|
+
def RunEventLoop(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue3) -> Void: ...
|
|
46
46
|
@winrt_mixinmethod
|
|
47
47
|
def RunEventLoopWithOptions(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue3, options: win32more.Microsoft.UI.Dispatching.DispatcherRunOptions, deferral: win32more.Microsoft.UI.Dispatching.DispatcherExitDeferral) -> Void: ...
|
|
48
48
|
@winrt_mixinmethod
|
|
@@ -95,14 +95,14 @@ class DispatcherQueueTimer(ComPtr):
|
|
|
95
95
|
default_interface: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer
|
|
96
96
|
_classid_ = 'Microsoft.UI.Dispatching.DispatcherQueueTimer'
|
|
97
97
|
@winrt_mixinmethod
|
|
98
|
-
def
|
|
98
|
+
def get_IsRunning(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer) -> Boolean: ...
|
|
99
99
|
@winrt_mixinmethod
|
|
100
100
|
def put_Interval(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
101
101
|
@winrt_mixinmethod
|
|
102
|
-
def get_IsRunning(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer) -> Boolean: ...
|
|
103
|
-
@winrt_mixinmethod
|
|
104
102
|
def put_IsRepeating(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer, value: Boolean) -> Void: ...
|
|
105
103
|
@winrt_mixinmethod
|
|
104
|
+
def get_IsRepeating(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer) -> Boolean: ...
|
|
105
|
+
@winrt_mixinmethod
|
|
106
106
|
def get_Interval(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
107
107
|
@winrt_mixinmethod
|
|
108
108
|
def Start(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer) -> Void: ...
|
|
@@ -12,12 +12,12 @@ class DragDropManager(ComPtr):
|
|
|
12
12
|
default_interface: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager
|
|
13
13
|
_classid_ = 'Microsoft.UI.Input.DragDrop.DragDropManager'
|
|
14
14
|
@winrt_mixinmethod
|
|
15
|
-
def add_TargetRequested(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.DragDrop.DragDropManager, win32more.Microsoft.UI.Input.DragDrop.DropOperationTargetRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
16
|
-
@winrt_mixinmethod
|
|
17
15
|
def put_AreConcurrentOperationsEnabled(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, value: Boolean) -> Void: ...
|
|
18
16
|
@winrt_mixinmethod
|
|
19
17
|
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
20
18
|
@winrt_mixinmethod
|
|
19
|
+
def add_TargetRequested(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.DragDrop.DragDropManager, win32more.Microsoft.UI.Input.DragDrop.DropOperationTargetRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
20
|
+
@winrt_mixinmethod
|
|
21
21
|
def remove_TargetRequested(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
22
22
|
@winrt_mixinmethod
|
|
23
23
|
def get_AreConcurrentOperationsEnabled(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager) -> Boolean: ...
|
|
@@ -38,10 +38,10 @@ class DragInfo(ComPtr):
|
|
|
38
38
|
default_interface: win32more.Microsoft.UI.Input.DragDrop.IDragInfo
|
|
39
39
|
_classid_ = 'Microsoft.UI.Input.DragDrop.DragInfo'
|
|
40
40
|
@winrt_mixinmethod
|
|
41
|
-
def get_Position(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.Foundation.Point: ...
|
|
42
|
-
@winrt_mixinmethod
|
|
43
41
|
def get_Data(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackageView: ...
|
|
44
42
|
@winrt_mixinmethod
|
|
43
|
+
def get_Position(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.Foundation.Point: ...
|
|
44
|
+
@winrt_mixinmethod
|
|
45
45
|
def get_Modifiers(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Microsoft.UI.Input.DragDrop.DragDropModifiers: ...
|
|
46
46
|
@winrt_mixinmethod
|
|
47
47
|
def get_AllowedOperations(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackageOperation: ...
|
|
@@ -64,17 +64,17 @@ class DragOperation(ComPtr):
|
|
|
64
64
|
@winrt_activatemethod
|
|
65
65
|
def CreateInstance(cls) -> win32more.Microsoft.UI.Input.DragDrop.DragOperation: ...
|
|
66
66
|
@winrt_mixinmethod
|
|
67
|
-
def
|
|
67
|
+
def get_AllowedOperations(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackageOperation: ...
|
|
68
68
|
@winrt_mixinmethod
|
|
69
69
|
def put_AllowedOperations(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation, value: win32more.Windows.ApplicationModel.DataTransfer.DataPackageOperation) -> Void: ...
|
|
70
70
|
@winrt_mixinmethod
|
|
71
|
-
def
|
|
71
|
+
def get_Data(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackage: ...
|
|
72
72
|
@winrt_mixinmethod
|
|
73
73
|
def get_DragUIContentMode(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation) -> win32more.Microsoft.UI.Input.DragDrop.DragUIContentMode: ...
|
|
74
74
|
@winrt_mixinmethod
|
|
75
75
|
def put_DragUIContentMode(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation, value: win32more.Microsoft.UI.Input.DragDrop.DragUIContentMode) -> Void: ...
|
|
76
76
|
@winrt_mixinmethod
|
|
77
|
-
def
|
|
77
|
+
def SetDragUIContentFromSoftwareBitmap(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation, bitmap: win32more.Windows.Graphics.Imaging.SoftwareBitmap) -> Void: ...
|
|
78
78
|
@winrt_mixinmethod
|
|
79
79
|
def SetDragUIContentFromSoftwareBitmap2(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation, bitmap: win32more.Windows.Graphics.Imaging.SoftwareBitmap, anchorPoint: win32more.Windows.Foundation.Point) -> Void: ...
|
|
80
80
|
@winrt_mixinmethod
|
|
@@ -92,11 +92,11 @@ class DragUIOverride(ComPtr):
|
|
|
92
92
|
default_interface: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride
|
|
93
93
|
_classid_ = 'Microsoft.UI.Input.DragDrop.DragUIOverride'
|
|
94
94
|
@winrt_mixinmethod
|
|
95
|
-
def
|
|
95
|
+
def get_IsCaptionVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride) -> Boolean: ...
|
|
96
96
|
@winrt_mixinmethod
|
|
97
97
|
def put_Caption(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: hstr) -> Void: ...
|
|
98
98
|
@winrt_mixinmethod
|
|
99
|
-
def
|
|
99
|
+
def get_Caption(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride) -> hstr: ...
|
|
100
100
|
@winrt_mixinmethod
|
|
101
101
|
def put_IsCaptionVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: Boolean) -> Void: ...
|
|
102
102
|
@winrt_mixinmethod
|
|
@@ -106,7 +106,7 @@ class DragUIOverride(ComPtr):
|
|
|
106
106
|
@winrt_mixinmethod
|
|
107
107
|
def get_IsGlyphVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride) -> Boolean: ...
|
|
108
108
|
@winrt_mixinmethod
|
|
109
|
-
def
|
|
109
|
+
def put_IsGlyphVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: Boolean) -> Void: ...
|
|
110
110
|
@winrt_mixinmethod
|
|
111
111
|
def Clear(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride) -> Void: ...
|
|
112
112
|
@winrt_mixinmethod
|