gpt4 book ai didi

wpf - 如何从可调整大小的窗口中删除最小化和最大化按钮?

转载 作者:行者123 更新时间:2023-12-03 03:45:40 35 4
gpt4 key购买 nike

WPF 不提供允许调整大小但没有最大化或最小化按钮的窗口的功能。我希望能够制作这样一个窗口,这样我就可以拥有可调整大小的对话框。

我知道解决方案将意味着使用 pinvoke,但我不确定要调用什么以及如何调用。搜索 pinvoke.net 并没有找到任何符合我需要的东西,主要是我确信 Windows 窗体确实提供了 CanMinimizeCanMaximize > 其窗口上的属性。

有人可以向我指出或提供代码(首选 C#)来说明如何执行此操作吗?

最佳答案

我窃取了在 MSDN 论坛上找到的一些代码,并在 Window 类上创建了一个扩展方法,如下所示:

internal static class WindowExtensions
{
// from winuser.h
private const int GWL_STYLE = -16,
WS_MAXIMIZEBOX = 0x10000,
WS_MINIMIZEBOX = 0x20000;

[DllImport("user32.dll")]
extern private static int GetWindowLong(IntPtr hwnd, int index);

[DllImport("user32.dll")]
extern private static int SetWindowLong(IntPtr hwnd, int index, int value);

internal static void HideMinimizeAndMaximizeButtons(this Window window)
{
IntPtr hwnd = new System.Windows.Interop.WindowInteropHelper(window).Handle;
var currentStyle = GetWindowLong(hwnd, GWL_STYLE);

SetWindowLong(hwnd, GWL_STYLE, (currentStyle & ~WS_MAXIMIZEBOX & ~WS_MINIMIZEBOX));
}
}

唯一要记住的另一件事是,由于某种原因,这在窗口的构造函数中不起作用。我通过将其放入构造函数中来解决这个问题:

this.SourceInitialized += (x, y) =>
{
this.HideMinimizeAndMaximizeButtons();
};

关于wpf - 如何从可调整大小的窗口中删除最小化和最大化按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/339620/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com