1
我創造了全新的WPF應用程序,並在MainWindow.xaml我: 爲什麼窗口顯示在設計時間樣式,而不是在運行時
那爲什麼當我運行該應用程序我不看到相同的字體?的XAML代碼我已經是:
<Window.Resources>
<Style TargetType="{x:Type Window}" >
<Setter Property="FontFamily" Value="Arial Black"/>
</Style>
</Window.Resources>
<StackPanel>
<TextBlock>This is a TextBlock</TextBlock>
<Label>This is a Label</Label>
</StackPanel>