8

我有一个没有标题栏 ( WindowStyle == WindowStyle.None) 的窗口。整个窗户采用 Aero 玻璃效果。当我将窗口设置为不可调整大小时ResizeMode == ResizeMode.NoResize((本质上,窗口本身消失了,但留下了它的内容。)

有没有办法让我在不摆脱窗框的情况下使窗口无法调整大小?


我已阅读问题Enable Vista glass effect on a borderless WPF window,但这不是我想要的——我想保留窗口边框。有关我希望我的窗口看起来像什么的示例,请在启用 Aero 的情况下按 Alt+Tab。


澄清一下,当悬停在窗口边框上时,我不希望调整大小的光标出现。这基本上就是我希望我的窗口看起来的样子:

投影仪

解决方案不必是严格的 WPF——我很乐意使用 Win32 API 来实现这一点。

4

4 回答 4

13

您可以挂钩 wndproc 并拦截WM_WINDOWPOSCHANGING消息。严格来说不是 WPF,但可能是您最好的选择。

如果要隐藏调整大小的光标,那么最好的办法是拦截WM_NCHITTEST。调用 DefWindowProc(获取默认行为),并测试返回值;如果是 HTBOTTOM、HTBOTTOMLEFT、HTBOTTOMRIGHT、HTTOP、HTTOPLEFT 或 HTTOPRIGHT,则将返回值更改为 HTBORDER。

于 2010-08-11T20:54:05.063 回答
11

基于埃里克的回答。

示例图像

public partial class MainWindow : Window
{
    [DllImport("DwmApi.dll")]
    public static extern int DwmExtendFrameIntoClientArea(
        IntPtr hwnd,
        ref MARGINS pMarInset);

    [DllImport("user32.dll", CharSet = CharSet.Auto)]
    public static extern IntPtr DefWindowProc(
        IntPtr hWnd,
        int msg,
        IntPtr wParam,
        IntPtr lParam);

    private const int WM_NCHITTEST = 0x0084;
    private const int HTBORDER = 18;
    private const int HTBOTTOM = 15;
    private const int HTBOTTOMLEFT = 16;
    private const int HTBOTTOMRIGHT = 17;
    private const int HTLEFT = 10;
    private const int HTRIGHT = 11;
    private const int HTTOP = 12;
    private const int HTTOPLEFT = 13;
    private const int HTTOPRIGHT = 14;

    public MainWindow()
    {
        InitializeComponent();

        this.Loaded += new RoutedEventHandler(MainWindow_Loaded);
    }

    void MainWindow_Loaded(object sender, RoutedEventArgs e)
    {
        try
        {
            // Obtain the window handle for WPF application
            IntPtr mainWindowPtr = new WindowInteropHelper(this).Handle;
            HwndSource mainWindowSrc = HwndSource.FromHwnd(mainWindowPtr);
            mainWindowSrc.CompositionTarget.BackgroundColor = Color.FromArgb(0, 0, 0, 0);
            mainWindowSrc.AddHook(WndProc);

            // Set Margins
            MARGINS margins = new MARGINS();
            margins.cxLeftWidth = 10;
            margins.cxRightWidth = 10;
            margins.cyBottomHeight = 10;
            margins.cyTopHeight = 10;

            int hr = DwmExtendFrameIntoClientArea(mainWindowSrc.Handle, ref margins);
            //
            if (hr < 0)
            {
                //DwmExtendFrameIntoClientArea Failed
            }
        }
        // If not Vista, paint background white.
        catch (DllNotFoundException)
        {
            Application.Current.MainWindow.Background = Brushes.White;
        }
    }

    private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
    {
        // Override the window hit test
        // and if the cursor is over a resize border,
        // return a standard border result instead.
        if (msg == WM_NCHITTEST)
        {
            handled = true;
            var htLocation = DefWindowProc(hwnd, msg, wParam, lParam).ToInt32();
            switch (htLocation)
            {
                case HTBOTTOM:
                case HTBOTTOMLEFT:
                case HTBOTTOMRIGHT:
                case HTLEFT:
                case HTRIGHT:
                case HTTOP:
                case HTTOPLEFT:
                case HTTOPRIGHT:
                    htLocation = HTBORDER;
                    break;
            }

            return new IntPtr(htLocation);
        }

        return IntPtr.Zero;
    }

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        this.Close();
    }
}

[StructLayout(LayoutKind.Sequential)]
public struct MARGINS
{
    public int cxLeftWidth;      // width of left border that retains its size
    public int cxRightWidth;     // width of right border that retains its size
    public int cyTopHeight;      // height of top border that retains its size
    public int cyBottomHeight;   // height of bottom border that retains its size
};

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="150" Width="200" 
    Background="Transparent"
    WindowStyle="None"
    ResizeMode="CanResize"
>
    <Grid Background="White" Margin="10,10,10,10">
        <Button Content="Go Away" Click="Button_Click" Height="20" Width="100" />
    </Grid>
</Window>
于 2010-08-26T03:26:47.680 回答
1

一种骇人听闻的方法是设置 MinWidth/MaxWidth 和 MinHeight/MaxHeight 属性以有效地使其不可调整大小。当然,问题是你仍然会在边框上获得调整大小的光标。

于 2010-08-02T15:55:02.297 回答
1

你为什么不直接为窗口创建这个窗口边框呢?它使用偏移量来设置窗口的颜色。所以,一个简单的方法就是在你的窗口周围包裹一个完整的边框,然后你就可以得到自己的颜色!

于 2010-08-02T16:00:51.417 回答