■ Style 엘리먼트의 TargetType 속성을 사용해 Label 엘리먼트 스타일을 설정하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 |
<ResourceDictionary> <Color x:Key="PrimaryColorKey">#512bdf</Color> <Style TargetType="Label"> <Setter Property="TextColor" Value="{DynamicResource PrimaryColorKey}" /> <Setter Property="FontFamily" Value="OpenSansRegular" /> </Style> </ResourceDictionary> |