Trong App.xaml, tôi có mã sau:
<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>
Điều này có nghĩa là cung cấp một mẫu chung cho các nhãn của tôi.
Trong mã XAML chính, tôi có dòng mã sau:
<Label Content="Movies" Style="{StaticResource LabelTemplate}" Name="label1" />
Tuy nhiên, tôi muốn khởi tạo thuộc tính Style thông qua mã. Tôi đã thử:
label1.Style = new Style("{StaticResource LabelTemplate}");
và
label1.Style = "{StaticResource LabelTemplate}";
Không có giải pháp nào hợp lệ.
Bất kỳ trợ giúp sẽ được đánh giá cao :).