如何更改标题栏按钮WPF C#

问题描述 投票:3回答:3

我想使用窗口标题栏中的关闭,最小化和最大化按钮进行自定义。在某些程序中,标题栏不同但我不想更改完整的标题栏,只需更改按钮。任何人都可以帮助我吗?

c# wpf xaml titlebar
3个回答
1
投票

您可以使用windowchrome自定义窗口的镶边。 https://msdn.microsoft.com/en-us/library/system.windows.shell.windowchrome(v=vs.110).aspx

您可以使用它来完全重新模板化您的窗口。请注意,自写入以下内容后,该类已移动。 https://blogs.msdn.microsoft.com/wpfsdk/2010/08/25/experiments-with-windowchrome/

这可能有奇怪的副作用,例如当您在win10中最大化窗口时。


4
投票

通常,窗口的标题栏属于窗口的所谓非客户区域。这意味着你无法改变按钮的外观,也无法添加自定义等。

要做到这一点,您需要滚动自己的窗口样式或使用为您执行此操作的库。

一些有用的教程或起点可能是this MSDN articlehow to create a custom window上的本教程。

要创建自己的窗口样式,可以使用此简单样式作为基础:

<Style x:Key="MyCustomWindowStyle" TargetType="{x:Type Window}"> 
    <Setter Property="WindowStyle" Value="None"/> 
    <Setter Property="AllowsTransparency" Value="True"/>
    <Setter Property="Background" Value="White"/> 
    <Setter Property="BorderBrush" Value="Blue"/> 
    <Setter Property="BorderThickness" Value="1"/>                        
    <Setter Property="Template">
        <Setter.Value>
           <ControlTemplate TargetType="{x:Type Window}">
                <Grid Background="{TemplateBinding Background}">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto"/>
                        <RowDefinition/>
                    </Grid.RowDefinitions>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition/>
                        <ColumnDefinition Width="Auto"/>
                    </Grid.ColumnDefinitions>

                    <!-- this displays the window title -->
                    <TextBlock TextAlignment="Center"
                               Text="{TemplateBinding Title}"/>

                    <StackPanel Grid.Column="1"
                                Orientation="Horizontal"
                                HorizontalAlignment="Stretch"
                                VerticalAlignment="Center">

                        <!-- the minimize button, using your own style -->
                        <Button Style="{StaticResource MyMinimizeButtonStyle}" 
                                Width="20" 
                                Height="20" />

                        <!-- the close button, using your own style -->
                        <Button Style="{StaticResource MyCloseButtonStyle}"
                                Width="20"
                                Height="20" />
                    </StackPanel>

                    <!-- this displays the actual window content -->
                    <ContentPresenter Grid.Row="1"/>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

0
投票

您可以使用WindowChrome自定义窗口样式:https://github.com/DinoChan/WindowDemo

此样式不使用SystemParameters2类,因为它在.net 4.5中不存在。

© www.soinside.com 2019 - 2024. All rights reserved.