如何从WPF中可调整大小的窗口中删除最小化和最大化?

时间:2008-12-04 04:51:11

标签: wpf user-interface resize pinvoke

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

我知道解决方案意味着使用pinvoke,但我不确定要拨打什么以及如何调用。搜索pinvoke.net并没有发现任何像我需要的那样跳出来的东西,主要是我确定,因为Windows Forms确实在其窗口上提供了CanMinimizeCanMaximize属性。

有人可以指点我或提供代码(C#首选)如何做到这一点?

7 个答案:

答案 0 :(得分:100)

我偷了一些我在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();
};

希望这有帮助!

答案 1 :(得分:80)

一种方法是设置ResizeMode="NoResize"。它会表现得像这样。 enter image description here

我希望这有帮助!

答案 2 :(得分:19)

不知道这是否适用于您的需求。视觉上..这是

<Window x:Class="DataBinding.MyWindow" ...Title="MyWindow" Height="300" Width="300" 
    WindowStyle="ToolWindow" ResizeMode="CanResizeWithGrip">

答案 3 :(得分:5)

如果有人使用Devexpress窗口(DXWindow)接受的答案不起作用。一个丑陋的方法是

public partial class MyAwesomeWindow : DXWindow
{
    public MyAwesomeWIndow()
    {
       Loaded += OnLoaded;
    }

    private void OnLoaded(object sender, RoutedEventArgs routedEventArgs)
    {
        // hides maximize button            
        Button button = (Button)DevExpress.Xpf.Core.Native.LayoutHelper.FindElementByName(this, DXWindow.ButtonParts.PART_Maximize.ToString());
        button.IsHitTestVisible = false;
        button.Opacity = 0;

        // hides minimize button
        button = (Button)DevExpress.Xpf.Core.Native.LayoutHelper.FindElementByName(this, DXWindow.ButtonParts.PART_Minimize.ToString());
        button.IsHitTestVisible = false;
        button.Opacity = 0;

        // hides close button
        button = (Button)DevExpress.Xpf.Core.Native.LayoutHelper.FindElementByName(this, DXWindow.ButtonParts.PART_CloseButton.ToString());
        button.IsHitTestVisible = false;
        button.Opacity = 0;
    } 
}

答案 4 :(得分:3)

这是我正在使用的解决方案。请注意,仍然会显示最大化按钮。

标记:

<Window x:Class="Example"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Example"
        StateChanged="Window_StateChanged">

代码背后:

// Disable maximizing this window
private void Window_StateChanged(object sender, EventArgs e)
{
    if (this.WindowState == WindowState.Maximized)
        this.WindowState = WindowState.Normal;
}

答案 5 :(得分:2)

如果要删除最小化和最大化按钮,可以设置窗口的ResizeMode =“NoResize”

答案 6 :(得分:0)

@MattHamilton的solution proposed的此变体可以(并且必须)在Window的构造函数中调用。技巧是在扩展方法中为委托订阅SourceInitialized事件。

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);

/// <summary>
/// Hides the Minimize and Maximize buttons in a Window. Must be called in the constructor.
/// </summary>
/// <param name="window">The Window whose Minimize/Maximize buttons will be hidden.</param>
public static void HideMinimizeAndMaximizeButtons(this Window window)
{
    window.SourceInitialized += (s, e) => {
        IntPtr hwnd = new System.Windows.Interop.WindowInteropHelper(window).Handle;
        int currentStyle = GetWindowLong(hwnd, GWL_STYLE);

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