Mahapp Metro Window 标题在任务栏中不可见

Mahapp Metro Window Title not visible in TaskBar

我正在使用具有如下标题模板的 MahApp MetroWindow。

<metro:MetroWindow x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:metro="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
    xmlns:local="clr-namespace:WpfApplication1">
<metro:MetroWindow.TitleTemplate>
    <DataTemplate>
        <Grid>
            <TextBlock Text="New Title"/>
        </Grid>
    </DataTemplate>
</metro:MetroWindow.TitleTemplate>

问题是在任务栏中它不显示标题。

将标题 属性 添加到 window 并在数据模板上进行模板绑定。尝试这个。

 <metro:MetroWindow x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:metro="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
    xmlns:local="clr-namespace:WpfApplication1"
Title="New Title">
<metro:MetroWindow.TitleTemplate>
    <DataTemplate>
        <Grid>
            <TextBlock Text="{TemplateBinding Content}"/>
        </Grid>
    </DataTemplate>
</metro:MetroWindow.TitleTemplate>