■ ToolBar 엘리먼트에서 내부 컨트롤 스타일을 설정하는 방법을 보여준다.
▶ 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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
<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="TestProject" FontFamily="나눔고딕코딩" FontSize="16"> <Window.Resources> <!-- 툴바 내부 컨트롤 스타일을 정의한다. --> <Style x:Key="{x:Static ToolBar.SeparatorStyleKey}" TargetType="Separator"> <Setter Property="Width" Value="2" /> <Setter Property="Background" Value="DarkBlue" /> </Style> <Style x:Key="{x:Static ToolBar.ButtonStyleKey}" TargetType="Button"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Foreground" Value="Blue" /> <Setter Property="FontSize" Value="14" /> </Style> <Style x:Key="{x:Static ToolBar.CheckBoxStyleKey}" TargetType="CheckBox"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Foreground" Value="DarkSlateBlue" /> <Setter Property="FontSize" Value="14" /> </Style> <Style x:Key="{x:Static ToolBar.MenuStyleKey}" TargetType="Menu"> <Setter Property="Background" Value="LightSteelBlue" /> <Setter Property="FontSize" Value="14" /> <Setter Property="FontStyle" Value="Italic" /> <Setter Property="FontWeight" Value="Bold" /> </Style> <Style x:Key="{x:Static ToolBar.RadioButtonStyleKey}" TargetType="RadioButton"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Background" Value="LightSteelBlue" /> <Setter Property="FontSize" Value="14" /> </Style> <Style x:Key="{x:Static ToolBar.TextBoxStyleKey}" TargetType="TextBox"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Width" Value="75" /> <Setter Property="Background" Value="DarkBlue" /> <Setter Property="Foreground" Value="White" /> <Setter Property="FontSize" Value="14" /> <Setter Property="FontStyle" Value="Italic" /> </Style> <Style x:Key="{x:Static ToolBar.ComboBoxStyleKey}" TargetType="ComboBox"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="MinWidth" Value="60" /> <Setter Property="Background" Value="LightSteelBlue" /> <Setter Property="FontSize" Value="14" /> </Style> <!-- 툴바 외부 컨트롤 스타일을 정의한다. --> <Style TargetType="Separator"> <Setter Property="Width" Value="2" /> <Setter Property="Background" Value="DarkBlue" /> </Style> <Style TargetType="Button"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Foreground" Value="Blue" /> <Setter Property="FontSize" Value="14" /> </Style> <Style TargetType="CheckBox"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Foreground" Value="DarkSlateBlue" /> <Setter Property="FontSize" Value="14" /> </Style> <Style TargetType="Menu"> <Setter Property="Background" Value="LightSteelBlue" /> <Setter Property="FontSize" Value="14" /> <Setter Property="FontStyle" Value="Italic" /> <Setter Property="FontWeight" Value="Bold" /> </Style> <Style TargetType="RadioButton"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Background" Value="LightSteelBlue" /> <Setter Property="FontSize" Value="14" /> </Style> <Style TargetType="TextBox"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="Width" Value="75" /> <Setter Property="Background" Value="DarkBlue" /> <Setter Property="Foreground" Value="White" /> <Setter Property="FontSize" Value="14" /> <Setter Property="FontStyle" Value="Italic" /> </Style> <Style TargetType="ComboBox"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="MinWidth" Value="60" /> <Setter Property="Background" Value="LightSteelBlue" /> <Setter Property="FontSize" Value="14" /> </Style> </Window.Resources> <DockPanel LastChildFill="False"> <ToolBarTray DockPanel.Dock="Top" Background="LightBlue"> <ToolBar > <Button Content="Button 1" /> <Button Content="Button 2" /> <Separator /> <CheckBox Content="CheckBox 1" /> <CheckBox Content="CheckBox 2" /> <Separator /> <RadioButton>One</RadioButton> <RadioButton>Two</RadioButton> <Separator /> <ComboBox> <ComboBoxItem IsSelected="True">Item 1</ComboBoxItem> <ComboBoxItem>Item 2</ComboBoxItem> <ComboBoxItem>Item 3</ComboBoxItem> <ComboBoxItem>Item 4</ComboBoxItem> </ComboBox> <TextBox /> <Separator /> <Menu> <MenuItem Header="Menu"> <MenuItem Header="File"> <MenuItem Header="Copy" /> <MenuItem Header="Paste" /> </MenuItem> </MenuItem> </Menu> </ToolBar> </ToolBarTray> </DockPanel> </Window> |