在代码中设置WPF标签的Style属性?
在App.xaml中,我有以下代码: <Application.Resources> <Style x:Key="LabelTemplate" TargetType="{x:Type Label}"> <Setter Property="Height" Value="53" /> <Setter Property="Width" Value="130" /> <Setter Property="HorizontalAlignment" Value="Left" /> <Setter Property="Margin" Value="99,71,0,0" /> <Setter Property="VerticalAlignment" Value= "Top" /> <Setter Property="Foreground" Value="#FFE75959" /> <Setter Property="FontFamily" Value="Calibri" /> <Setter Property="FontSize" Value="40" /> </Style> </Application.Resources> 这旨在为我的标签提供通用模板。 在主要的XAML代码中,我具有以下代码行: <Label Content="Movies" Style="{StaticResource LabelTemplate}" Name="label1" /> 但是,我想通过代码初始化Style属性。我努力了: …