win32more-Microsoft.WindowsAppSDK 0.6.1.5.240227000__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.
- win32more/Microsoft/Foundation/__init__.py +7 -0
- win32more/Microsoft/Graphics/DirectX/__init__.py +167 -0
- win32more/Microsoft/Graphics/Display/__init__.py +174 -0
- win32more/Microsoft/UI/Composition/Core/__init__.py +52 -0
- win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +63 -0
- win32more/Microsoft/UI/Composition/Effects/__init__.py +96 -0
- win32more/Microsoft/UI/Composition/Interactions/__init__.py +951 -0
- win32more/Microsoft/UI/Composition/Scenes/__init__.py +671 -0
- win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +356 -0
- win32more/Microsoft/UI/Composition/__init__.py +4793 -0
- win32more/Microsoft/UI/Content/__init__.py +918 -0
- win32more/Microsoft/UI/Dispatching/__init__.py +241 -0
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +235 -0
- win32more/Microsoft/UI/Input/Interop/__init__.py +19 -0
- win32more/Microsoft/UI/Input/__init__.py +1927 -0
- win32more/Microsoft/UI/System/__init__.py +46 -0
- win32more/Microsoft/UI/Text/__init__.py +1090 -0
- win32more/Microsoft/UI/Windowing/__init__.py +877 -0
- win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +3414 -0
- win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py +489 -0
- win32more/Microsoft/UI/Xaml/Automation/Text/__init__.py +17 -0
- win32more/Microsoft/UI/Xaml/Automation/__init__.py +1607 -0
- win32more/Microsoft/UI/Xaml/Controls/AnimatedVisuals/__init__.py +170 -0
- win32more/Microsoft/UI/Xaml/Controls/Primitives/__init__.py +6458 -0
- win32more/Microsoft/UI/Xaml/Controls/__init__.py +31159 -0
- win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +7 -0
- win32more/Microsoft/UI/Xaml/Data/__init__.py +670 -0
- win32more/Microsoft/UI/Xaml/Documents/__init__.py +2030 -0
- win32more/Microsoft/UI/Xaml/Hosting/__init__.py +329 -0
- win32more/Microsoft/UI/Xaml/Input/__init__.py +1985 -0
- win32more/Microsoft/UI/Xaml/Interop/__init__.py +148 -0
- win32more/Microsoft/UI/Xaml/Markup/__init__.py +391 -0
- win32more/Microsoft/UI/Xaml/Media/Animation/__init__.py +4167 -0
- win32more/Microsoft/UI/Xaml/Media/Imaging/__init__.py +632 -0
- win32more/Microsoft/UI/Xaml/Media/Media3D/__init__.py +373 -0
- win32more/Microsoft/UI/Xaml/Media/__init__.py +3510 -0
- win32more/Microsoft/UI/Xaml/Navigation/__init__.py +255 -0
- win32more/Microsoft/UI/Xaml/Printing/__init__.py +193 -0
- win32more/Microsoft/UI/Xaml/Resources/__init__.py +53 -0
- win32more/Microsoft/UI/Xaml/Shapes/__init__.py +538 -0
- win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py +39 -0
- win32more/Microsoft/UI/Xaml/__init__.py +6010 -0
- win32more/Microsoft/UI/__init__.py +912 -0
- win32more/Microsoft/Web/WebView2/Core/__init__.py +4685 -0
- win32more/Microsoft/Windows/AppLifecycle/__init__.py +180 -0
- win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +572 -0
- win32more/Microsoft/Windows/AppNotifications/__init__.py +333 -0
- win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py +244 -0
- win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +322 -0
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +114 -0
- win32more/Microsoft/Windows/Management/Deployment/__init__.py +1114 -0
- win32more/Microsoft/Windows/PushNotifications/__init__.py +146 -0
- win32more/Microsoft/Windows/Security/AccessControl/__init__.py +25 -0
- win32more/Microsoft/Windows/System/Power/__init__.py +223 -0
- win32more/Microsoft/Windows/System/__init__.py +78 -0
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +181 -0
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py +325 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +11 -0
- win32more/appsdk/versioninfo.py +3 -0
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/METADATA +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/RECORD +66 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/WHEEL +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +90 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Xaml.Interop
|
|
4
|
+
import win32more.Windows.Foundation
|
|
5
|
+
class BindableVectorChangedEventHandler(MulticastDelegate):
|
|
6
|
+
extends: IUnknown
|
|
7
|
+
_iid_ = Guid('{624cd4e1-d007-43b1-9c03-af4d3e6258c4}')
|
|
8
|
+
@winrt_commethod(3)
|
|
9
|
+
def Invoke(self, vector: win32more.Microsoft.UI.Xaml.Interop.IBindableObservableVector, e: IInspectable) -> Void: ...
|
|
10
|
+
class IBindableIterable(ComPtr):
|
|
11
|
+
extends: IInspectable
|
|
12
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.IBindableIterable'
|
|
13
|
+
_iid_ = Guid('{036d2c08-df29-41af-8aa2-d774be62ba6f}')
|
|
14
|
+
@winrt_commethod(6)
|
|
15
|
+
def First(self) -> win32more.Microsoft.UI.Xaml.Interop.IBindableIterator: ...
|
|
16
|
+
class IBindableIterator(ComPtr):
|
|
17
|
+
extends: IInspectable
|
|
18
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.IBindableIterator'
|
|
19
|
+
_iid_ = Guid('{6a1d6c07-076d-49f2-8314-f52c9c9a8331}')
|
|
20
|
+
@winrt_commethod(6)
|
|
21
|
+
def get_Current(self) -> IInspectable: ...
|
|
22
|
+
@winrt_commethod(7)
|
|
23
|
+
def get_HasCurrent(self) -> Boolean: ...
|
|
24
|
+
@winrt_commethod(8)
|
|
25
|
+
def MoveNext(self) -> Boolean: ...
|
|
26
|
+
Current = property(get_Current, None)
|
|
27
|
+
HasCurrent = property(get_HasCurrent, None)
|
|
28
|
+
class IBindableObservableVector(ComPtr):
|
|
29
|
+
extends: IInspectable
|
|
30
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.IBindableObservableVector'
|
|
31
|
+
_iid_ = Guid('{fe1eb536-7e7f-4f90-ac9a-474984aae512}')
|
|
32
|
+
@winrt_commethod(6)
|
|
33
|
+
def add_VectorChanged(self, handler: win32more.Microsoft.UI.Xaml.Interop.BindableVectorChangedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
34
|
+
@winrt_commethod(7)
|
|
35
|
+
def remove_VectorChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
36
|
+
VectorChanged = event()
|
|
37
|
+
class IBindableVector(ComPtr):
|
|
38
|
+
extends: IInspectable
|
|
39
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.IBindableVector'
|
|
40
|
+
_iid_ = Guid('{393de7de-6fd0-4c0d-bb71-47244a113e93}')
|
|
41
|
+
@winrt_commethod(6)
|
|
42
|
+
def GetAt(self, index: UInt32) -> IInspectable: ...
|
|
43
|
+
@winrt_commethod(7)
|
|
44
|
+
def get_Size(self) -> UInt32: ...
|
|
45
|
+
@winrt_commethod(8)
|
|
46
|
+
def GetView(self) -> win32more.Microsoft.UI.Xaml.Interop.IBindableVectorView: ...
|
|
47
|
+
@winrt_commethod(9)
|
|
48
|
+
def IndexOf(self, value: IInspectable, index: POINTER(UInt32)) -> Boolean: ...
|
|
49
|
+
@winrt_commethod(10)
|
|
50
|
+
def SetAt(self, index: UInt32, value: IInspectable) -> Void: ...
|
|
51
|
+
@winrt_commethod(11)
|
|
52
|
+
def InsertAt(self, index: UInt32, value: IInspectable) -> Void: ...
|
|
53
|
+
@winrt_commethod(12)
|
|
54
|
+
def RemoveAt(self, index: UInt32) -> Void: ...
|
|
55
|
+
@winrt_commethod(13)
|
|
56
|
+
def Append(self, value: IInspectable) -> Void: ...
|
|
57
|
+
@winrt_commethod(14)
|
|
58
|
+
def RemoveAtEnd(self) -> Void: ...
|
|
59
|
+
@winrt_commethod(15)
|
|
60
|
+
def Clear(self) -> Void: ...
|
|
61
|
+
Size = property(get_Size, None)
|
|
62
|
+
class IBindableVectorView(ComPtr):
|
|
63
|
+
extends: IInspectable
|
|
64
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.IBindableVectorView'
|
|
65
|
+
_iid_ = Guid('{346dd6e7-976e-4bc3-815d-ece243bc0f33}')
|
|
66
|
+
@winrt_commethod(6)
|
|
67
|
+
def GetAt(self, index: UInt32) -> IInspectable: ...
|
|
68
|
+
@winrt_commethod(7)
|
|
69
|
+
def get_Size(self) -> UInt32: ...
|
|
70
|
+
@winrt_commethod(8)
|
|
71
|
+
def IndexOf(self, value: IInspectable, index: POINTER(UInt32)) -> Boolean: ...
|
|
72
|
+
Size = property(get_Size, None)
|
|
73
|
+
class INotifyCollectionChanged(ComPtr):
|
|
74
|
+
extends: IInspectable
|
|
75
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.INotifyCollectionChanged'
|
|
76
|
+
_iid_ = Guid('{530155e1-28a5-5693-87ce-30724d95a06d}')
|
|
77
|
+
@winrt_commethod(6)
|
|
78
|
+
def add_CollectionChanged(self, handler: win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
79
|
+
@winrt_commethod(7)
|
|
80
|
+
def remove_CollectionChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
81
|
+
CollectionChanged = event()
|
|
82
|
+
class INotifyCollectionChangedEventArgs(ComPtr):
|
|
83
|
+
extends: IInspectable
|
|
84
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgs'
|
|
85
|
+
_iid_ = Guid('{da049ff2-d2e0-5fe8-8c7b-f87f26060b6f}')
|
|
86
|
+
@winrt_commethod(6)
|
|
87
|
+
def get_Action(self) -> win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedAction: ...
|
|
88
|
+
@winrt_commethod(7)
|
|
89
|
+
def get_NewItems(self) -> win32more.Microsoft.UI.Xaml.Interop.IBindableVector: ...
|
|
90
|
+
@winrt_commethod(8)
|
|
91
|
+
def get_OldItems(self) -> win32more.Microsoft.UI.Xaml.Interop.IBindableVector: ...
|
|
92
|
+
@winrt_commethod(9)
|
|
93
|
+
def get_NewStartingIndex(self) -> Int32: ...
|
|
94
|
+
@winrt_commethod(10)
|
|
95
|
+
def get_OldStartingIndex(self) -> Int32: ...
|
|
96
|
+
Action = property(get_Action, None)
|
|
97
|
+
NewItems = property(get_NewItems, None)
|
|
98
|
+
NewStartingIndex = property(get_NewStartingIndex, None)
|
|
99
|
+
OldItems = property(get_OldItems, None)
|
|
100
|
+
OldStartingIndex = property(get_OldStartingIndex, None)
|
|
101
|
+
class INotifyCollectionChangedEventArgsFactory(ComPtr):
|
|
102
|
+
extends: IInspectable
|
|
103
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgsFactory'
|
|
104
|
+
_iid_ = Guid('{5108eba4-4892-5a20-8374-a96815e0fd27}')
|
|
105
|
+
@winrt_commethod(6)
|
|
106
|
+
def CreateInstanceWithAllParameters(self, action: win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedAction, newItems: win32more.Microsoft.UI.Xaml.Interop.IBindableVector, oldItems: win32more.Microsoft.UI.Xaml.Interop.IBindableVector, newIndex: Int32, oldIndex: Int32, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedEventArgs: ...
|
|
107
|
+
class NotifyCollectionChangedAction(Enum, Int32):
|
|
108
|
+
Add = 0
|
|
109
|
+
Remove = 1
|
|
110
|
+
Replace = 2
|
|
111
|
+
Move = 3
|
|
112
|
+
Reset = 4
|
|
113
|
+
class NotifyCollectionChangedEventArgs(ComPtr):
|
|
114
|
+
extends: IInspectable
|
|
115
|
+
default_interface: win32more.Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgs
|
|
116
|
+
_classid_ = 'Microsoft.UI.Xaml.Interop.NotifyCollectionChangedEventArgs'
|
|
117
|
+
def __init__(self, *args, **kwargs):
|
|
118
|
+
if kwargs:
|
|
119
|
+
super().__init__(**kwargs)
|
|
120
|
+
elif len(args) == 5:
|
|
121
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedEventArgs.CreateInstanceWithAllParameters(*args, None, None))
|
|
122
|
+
else:
|
|
123
|
+
raise ValueError('no matched constructor')
|
|
124
|
+
@winrt_factorymethod
|
|
125
|
+
def CreateInstanceWithAllParameters(cls: win32more.Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgsFactory, action: win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedAction, newItems: win32more.Microsoft.UI.Xaml.Interop.IBindableVector, oldItems: win32more.Microsoft.UI.Xaml.Interop.IBindableVector, newIndex: Int32, oldIndex: Int32, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedEventArgs: ...
|
|
126
|
+
@winrt_mixinmethod
|
|
127
|
+
def get_Action(self: win32more.Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgs) -> win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedAction: ...
|
|
128
|
+
@winrt_mixinmethod
|
|
129
|
+
def get_NewItems(self: win32more.Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgs) -> win32more.Microsoft.UI.Xaml.Interop.IBindableVector: ...
|
|
130
|
+
@winrt_mixinmethod
|
|
131
|
+
def get_OldItems(self: win32more.Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgs) -> win32more.Microsoft.UI.Xaml.Interop.IBindableVector: ...
|
|
132
|
+
@winrt_mixinmethod
|
|
133
|
+
def get_NewStartingIndex(self: win32more.Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgs) -> Int32: ...
|
|
134
|
+
@winrt_mixinmethod
|
|
135
|
+
def get_OldStartingIndex(self: win32more.Microsoft.UI.Xaml.Interop.INotifyCollectionChangedEventArgs) -> Int32: ...
|
|
136
|
+
Action = property(get_Action, None)
|
|
137
|
+
NewItems = property(get_NewItems, None)
|
|
138
|
+
NewStartingIndex = property(get_NewStartingIndex, None)
|
|
139
|
+
OldItems = property(get_OldItems, None)
|
|
140
|
+
OldStartingIndex = property(get_OldStartingIndex, None)
|
|
141
|
+
class NotifyCollectionChangedEventHandler(MulticastDelegate):
|
|
142
|
+
extends: IUnknown
|
|
143
|
+
_iid_ = Guid('{8b0909dc-2005-5d93-bf8a-725f017baa8d}')
|
|
144
|
+
@winrt_commethod(3)
|
|
145
|
+
def Invoke(self, sender: IInspectable, e: win32more.Microsoft.UI.Xaml.Interop.NotifyCollectionChangedEventArgs) -> Void: ...
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
make_ready(__name__)
|
|
@@ -0,0 +1,391 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Xaml
|
|
4
|
+
import win32more.Microsoft.UI.Xaml.Markup
|
|
5
|
+
import win32more.Windows.Foundation
|
|
6
|
+
import win32more.Windows.Foundation.Collections
|
|
7
|
+
import win32more.Windows.Storage.Streams
|
|
8
|
+
import win32more.Windows.UI.Xaml.Interop
|
|
9
|
+
class IComponentConnector(ComPtr):
|
|
10
|
+
extends: IInspectable
|
|
11
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IComponentConnector'
|
|
12
|
+
_iid_ = Guid('{ad401812-b091-51d0-b915-2d682cd2af10}')
|
|
13
|
+
@winrt_commethod(6)
|
|
14
|
+
def Connect(self, connectionId: Int32, target: IInspectable) -> Void: ...
|
|
15
|
+
@winrt_commethod(7)
|
|
16
|
+
def GetBindingConnector(self, connectionId: Int32, target: IInspectable) -> win32more.Microsoft.UI.Xaml.Markup.IComponentConnector: ...
|
|
17
|
+
class IDataTemplateComponent(ComPtr):
|
|
18
|
+
extends: IInspectable
|
|
19
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IDataTemplateComponent'
|
|
20
|
+
_iid_ = Guid('{1743ddf7-38ba-58c9-a2a6-b0ae28713bee}')
|
|
21
|
+
@winrt_commethod(6)
|
|
22
|
+
def Recycle(self) -> Void: ...
|
|
23
|
+
@winrt_commethod(7)
|
|
24
|
+
def ProcessBindings(self, item: IInspectable, itemIndex: Int32, phase: Int32, nextPhase: POINTER(Int32)) -> Void: ...
|
|
25
|
+
class IMarkupExtension(ComPtr):
|
|
26
|
+
extends: IInspectable
|
|
27
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IMarkupExtension'
|
|
28
|
+
_iid_ = Guid('{c355371e-091d-5136-af4a-baf5e00616bd}')
|
|
29
|
+
class IMarkupExtensionFactory(ComPtr):
|
|
30
|
+
extends: IInspectable
|
|
31
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IMarkupExtensionFactory'
|
|
32
|
+
_iid_ = Guid('{20651afa-5f3a-5f0c-adb1-b6551f53a6a0}')
|
|
33
|
+
@winrt_commethod(6)
|
|
34
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Markup.MarkupExtension: ...
|
|
35
|
+
class IMarkupExtensionOverrides(ComPtr):
|
|
36
|
+
extends: IInspectable
|
|
37
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IMarkupExtensionOverrides'
|
|
38
|
+
_iid_ = Guid('{a12aa575-5d31-5b68-a30f-8495412a351d}')
|
|
39
|
+
@winrt_commethod(6)
|
|
40
|
+
def ProvideValue(self) -> IInspectable: ...
|
|
41
|
+
@winrt_commethod(7)
|
|
42
|
+
def ProvideValueWithIXamlServiceProvider(self, serviceProvider: win32more.Microsoft.UI.Xaml.IXamlServiceProvider) -> IInspectable: ...
|
|
43
|
+
class IProvideValueTarget(ComPtr):
|
|
44
|
+
extends: IInspectable
|
|
45
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IProvideValueTarget'
|
|
46
|
+
_iid_ = Guid('{3f01ff68-3efd-591d-a506-de13fcaabd83}')
|
|
47
|
+
@winrt_commethod(6)
|
|
48
|
+
def get_TargetObject(self) -> IInspectable: ...
|
|
49
|
+
@winrt_commethod(7)
|
|
50
|
+
def get_TargetProperty(self) -> IInspectable: ...
|
|
51
|
+
TargetObject = property(get_TargetObject, None)
|
|
52
|
+
TargetProperty = property(get_TargetProperty, None)
|
|
53
|
+
class IProvideValueTargetProperty(ComPtr):
|
|
54
|
+
extends: IInspectable
|
|
55
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IProvideValueTargetProperty'
|
|
56
|
+
_iid_ = Guid('{ce777b1f-b42e-59d1-870d-12fdf0629133}')
|
|
57
|
+
@winrt_commethod(6)
|
|
58
|
+
def get_Name(self) -> WinRT_String: ...
|
|
59
|
+
@winrt_commethod(7)
|
|
60
|
+
def get_Type(self) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
|
|
61
|
+
@winrt_commethod(8)
|
|
62
|
+
def get_DeclaringType(self) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
|
|
63
|
+
DeclaringType = property(get_DeclaringType, None)
|
|
64
|
+
Name = property(get_Name, None)
|
|
65
|
+
Type = property(get_Type, None)
|
|
66
|
+
class IRootObjectProvider(ComPtr):
|
|
67
|
+
extends: IInspectable
|
|
68
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IRootObjectProvider'
|
|
69
|
+
_iid_ = Guid('{13d63599-352f-5eb8-81c1-bc62fb12d6da}')
|
|
70
|
+
@winrt_commethod(6)
|
|
71
|
+
def get_RootObject(self) -> IInspectable: ...
|
|
72
|
+
RootObject = property(get_RootObject, None)
|
|
73
|
+
class IUriContext(ComPtr):
|
|
74
|
+
extends: IInspectable
|
|
75
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IUriContext'
|
|
76
|
+
_iid_ = Guid('{fb8605f6-8f05-52ee-a01c-3a9e118a6ea2}')
|
|
77
|
+
@winrt_commethod(6)
|
|
78
|
+
def get_BaseUri(self) -> win32more.Windows.Foundation.Uri: ...
|
|
79
|
+
BaseUri = property(get_BaseUri, None)
|
|
80
|
+
class IXamlBinaryWriter(ComPtr):
|
|
81
|
+
extends: IInspectable
|
|
82
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlBinaryWriter'
|
|
83
|
+
_iid_ = Guid('{8fb45e3b-e689-55bf-aa11-d83b1c1cdda1}')
|
|
84
|
+
class IXamlBinaryWriterStatics(ComPtr):
|
|
85
|
+
extends: IInspectable
|
|
86
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlBinaryWriterStatics'
|
|
87
|
+
_iid_ = Guid('{774907fc-c846-517f-abcc-c3f7e8c3ffc9}')
|
|
88
|
+
@winrt_commethod(6)
|
|
89
|
+
def Write(self, inputStreams: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Storage.Streams.IRandomAccessStream], outputStreams: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Storage.Streams.IRandomAccessStream], xamlMetadataProvider: win32more.Microsoft.UI.Xaml.Markup.IXamlMetadataProvider) -> win32more.Microsoft.UI.Xaml.Markup.XamlBinaryWriterErrorInformation: ...
|
|
90
|
+
class IXamlBindScopeDiagnostics(ComPtr):
|
|
91
|
+
extends: IInspectable
|
|
92
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlBindScopeDiagnostics'
|
|
93
|
+
_iid_ = Guid('{3ea84e4e-fdfe-55a8-a561-edf5697846d7}')
|
|
94
|
+
@winrt_commethod(6)
|
|
95
|
+
def Disable(self, lineNumber: Int32, columnNumber: Int32) -> Void: ...
|
|
96
|
+
class IXamlBindingHelper(ComPtr):
|
|
97
|
+
extends: IInspectable
|
|
98
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlBindingHelper'
|
|
99
|
+
_iid_ = Guid('{607a9bf2-5a6d-5c89-a756-bb44f24f28f8}')
|
|
100
|
+
class IXamlBindingHelperStatics(ComPtr):
|
|
101
|
+
extends: IInspectable
|
|
102
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics'
|
|
103
|
+
_iid_ = Guid('{93c7dad3-f9c2-5372-84dc-9e9c4661d083}')
|
|
104
|
+
@winrt_commethod(6)
|
|
105
|
+
def get_DataTemplateComponentProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
106
|
+
@winrt_commethod(7)
|
|
107
|
+
def GetDataTemplateComponent(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.Markup.IDataTemplateComponent: ...
|
|
108
|
+
@winrt_commethod(8)
|
|
109
|
+
def SetDataTemplateComponent(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.Markup.IDataTemplateComponent) -> Void: ...
|
|
110
|
+
@winrt_commethod(9)
|
|
111
|
+
def SuspendRendering(self, target: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
112
|
+
@winrt_commethod(10)
|
|
113
|
+
def ResumeRendering(self, target: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
114
|
+
@winrt_commethod(11)
|
|
115
|
+
def ConvertValue(self, type: win32more.Windows.UI.Xaml.Interop.TypeName, value: IInspectable) -> IInspectable: ...
|
|
116
|
+
@winrt_commethod(12)
|
|
117
|
+
def SetPropertyFromString(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: WinRT_String) -> Void: ...
|
|
118
|
+
@winrt_commethod(13)
|
|
119
|
+
def SetPropertyFromBoolean(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Boolean) -> Void: ...
|
|
120
|
+
@winrt_commethod(14)
|
|
121
|
+
def SetPropertyFromChar16(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Char) -> Void: ...
|
|
122
|
+
@winrt_commethod(15)
|
|
123
|
+
def SetPropertyFromDateTime(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.DateTime) -> Void: ...
|
|
124
|
+
@winrt_commethod(16)
|
|
125
|
+
def SetPropertyFromDouble(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Double) -> Void: ...
|
|
126
|
+
@winrt_commethod(17)
|
|
127
|
+
def SetPropertyFromInt32(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Int32) -> Void: ...
|
|
128
|
+
@winrt_commethod(18)
|
|
129
|
+
def SetPropertyFromUInt32(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: UInt32) -> Void: ...
|
|
130
|
+
@winrt_commethod(19)
|
|
131
|
+
def SetPropertyFromInt64(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Int64) -> Void: ...
|
|
132
|
+
@winrt_commethod(20)
|
|
133
|
+
def SetPropertyFromUInt64(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: UInt64) -> Void: ...
|
|
134
|
+
@winrt_commethod(21)
|
|
135
|
+
def SetPropertyFromSingle(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Single) -> Void: ...
|
|
136
|
+
@winrt_commethod(22)
|
|
137
|
+
def SetPropertyFromPoint(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
138
|
+
@winrt_commethod(23)
|
|
139
|
+
def SetPropertyFromRect(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Rect) -> Void: ...
|
|
140
|
+
@winrt_commethod(24)
|
|
141
|
+
def SetPropertyFromSize(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Size) -> Void: ...
|
|
142
|
+
@winrt_commethod(25)
|
|
143
|
+
def SetPropertyFromTimeSpan(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
144
|
+
@winrt_commethod(26)
|
|
145
|
+
def SetPropertyFromByte(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Byte) -> Void: ...
|
|
146
|
+
@winrt_commethod(27)
|
|
147
|
+
def SetPropertyFromUri(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
148
|
+
@winrt_commethod(28)
|
|
149
|
+
def SetPropertyFromObject(self, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: IInspectable) -> Void: ...
|
|
150
|
+
DataTemplateComponentProperty = property(get_DataTemplateComponentProperty, None)
|
|
151
|
+
class IXamlMarkupHelper(ComPtr):
|
|
152
|
+
extends: IInspectable
|
|
153
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlMarkupHelper'
|
|
154
|
+
_iid_ = Guid('{cd677310-3b06-5a13-b31a-401849570858}')
|
|
155
|
+
class IXamlMarkupHelperStatics(ComPtr):
|
|
156
|
+
extends: IInspectable
|
|
157
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlMarkupHelperStatics'
|
|
158
|
+
_iid_ = Guid('{d9a0f6e3-c6cc-5cb6-8999-85788701f339}')
|
|
159
|
+
@winrt_commethod(6)
|
|
160
|
+
def UnloadObject(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
161
|
+
class IXamlMember(ComPtr):
|
|
162
|
+
extends: IInspectable
|
|
163
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlMember'
|
|
164
|
+
_iid_ = Guid('{bf3a2913-5c63-50ec-8660-61809be7b9b9}')
|
|
165
|
+
@winrt_commethod(6)
|
|
166
|
+
def get_IsAttachable(self) -> Boolean: ...
|
|
167
|
+
@winrt_commethod(7)
|
|
168
|
+
def get_IsDependencyProperty(self) -> Boolean: ...
|
|
169
|
+
@winrt_commethod(8)
|
|
170
|
+
def get_IsReadOnly(self) -> Boolean: ...
|
|
171
|
+
@winrt_commethod(9)
|
|
172
|
+
def get_Name(self) -> WinRT_String: ...
|
|
173
|
+
@winrt_commethod(10)
|
|
174
|
+
def get_TargetType(self) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
175
|
+
@winrt_commethod(11)
|
|
176
|
+
def get_Type(self) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
177
|
+
@winrt_commethod(12)
|
|
178
|
+
def GetValue(self, instance: IInspectable) -> IInspectable: ...
|
|
179
|
+
@winrt_commethod(13)
|
|
180
|
+
def SetValue(self, instance: IInspectable, value: IInspectable) -> Void: ...
|
|
181
|
+
IsAttachable = property(get_IsAttachable, None)
|
|
182
|
+
IsDependencyProperty = property(get_IsDependencyProperty, None)
|
|
183
|
+
IsReadOnly = property(get_IsReadOnly, None)
|
|
184
|
+
Name = property(get_Name, None)
|
|
185
|
+
TargetType = property(get_TargetType, None)
|
|
186
|
+
Type = property(get_Type, None)
|
|
187
|
+
class IXamlMetadataProvider(ComPtr):
|
|
188
|
+
extends: IInspectable
|
|
189
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlMetadataProvider'
|
|
190
|
+
_iid_ = Guid('{a96251f0-2214-5d53-8746-ce99a2593cd7}')
|
|
191
|
+
@winrt_commethod(6)
|
|
192
|
+
def GetXamlType(self, type: win32more.Windows.UI.Xaml.Interop.TypeName) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
193
|
+
@winrt_commethod(7)
|
|
194
|
+
def GetXamlTypeByFullName(self, fullName: WinRT_String) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
195
|
+
@winrt_commethod(8)
|
|
196
|
+
def GetXmlnsDefinitions(self) -> ReceiveArray[win32more.Microsoft.UI.Xaml.Markup.XmlnsDefinition]: ...
|
|
197
|
+
class IXamlReader(ComPtr):
|
|
198
|
+
extends: IInspectable
|
|
199
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlReader'
|
|
200
|
+
_iid_ = Guid('{54ce54c8-38c6-50d9-ac98-4b03eddbde9f}')
|
|
201
|
+
class IXamlReaderStatics(ComPtr):
|
|
202
|
+
extends: IInspectable
|
|
203
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlReaderStatics'
|
|
204
|
+
_iid_ = Guid('{82a4cd9e-435e-5aeb-8c4f-300cece45cae}')
|
|
205
|
+
@winrt_commethod(6)
|
|
206
|
+
def Load(self, xaml: WinRT_String) -> IInspectable: ...
|
|
207
|
+
@winrt_commethod(7)
|
|
208
|
+
def LoadWithInitialTemplateValidation(self, xaml: WinRT_String) -> IInspectable: ...
|
|
209
|
+
class IXamlType(ComPtr):
|
|
210
|
+
extends: IInspectable
|
|
211
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlType'
|
|
212
|
+
_iid_ = Guid('{d24219df-7ec9-57f1-a27b-6af251d9c5bc}')
|
|
213
|
+
@winrt_commethod(6)
|
|
214
|
+
def get_BaseType(self) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
215
|
+
@winrt_commethod(7)
|
|
216
|
+
def get_ContentProperty(self) -> win32more.Microsoft.UI.Xaml.Markup.IXamlMember: ...
|
|
217
|
+
@winrt_commethod(8)
|
|
218
|
+
def get_FullName(self) -> WinRT_String: ...
|
|
219
|
+
@winrt_commethod(9)
|
|
220
|
+
def get_IsArray(self) -> Boolean: ...
|
|
221
|
+
@winrt_commethod(10)
|
|
222
|
+
def get_IsCollection(self) -> Boolean: ...
|
|
223
|
+
@winrt_commethod(11)
|
|
224
|
+
def get_IsConstructible(self) -> Boolean: ...
|
|
225
|
+
@winrt_commethod(12)
|
|
226
|
+
def get_IsDictionary(self) -> Boolean: ...
|
|
227
|
+
@winrt_commethod(13)
|
|
228
|
+
def get_IsMarkupExtension(self) -> Boolean: ...
|
|
229
|
+
@winrt_commethod(14)
|
|
230
|
+
def get_IsBindable(self) -> Boolean: ...
|
|
231
|
+
@winrt_commethod(15)
|
|
232
|
+
def get_ItemType(self) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
233
|
+
@winrt_commethod(16)
|
|
234
|
+
def get_KeyType(self) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
235
|
+
@winrt_commethod(17)
|
|
236
|
+
def get_BoxedType(self) -> win32more.Microsoft.UI.Xaml.Markup.IXamlType: ...
|
|
237
|
+
@winrt_commethod(18)
|
|
238
|
+
def get_UnderlyingType(self) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
|
|
239
|
+
@winrt_commethod(19)
|
|
240
|
+
def ActivateInstance(self) -> IInspectable: ...
|
|
241
|
+
@winrt_commethod(20)
|
|
242
|
+
def CreateFromString(self, value: WinRT_String) -> IInspectable: ...
|
|
243
|
+
@winrt_commethod(21)
|
|
244
|
+
def GetMember(self, name: WinRT_String) -> win32more.Microsoft.UI.Xaml.Markup.IXamlMember: ...
|
|
245
|
+
@winrt_commethod(22)
|
|
246
|
+
def AddToVector(self, instance: IInspectable, value: IInspectable) -> Void: ...
|
|
247
|
+
@winrt_commethod(23)
|
|
248
|
+
def AddToMap(self, instance: IInspectable, key: IInspectable, value: IInspectable) -> Void: ...
|
|
249
|
+
@winrt_commethod(24)
|
|
250
|
+
def RunInitializer(self) -> Void: ...
|
|
251
|
+
BaseType = property(get_BaseType, None)
|
|
252
|
+
BoxedType = property(get_BoxedType, None)
|
|
253
|
+
ContentProperty = property(get_ContentProperty, None)
|
|
254
|
+
FullName = property(get_FullName, None)
|
|
255
|
+
IsArray = property(get_IsArray, None)
|
|
256
|
+
IsBindable = property(get_IsBindable, None)
|
|
257
|
+
IsCollection = property(get_IsCollection, None)
|
|
258
|
+
IsConstructible = property(get_IsConstructible, None)
|
|
259
|
+
IsDictionary = property(get_IsDictionary, None)
|
|
260
|
+
IsMarkupExtension = property(get_IsMarkupExtension, None)
|
|
261
|
+
ItemType = property(get_ItemType, None)
|
|
262
|
+
KeyType = property(get_KeyType, None)
|
|
263
|
+
UnderlyingType = property(get_UnderlyingType, None)
|
|
264
|
+
class IXamlTypeResolver(ComPtr):
|
|
265
|
+
extends: IInspectable
|
|
266
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.IXamlTypeResolver'
|
|
267
|
+
_iid_ = Guid('{3fa15615-cacf-547f-b1ed-89dae8c67452}')
|
|
268
|
+
@winrt_commethod(6)
|
|
269
|
+
def Resolve(self, qualifiedTypeName: WinRT_String) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
|
|
270
|
+
class MarkupExtension(ComPtr):
|
|
271
|
+
extends: IInspectable
|
|
272
|
+
default_interface: win32more.Microsoft.UI.Xaml.Markup.IMarkupExtension
|
|
273
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.MarkupExtension'
|
|
274
|
+
def __init__(self, *args, **kwargs):
|
|
275
|
+
if kwargs:
|
|
276
|
+
super().__init__(**kwargs)
|
|
277
|
+
elif len(args) == 0:
|
|
278
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Markup.MarkupExtension.CreateInstance(*args, None, None))
|
|
279
|
+
else:
|
|
280
|
+
raise ValueError('no matched constructor')
|
|
281
|
+
@winrt_factorymethod
|
|
282
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Markup.IMarkupExtensionFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Markup.MarkupExtension: ...
|
|
283
|
+
@winrt_mixinmethod
|
|
284
|
+
def ProvideValue(self: win32more.Microsoft.UI.Xaml.Markup.IMarkupExtensionOverrides) -> IInspectable: ...
|
|
285
|
+
@winrt_mixinmethod
|
|
286
|
+
def ProvideValueWithIXamlServiceProvider(self: win32more.Microsoft.UI.Xaml.Markup.IMarkupExtensionOverrides, serviceProvider: win32more.Microsoft.UI.Xaml.IXamlServiceProvider) -> IInspectable: ...
|
|
287
|
+
class ProvideValueTargetProperty(ComPtr):
|
|
288
|
+
extends: IInspectable
|
|
289
|
+
default_interface: win32more.Microsoft.UI.Xaml.Markup.IProvideValueTargetProperty
|
|
290
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.ProvideValueTargetProperty'
|
|
291
|
+
def __init__(self, *args, **kwargs):
|
|
292
|
+
if kwargs:
|
|
293
|
+
super().__init__(**kwargs)
|
|
294
|
+
elif len(args) == 0:
|
|
295
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Markup.ProvideValueTargetProperty.CreateInstance(*args))
|
|
296
|
+
else:
|
|
297
|
+
raise ValueError('no matched constructor')
|
|
298
|
+
@winrt_activatemethod
|
|
299
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Markup.ProvideValueTargetProperty: ...
|
|
300
|
+
@winrt_mixinmethod
|
|
301
|
+
def get_Name(self: win32more.Microsoft.UI.Xaml.Markup.IProvideValueTargetProperty) -> WinRT_String: ...
|
|
302
|
+
@winrt_mixinmethod
|
|
303
|
+
def get_Type(self: win32more.Microsoft.UI.Xaml.Markup.IProvideValueTargetProperty) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
|
|
304
|
+
@winrt_mixinmethod
|
|
305
|
+
def get_DeclaringType(self: win32more.Microsoft.UI.Xaml.Markup.IProvideValueTargetProperty) -> win32more.Windows.UI.Xaml.Interop.TypeName: ...
|
|
306
|
+
DeclaringType = property(get_DeclaringType, None)
|
|
307
|
+
Name = property(get_Name, None)
|
|
308
|
+
Type = property(get_Type, None)
|
|
309
|
+
class XamlBinaryWriter(ComPtr):
|
|
310
|
+
extends: IInspectable
|
|
311
|
+
default_interface: win32more.Microsoft.UI.Xaml.Markup.IXamlBinaryWriter
|
|
312
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.XamlBinaryWriter'
|
|
313
|
+
@winrt_classmethod
|
|
314
|
+
def Write(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBinaryWriterStatics, inputStreams: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Storage.Streams.IRandomAccessStream], outputStreams: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Storage.Streams.IRandomAccessStream], xamlMetadataProvider: win32more.Microsoft.UI.Xaml.Markup.IXamlMetadataProvider) -> win32more.Microsoft.UI.Xaml.Markup.XamlBinaryWriterErrorInformation: ...
|
|
315
|
+
class XamlBinaryWriterErrorInformation(Structure):
|
|
316
|
+
InputStreamIndex: UInt32
|
|
317
|
+
LineNumber: UInt32
|
|
318
|
+
LinePosition: UInt32
|
|
319
|
+
class _XamlBindingHelper_Meta_(ComPtr.__class__):
|
|
320
|
+
pass
|
|
321
|
+
class XamlBindingHelper(ComPtr, metaclass=_XamlBindingHelper_Meta_):
|
|
322
|
+
extends: IInspectable
|
|
323
|
+
default_interface: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelper
|
|
324
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.XamlBindingHelper'
|
|
325
|
+
@winrt_classmethod
|
|
326
|
+
def get_DataTemplateComponentProperty(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
327
|
+
@winrt_classmethod
|
|
328
|
+
def GetDataTemplateComponent(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.Markup.IDataTemplateComponent: ...
|
|
329
|
+
@winrt_classmethod
|
|
330
|
+
def SetDataTemplateComponent(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.Markup.IDataTemplateComponent) -> Void: ...
|
|
331
|
+
@winrt_classmethod
|
|
332
|
+
def SuspendRendering(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, target: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
333
|
+
@winrt_classmethod
|
|
334
|
+
def ResumeRendering(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, target: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
335
|
+
@winrt_classmethod
|
|
336
|
+
def ConvertValue(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, type: win32more.Windows.UI.Xaml.Interop.TypeName, value: IInspectable) -> IInspectable: ...
|
|
337
|
+
@winrt_classmethod
|
|
338
|
+
def SetPropertyFromString(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: WinRT_String) -> Void: ...
|
|
339
|
+
@winrt_classmethod
|
|
340
|
+
def SetPropertyFromBoolean(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Boolean) -> Void: ...
|
|
341
|
+
@winrt_classmethod
|
|
342
|
+
def SetPropertyFromChar16(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Char) -> Void: ...
|
|
343
|
+
@winrt_classmethod
|
|
344
|
+
def SetPropertyFromDateTime(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.DateTime) -> Void: ...
|
|
345
|
+
@winrt_classmethod
|
|
346
|
+
def SetPropertyFromDouble(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Double) -> Void: ...
|
|
347
|
+
@winrt_classmethod
|
|
348
|
+
def SetPropertyFromInt32(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Int32) -> Void: ...
|
|
349
|
+
@winrt_classmethod
|
|
350
|
+
def SetPropertyFromUInt32(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: UInt32) -> Void: ...
|
|
351
|
+
@winrt_classmethod
|
|
352
|
+
def SetPropertyFromInt64(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Int64) -> Void: ...
|
|
353
|
+
@winrt_classmethod
|
|
354
|
+
def SetPropertyFromUInt64(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: UInt64) -> Void: ...
|
|
355
|
+
@winrt_classmethod
|
|
356
|
+
def SetPropertyFromSingle(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Single) -> Void: ...
|
|
357
|
+
@winrt_classmethod
|
|
358
|
+
def SetPropertyFromPoint(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
359
|
+
@winrt_classmethod
|
|
360
|
+
def SetPropertyFromRect(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Rect) -> Void: ...
|
|
361
|
+
@winrt_classmethod
|
|
362
|
+
def SetPropertyFromSize(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Size) -> Void: ...
|
|
363
|
+
@winrt_classmethod
|
|
364
|
+
def SetPropertyFromTimeSpan(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
365
|
+
@winrt_classmethod
|
|
366
|
+
def SetPropertyFromByte(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: Byte) -> Void: ...
|
|
367
|
+
@winrt_classmethod
|
|
368
|
+
def SetPropertyFromUri(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
369
|
+
@winrt_classmethod
|
|
370
|
+
def SetPropertyFromObject(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlBindingHelperStatics, dependencyObject: IInspectable, propertyToSet: win32more.Microsoft.UI.Xaml.DependencyProperty, value: IInspectable) -> Void: ...
|
|
371
|
+
_XamlBindingHelper_Meta_.DataTemplateComponentProperty = property(get_DataTemplateComponentProperty, None)
|
|
372
|
+
class XamlMarkupHelper(ComPtr):
|
|
373
|
+
extends: IInspectable
|
|
374
|
+
default_interface: win32more.Microsoft.UI.Xaml.Markup.IXamlMarkupHelper
|
|
375
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.XamlMarkupHelper'
|
|
376
|
+
@winrt_classmethod
|
|
377
|
+
def UnloadObject(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlMarkupHelperStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
378
|
+
class XamlReader(ComPtr):
|
|
379
|
+
extends: IInspectable
|
|
380
|
+
default_interface: win32more.Microsoft.UI.Xaml.Markup.IXamlReader
|
|
381
|
+
_classid_ = 'Microsoft.UI.Xaml.Markup.XamlReader'
|
|
382
|
+
@winrt_classmethod
|
|
383
|
+
def Load(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlReaderStatics, xaml: WinRT_String) -> IInspectable: ...
|
|
384
|
+
@winrt_classmethod
|
|
385
|
+
def LoadWithInitialTemplateValidation(cls: win32more.Microsoft.UI.Xaml.Markup.IXamlReaderStatics, xaml: WinRT_String) -> IInspectable: ...
|
|
386
|
+
class XmlnsDefinition(Structure):
|
|
387
|
+
XmlNamespace: WinRT_String
|
|
388
|
+
Namespace: WinRT_String
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
make_ready(__name__)
|