[C#/WPF] Style 엘리먼트 : TargetType 속성을 사용해 버튼 스타일 설정하기
■ Style 엘리먼트의 TargetType 속성을 사용해 버튼 스타일을 설정하는 방법을 보여준다. ▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="800" Height="600" Title="Style 엘리먼트 : TargetType 속성을 사용해 버튼 스타일 설정하기" FontFamily="나눔고딕코딩" FontSize="16"> <Window.Resources> <Style TargetType="{x:Type Button}"> <Setter Property="Margin" Value="10" /> <Setter Property="FontSize" Value="24" /> <Setter Property="Foreground" Value="Blue" /> </Style> </Window.Resources> <Grid> <Button HorizontalAlignment="Center" VerticalAlignment="Center" Padding="10" Content="테스트" /> </Grid> </Window> |
※ x:Type 태그 확장을 사용하지 않아도 된다. ※