<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="Tetris.MainWindow"
Title="MainWindow" Height="570" Width="525">
<DockPanel LastChildFill="False">
<StackPanel DockPanel.Dock="Right" Width="127">
<Label Content="Label" Height="56" Name="Scores" FrontSize="28" FrontWeight ="Bolt" />
<Label Content="Label" Height="56" Name="Lines" FrontSize="28" FrontWeight="Bolt"/>
</StackPanel>
</DockPanel>
所以,我尝试在我的标签中使用FrontSize和FrontWeight,但它没有用 - 我的错误是什么?顺便说一句,我的最后一次FrontWeight确实有效。
答案 0 :(得分:4)
这是“字体”,而不是“前面”和“大胆”,而不是“博尔特”(具有讽刺意味的是,根据我的名字):
<Label Content="Label" Height="56" Name="Scores" FontSize="28" FontWeight="Bold" />
<Label Content="Label" Height="56" Name="Lines" FontSize="28" FontWeight="Bold" />