3

我正在使用WindowChrome. 我定义了自己的样式,但标题栏存在问题。如果我将Background我的主Grid模板设置为透明,则整个窗口使用系统强调色并且Maximize/Minimize/Close按钮可见。

当我设置任何其他背景Maximize/Minimize/Close按钮时,都会被覆盖。我以为我只是自己制作,但这些按钮仍然可以点击。

有什么办法可以显示或完全禁用它们?

我可以设置CaptionHeight为 0 并创建 mi 自己的标题栏,但我不想重新实现拖动和其他默认功能。

我的风格如下:

<Window.Style>
        <Style TargetType="{x:Type Window}">
            <Setter Property="shell:WindowChrome.WindowChrome">
                <Setter.Value>
                    <shell:WindowChrome GlassFrameThickness="-1" 
                            ResizeBorderThickness="4"
                            CaptionHeight="36"/>
                </Setter.Value>
            </Setter>
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="{x:Type local:ConfigurationWindow}" >
                        <Grid>
                            <Rectangle Fill="Blue" VerticalAlignment="Top" Width="{TemplateBinding Width}"
                                       Height="35" ></Rectangle>
                            <!-- This is the ContentPresenter that displays the window content. -->
                            <Border Margin="0,40,0,5" >
                                <ContentPresenter Content="{TemplateBinding Content}"/>
                            </Border>
                            <!--This is the transparent white rectangle that goes behind the window content.-->
                            <Border Margin="1,40,1,5" BorderBrush="Gray" BorderThickness="0,1,0,1" 
                  Grid.ZIndex="-1">
                                <Rectangle Fill="White" Opacity="0.5" />
                            </Border>

                            <!-- Window Title -->
                            <TextBlock VerticalAlignment="Top" TextAlignment="Center" 
                       Padding="0,3,0,8" 
                       Text="{Binding RelativeSource=
                                     {RelativeSource TemplatedParent}, Path=Title}" />
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    </Window.Style>
4

1 回答 1

4

正如@emoacht 评论的那样,看到GlassFrameThickness归零会删除不可见的关闭/最大/最小按钮。您仍然可以通过标题区域拖动窗口。

设置GlassFrameThickness的目的是使整个窗口以 Windows 7 的 Aero 方式变成玻璃状。

此外,您不再需要使用Microsoft.Windows.ShellNuGet 包。您所追求的课程现在在框架中,如System.Windows.Shell.WindowChrome(in PresentationFramework.dll)。

于 2016-10-08T11:42:05.137 回答