求问:未在类型“Window”中找到可附加的属性“Resources”。
<hc:Window.Resources>
<Style TargetType="TextBlock">
</Style>
<Style TargetType="ListBoxItem">
<Setter Property="Height" Value="100" />
<Setter Property="FontSize" Value="50"></Setter>
</Style>
<DataTemplate x:Key="MenuTpl">
<StackPanel Margin="10,15" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal">
<TextBlock Text="{Binding Name}" FontSize="16" ></TextBlock>
<Label Visibility="{Binding HasTag,Converter={StaticResource Boolean2VisibilityConverter}}" HorizontalAlignment="Left" Margin="5" Content="(新)" Style="{StaticResource LabelDanger.Small}"/>
</StackPanel>
</DataTemplate>
</hc:Window.Resources>