Hello! When we set ExtendsContentIntoTitleBar to true in the application on Dark Mode, we have strange top line when we click to maximize window. This behavior occurs when the screen/monitor have Resolution 100%, 125% etc. I opened a issue in Microsoft's
public void MaximizeWindow(Window window) { var windowHandle = WinRT.Interop.WindowNative.GetWindowHandle(window); PInvoke.User32.ShowWindow(windowHandle, PInvoke.User32.WindowShowStyle.SW_MAXIMIZE); } 使用扩展方法的版本 这个之前的代码也可以转换成 Window 类的一个扩展方法,所以我可以直接从 Window ...
IntPtr hwnd = (App.CurrentasApp).MainWindowWindowHandle; PInvoke.User32.ShowWindow(hwnd, PInvoke.User32.WindowShowStyle.SW_MAXIMIZE); } 编译并运行应用,按“单击我”按钮,应用窗口应最大化。 以“完全信任权限”模式运行桌面应用 WinUI 3提供了一种功能,使应用程序能够在AppContainer的安全沙盒以外以“完...
IntPtr hwnd = (App.Current as App).MainWindowWindowHandle; PInvoke.User32.ShowWindow(hwnd, PInvoke.User32.WindowShowStyle.SW_MAXIMIZE); } 1. 2. 3. 4. 5. 6. 7. 编译并运行应用,按“单击我”按钮,应用窗口应最大化。 以“完全信任权限”模式运行桌面应用 WinUI 3提供了一种功能,使应用程序能...
Describe the bug If Activate is called on a Window which is in the background of other windows, that window is not activated and brought to the foreground. If the window is minimized it works correctly. Steps to reproduce the bug Call Ac...
WinUIEx WinUI扩展 一组扩展方法和类,用于填补WinUI 3中的一些空白,主要是围绕窗口。 要获取扩展方法,请首先using WinUIEx;添加using WinUIEx; 到代码的顶部。 最小化/最大化/还原和隐藏窗口。 myWindow . MinimizeWindow (); myWindow . MaximizeWindow (); my
我试图找到一种方法,使电子从最小化,回到开放应用程序的最后大小--也就是,模拟当你正常地点击一个最小化的应用程序时会发生什么。但并没有给我带来预期的结果: mainWindow.maximize()如果有人有一个很酷的技巧来模拟这个函数,或者至少有一个关于如何从最小化到设置屏幕大小的提示 ...
.GetWindowIdFromWindow(handle); var appWindow = Microsoft.UI.Windowing.AppWindow.GetFromWindowId(id); switch (appWindow.Presenter) { case Microsoft.UI.Windowing.OverlappedPresenter overlappedPresenter: overlappedPresenter.SetBorderAndTitleBar(false, false); overlappedPresenter.Maximize(); break; } });...
IntPtr hwnd = (App.Current as App).MainWindowWindowHandle; PInvoke.User32.ShowWindow(hwnd, PInvoke.User32.WindowShowStyle.SW_MAXIMIZE); } [/code] The ShowWindow method uses the window handle and maximizes it using the second parameter. To get the window handle you can use the GetActiveWindo...
检查dotMorten的WinUI ExNuGet包,你可以很容易地用这些行隐藏那些按钮。