如何在wpf中创建自定义窗口chrome?

Car*_*eis 40 wpf xaml window

如何为WPF窗口创建基本的自定义窗口镶边,不包括关闭按钮,仍然是可移动和可调整大小的窗口?

Rac*_*hel 62

你设置你的窗口WindowStyle="None",然后建立自己的窗口界面.您需要构建自己的Min/Max/Close/Drag事件处理程序,但仍会保留Resizing.

例如:

<Window 
    WindowState="Maximized" 
    WindowStyle="None"
    WindowStartupLocation="CenterScreen"
    MaxWidth="{Binding Source={x:Static SystemParameters.WorkArea}, Path=Width}"
    MaxHeight="{Binding Source={x:Static SystemParameters.WorkArea}, Path=Height}"
>

    <DockPanel x:Name="RootWindow">
        <DockPanel x:Name="TitleBar" DockPanel.Dock="Top">
            <Button x:Name="CloseButton" Content="X"
                    Click="CloseButton_Click"                 
                    DockPanel.Dock="Right" />
            <Button x:Name="MaxButton" Content="Restore" 
                    Click="MaximizeButton_Click"
                    DockPanel.Dock="Right" />
            <Button x:Name="MinButton" Content="Min"
                    Click="MinimizeButton_Click"
                    DockPanel.Dock="Right" />

            <TextBlock HorizontalAlignment="Center">Application Name</TextBlock>
        </DockPanel>

        <ContentControl Content="{Binding CurrentPage}" />
    </DockPanel>

</Window>
Run Code Online (Sandbox Code Playgroud)

这里是常见窗口功能的一些示例代码隐藏

/// <summary>
/// TitleBar_MouseDown - Drag if single-click, resize if double-click
/// </summary>
private void TitleBar_MouseDown(object sender, MouseButtonEventArgs e)
{
    if(e.ChangedButton == MouseButton.Left)
        if (e.ClickCount == 2)
        {
            AdjustWindowSize();
        }
        else
        {
            Application.Current.MainWindow.DragMove();
        }
 }

/// <summary>
/// CloseButton_Clicked
/// </summary>
private void CloseButton_Click(object sender, RoutedEventArgs e)
{
   Application.Current.Shutdown();
}

/// <summary>
/// MaximizedButton_Clicked
/// </summary>
private void MaximizeButton_Click(object sender, RoutedEventArgs e)
{
    AdjustWindowSize();
}

/// <summary>
/// Minimized Button_Clicked
/// </summary>
private void MinimizeButton_Click(object sender, RoutedEventArgs e)
{
    this.WindowState = WindowState.Minimized;
}

/// <summary>
/// Adjusts the WindowSize to correct parameters when Maximize button is clicked
/// </summary>
private void AdjustWindowSize()
{
    if (this.WindowState == WindowState.Maximized)
    {
        this.WindowState = WindowState.Normal;
        MaximizeButton.Content = "1";
    }
    else
    {
        this.WindowState = WindowState.Maximized;
        MaximizeButton.Content = "2";
    }

}
Run Code Online (Sandbox Code Playgroud)

  • 只需使用`Shell:WindowChrome.CaptionHeight`,你就不需要任何标题栏点击拖动废话.没有理由重新发明轮子.还保持其他默认窗口行为,如双击最大化,摇动到独奏. (3认同)
  • 实际上,使用这个-vs-主窗口-vs-应用程序有点忙乱(因为容易出错).亚历克斯有更坚实的[实施](http://web.archive.org/web/20081006142447/http://blog.opennetcf.com/ayakhnin/PermaLink,guid,23a7be17-d833-4e45-b498-34ef04d98cb2.aspx)虽然它也错过了一些小功能件. (2认同)
  • 您可能还想在`Titlebar` dockpanel上使用`DockPanel.Dock ="Top". (2认同)
  • 最好是使用“WindowChrome.CaptionHeight”来拥有所有标题栏功能。@RandomEngy 与按钮上的 `WindowChrome.IsHitTestVisibleInChrome="True"` 组合将导致它们在标题栏区域中可单击。 (2认同)
  • 需要明确的是,WindowChrome.IsHitTestVisibleInChrome 附加属性位于各个按钮上。当你把它放在窗户上时不起作用。 (2认同)

dss*_*539 47

.NET 4.5添加了一个新类,大大简化了这一点.

WindowChrome类可让您的Windows Presentation Foundation(WPF)的内容延伸到这通常是保留给操作系统的窗口管理器窗口的非客户区.

你可以在这里找到一个教程.

这是一个简短的示例用法.

  • 我知道有点晚了,但我在这里找到了一个很好的例子:https://engy.us/blog/2020/01/01/implementing-a-custom-window-title-bar-in-wpf/ (3认同)
  • 本教程充满了死链接和不推荐使用的信息,简短示例包含一个不再有效的程序集引用. (2认同)

Sim*_*ord 6

我刚刚在.net 4.5中使用了下面的示例,它工作得很好。有趣的是,它为点击事件使用了后面的代码作为资源字典。您所要做的就是在app.xaml文件中引用资源字典,然后为Window指定样式CustomWindowStyle。这是从http://www.eidias.com/blog/2014/1/27/restyle-your-window偷来的。

<ResourceDictionary x:Class="WpfApp7.WindowStyle"
                    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">


    <Style x:Key="CustomWindowStyle" TargetType="{x:Type Window}">
        <Setter Property="WindowChrome.WindowChrome">
            <Setter.Value>
                <WindowChrome CaptionHeight="30"
                              CornerRadius="4"
                              GlassFrameThickness="0"
                              NonClientFrameEdges="None"
                              ResizeBorderThickness="5"
                              UseAeroCaptionButtons="False" />
            </Setter.Value>
        </Setter>

        <Setter Property="BorderBrush" Value="Black" />
        <Setter Property="Background" Value="Gray" />

        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type Window}">
                    <Grid>
                        <Border Background="{TemplateBinding Background}"
                                BorderBrush="{TemplateBinding BorderBrush}"
                                BorderThickness="5,30,5,5">
                            <AdornerDecorator>
                                <ContentPresenter />
                            </AdornerDecorator>
                        </Border>

                        <Grid Height="30"
                            VerticalAlignment="Top">

                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="Auto"/>
                                <ColumnDefinition Width="*"/>
                                <ColumnDefinition Width="Auto"/>
                            </Grid.ColumnDefinitions>

                            <StackPanel Orientation="Horizontal" Margin="5,0">
                                <Button Content="A" Margin="0,0,5,0" VerticalAlignment="Center" Click="Button_Click" WindowChrome.IsHitTestVisibleInChrome="True"/>
                                <Button Content="B" Margin="0,0,5,0" VerticalAlignment="Center" Click="Button_Click" WindowChrome.IsHitTestVisibleInChrome="True"/>
                                <Button Content="C" Margin="0,0,5,0" VerticalAlignment="Center" Click="Button_Click" WindowChrome.IsHitTestVisibleInChrome="True"/>
                                <Button Content="D" Margin="0,0,5,0" VerticalAlignment="Center" Click="Button_Click" WindowChrome.IsHitTestVisibleInChrome="True"/>
                            </StackPanel>


                            <TextBlock Margin="5,0,0,0"
                                       VerticalAlignment="Center"
                                       HorizontalAlignment="Center"
                                       FontSize="16"
                                       Foreground="White"
                                       Text="{TemplateBinding Title}" 
                                       Grid.Column="1"/>


                            <StackPanel Orientation="Horizontal"
                                        Grid.Column="2">
                                <Button x:Name="btnClose"
                                    Width="15"
                                    Margin="5"
                                    Click="CloseClick"
                                    Content="X"
                                    WindowChrome.IsHitTestVisibleInChrome="True" />


                                <Button x:Name="btnRestore"
                                    Width="15"
                                    Margin="5"
                                    Click="MaximizeRestoreClick"
                                    Content="#"
                                    WindowChrome.IsHitTestVisibleInChrome="True" />

                                <Button x:Name="btnMinimize"
                                    Width="15"
                                    Margin="5"
                                    VerticalContentAlignment="Bottom"
                                    Click="MinimizeClick"
                                    Content="_"
                                    WindowChrome.IsHitTestVisibleInChrome="True" />
                            </StackPanel>
                        </Grid>

                    </Grid>

                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>
Run Code Online (Sandbox Code Playgroud)

对于后面的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;

namespace WpfApp7
{
    public partial class WindowStyle : ResourceDictionary
    {
        public WindowStyle()
        {
            InitializeComponent();
        }

        private void CloseClick(object sender, RoutedEventArgs e)
        {
            var window = (Window)((FrameworkElement)sender).TemplatedParent;
            window.Close();
        }

        private void MaximizeRestoreClick(object sender, RoutedEventArgs e)
        {
            var window = (Window)((FrameworkElement)sender).TemplatedParent;
            if (window.WindowState == System.Windows.WindowState.Normal)
            {
                window.WindowState = System.Windows.WindowState.Maximized;
            }
            else
            {
                window.WindowState = System.Windows.WindowState.Normal;
            }
        }

        private void MinimizeClick(object sender, RoutedEventArgs e)
        {
            var window = (Window)((FrameworkElement)sender).TemplatedParent;
            window.WindowState = System.Windows.WindowState.Minimized;
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            MessageBox.Show("Hello!");
        }
    }
}
Run Code Online (Sandbox Code Playgroud)


Apf*_*cha 5

这是一个简单的解决方案,它看起来与默认的 Windows 10 按钮非常相似,它只是为符号使用相同的字体:

<StackPanel Orientation="Horizontal" VerticalAlignment="Top" WindowChrome.IsHitTestVisibleInChrome="True">
<Button Click="Minimize_Click" Content="&#xE949;" FontFamily="Segoe MDL2 Assets" FontSize="10" Padding="15,15,15,5" Background="Transparent" BorderBrush="Transparent" />
<Button Click="Maximize_Click" FontFamily="Segoe MDL2 Assets" FontSize="10" Padding="15,10" Background="Transparent" BorderBrush="Transparent">
    <Button.Style>
        <Style TargetType="{x:Type Button}">
            <Setter Property="Button.Content" Value="&#xE739;" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Window}}, Path=WindowState}" Value="Maximized">
                    <Setter Property="Button.Content" Value="&#xE923;" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </Button.Style>
</Button>
<Button Click="Close_Click" Content="&#xE106;" FontFamily="Segoe MDL2 Assets" FontSize="10" Padding="15,10" Background="Transparent" BorderBrush="Transparent" />
</StackPanel>
Run Code Online (Sandbox Code Playgroud)

如果您希望支持较旧的 Windows 版本(7 和 8),请查看此处:https : //stackoverflow.com/a/27911618/9758687


Ran*_*ngy 5

以下是您需要采取的方法的概述:

  • 设置WindowStyle="None"做你自己的UI。
  • 用于WindowChrome.CaptionHeight获得标准标题栏拖动/双击/摇动行为并设置WindowChrome.IsHitTestVisibleInChrome="True"按钮以使其可单击。
  • 为您的按钮实现点击处理程序。
  • 挂钩 Window.StateChanged 事件来处理最大化/恢复更改并更新您的 UI。您不能假设每个人都使用标题栏按钮来最大化和恢复。这可以通过键盘快捷键(Win+Up/Win+Down)或双击标题栏来实现。
  • 最大化时,窗口的 7 像素会被四面八方切断。要解决此问题,我们需要挂钩 WM_GETMINMAXINFO 以提供正确的最大化位置。
  • 您需要重新实现窗口边框以提供不同背景的对比度。
  • 使用 <Path> 渲染标题栏图标,以便它们在不同的 DPI 下看起来不错。
  • 根据窗口是否处于活动状态更改标题栏的外观,以向用户指示哪个窗口具有焦点。

全文有点长;我在这篇博文中通过代码示例详细介绍了它们