我正在使用 MahApps.Metro 0.12.1 在 WPF 中开发应用程序。在这个应用程序中,我不显示标题栏,保持可见的最小化、最大化和关闭命令。下面我展示代码:
<controls:MetroWindow xmlns:views="clr-namespace:View.Views"
xmlns:titleBar="clr-namespace:View.Views.TitleBar"
x:Class="View.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
GlowBrush="{DynamicResource AccentColorBrush}"
ShowWindowCommandsOnTop="False"
ShowTitleBar="False"
Title="MainWindow" Height="400" Width="600"
AllowsTransparency="False">
<Grid>
...
</Grid>
当我升级到 MathApps.Metro 的 0.13.1 版时出现问题,这些命令没有显示,迫使我重新建立标题栏以再次显示命令ShowTitleBar="True"
,这是我不想要的:显示标题栏。
我正在查看 MathApps.Metro 0.13.1 的发行说明,并报告说对标题栏的部分进行了更改,但没有提供更多详细信息。
我的问题是:有没有一种简单的方法来显示最小化、最大化和关闭命令而不显示标题栏?做这个的最好方式是什么?
谢谢