We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95b795d commit d6e9b26Copy full SHA for d6e9b26
src/Uno.UI/WinRT/Interop/InitializeWithWindow.cs
@@ -0,0 +1,12 @@
1
+using System;
2
+
3
+namespace WinRT.Interop;
4
5
+public static class InitializeWithWindow
6
+{
7
+ public static void Initialize(object target, IntPtr hwnd)
8
+ {
9
+ // Intentionally a no-op, will need to be implemented
10
+ // when multi-window support is added #8341.
11
+ }
12
+}
src/Uno.UI/WinRT/Interop/WindowNative.cs
@@ -0,0 +1,13 @@
+public static class WindowNative
+ public static IntPtr GetWindowHandle(object target)
+ return IntPtr.Zero;
13
0 commit comments