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" />
हालाँकि, मैं कोड के माध्यम से स्टाइल प्रॉपर्टी को इनिशियलाइज़ करना चाहूंगा। मैं प्रयास कर चुका हूं:
label1.Style = new Style("{StaticResource LabelTemplate}");
तथा
label1.Style = "{StaticResource LabelTemplate}";
न ही समाधान मान्य था।
किसी भी सहायता की सराहना की जाएगी :)।