WPF无边框窗口调整大小

时间:2013-07-15 00:57:06

标签: c# .net wpf cursor window-resize

我正在WPF中设计自己的自定义窗口,我一直在尝试实现我以前在WinForms中使用的调整大小功能。由于某种原因,我的WndProc的返回值没有给我正确的结果。

我的所有WndProc消息和结果都有一个NativeMethods类:

public class NativeMethods
{
    public const int WM_NCHITTEST  = 0x84;
    public const int HTCAPTION     = 2;
    public const int HTLEFT        = 10;
    public const int HTRIGHT       = 11;
    public const int HTTOP         = 12;
    public const int HTTOPLEFT     = 13;
    public const int HTTOPRIGHT    = 14;
    public const int HTBOTTOM      = 15;
    public const int HTBOTTOMLEFT  = 16;
    public const int HTBOTTOMRIGHT = 17;
}

这是我窗口背后的代码:

public partial class MainWindow : Window
{
    const int GripSize   = 16;
    const int BorderSize = 7;

    public MainWindow()
    {
        InitializeComponent();
    }

    protected override void OnSourceInitialized(EventArgs e)
    {
        base.OnSourceInitialized(e);
        IntPtr windowHandle = new WindowInteropHelper(this).Handle;
        HwndSource windowSource = HwndSource.FromHwnd(windowHandle);
        windowSource.AddHook(WndProc);
    }

    private IntPtr WndProc(IntPtr hwnd, int msg,
        IntPtr wParam, IntPtr lParam, ref bool handled)
    {
        if (msg == NativeMethods.WM_NCHITTEST)
        {
            int x = lParam.ToInt32() << 16 >> 16, y = lParam.ToInt32() >> 16;
            Point pos = PointFromScreen(new Point(x, y));

            if (pos.X > GripSize && 
                pos.X < ActualWidth - GripSize &&
                pos.Y >= ActualHeight - BorderSize)
            {
                return (IntPtr)NativeMethods.HTBOTTOM; // This doesn't work?
            }

            // Top, Left, Right, Corners, Etc.
        }

        return IntPtr.Zero;
    }
}

我希望光标更改为“调整大小向下箭头”并调整大小调整功能,就像在WinForms项目中一样。我设置了断点,当光标位于预期位置时,HTBOTTOM返回被触发。在XAML中,我将ResizeMode设置为CanResize,将WindowStyle设置为None。我做错了什么?

4 个答案:

答案 0 :(得分:13)

分配WindowChrome可能更简单。根据你的评论你必须能够从所有方面调整大小以及使用grip.You可以通过将WindowStyle设置为None和ResizeMode设置为CanResizeWithGrip或CanResize(无论如何)来完成所有这些操作。你想实现)

<Window x:Class="MVVMProtoType.View.Test.Test"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="Test" Height="300" Width="300" WindowStyle="None" AllowsTransparency="False" ResizeMode="CanResizeWithGrip">

在代码behid中,您必须为窗口设置Window Chrome。你可以这样做:

WindowChrome.SetWindowChrome(this, new WindowChrome());

您可以将setter用于窗口样式,如:

<Setter Property="WindowChrome.WindowChrome">
        <Setter.Value>
            <WindowChrome CornerRadius="0" GlassFrameThickness="1" UseAeroCaptionButtons="False"/>
        </Setter.Value>
</Setter>

MSDN link for more information

请注意,WindowChrome类是.NET 4.5 Framework的一部分。对于.NET 4.0用户,请查看archive.msdn.microsoft.com/WPFShell

答案 1 :(得分:3)

我在另一篇文章中写过一个解决方案,你可以调整窗口大小,你需要使用.NET 4.5或WPFShell

您也可以将WindowChrome代码直接放在MainWindow.xaml上,这样就可以完美地工作而不需要设置setter。

<Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:Concursos"
    mc:Ignorable="d"
    Title="Concuros" Height="350" Width="525"
    WindowStyle="None"
    WindowState="Normal" 
    ResizeMode="CanResize"
    >
<WindowChrome.WindowChrome>
    <WindowChrome 
        CaptionHeight="0"
        ResizeBorderThickness="5" />
</WindowChrome.WindowChrome>

    <Grid>

    <YOUR CODE HERE

</Grid>

您可以到这里查看完整的帖子。

Solution

这是之前和之后的

The Challenge The Solution

答案 2 :(得分:2)

这是一个愚蠢的错误。在我返回结果之前,我忘了添加handled = true;。现在窗口正常运行。如果您将ResizeMode设置为NoResize,则此代码根本不起作用。

答案 3 :(得分:0)

我还为一个你可能感兴趣的完全工作(大小等)WPF无边框窗口提供了源代码。可以在这里找到。

WPF Borderless Window issues: Aero Snap & Maximizing