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プロパティを初期化したいと思います。私が試してみました:
label1.Style = new Style("{StaticResource LabelTemplate}");
と
label1.Style = "{StaticResource LabelTemplate}";
どちらの解決策も有効ではありませんでした。
どんな助けでもいただければ幸いです:)。