■ ControlTemplate 엘리먼트를 사용해 Button 엘리먼트를 정의하는 방법을 보여준다.
▶ 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
<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="ControlTemplate 엘리먼트 : Button 엘리먼트 정의하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <Button Width="300" Height="100"> <Button.Template> <ControlTemplate TargetType="{x:Type Button}"> <Grid Margin="5"> <Ellipse StrokeThickness="2" Stroke="DarkBlue"> <Ellipse.Fill> <RadialGradientBrush RadiusX="0.5" RadiusY="0.5" Center="0.3 0.2"> <GradientStop Offset="0.1" Color="Azure" /> <GradientStop Offset="1.1" Color="CornflowerBlue" /> </RadialGradientBrush> </Ellipse.Fill> </Ellipse> <ContentPresenter Name="content" HorizontalAlignment="Center" VerticalAlignment="Center" /> </Grid> </ControlTemplate> </Button.Template> <Button.Content> <TextBlock FontSize="24" FontWeight="Bold"> 테스트 </TextBlock> </Button.Content> </Button> </Grid> </Window> |