|
|
|
|
@ -107,6 +107,32 @@
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="RadioButtonSegmentedStyle" TargetType="RadioButton">
|
|
|
|
|
<Setter Property="Foreground" Value="#999"/>
|
|
|
|
|
<Setter Property="FontSize" Value="20"/>
|
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="RadioButton">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Border Background="{TemplateBinding Background}" CornerRadius="30">
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
|
|
TextElement.FontFamily="{StaticResource SCDream8}"
|
|
|
|
|
TextElement.FontSize="{TemplateBinding FontSize}"
|
|
|
|
|
TextElement.Foreground="{TemplateBinding Foreground}"/>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsChecked" Value="True">
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="Background" Value="#4178BE"/>
|
|
|
|
|
</Trigger>
|
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="RadioButtonTabStyle" TargetType="RadioButton">
|
|
|
|
|
<Setter Property="Foreground" Value="#999"/>
|
|
|
|
|
<Setter Property="FontSize" Value="26"/>
|
|
|
|
|
@ -163,6 +189,46 @@
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="TrapezoidButtonStyle" TargetType="Button">
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="Button">
|
|
|
|
|
<Grid>
|
|
|
|
|
|
|
|
|
|
<!-- 🔷 사다리꼴(위 좁고 아래 넓음) -->
|
|
|
|
|
<!-- (20,0) (120,0)
|
|
|
|
|
\ /
|
|
|
|
|
(0,50) (140,50) -->
|
|
|
|
|
<Polygon x:Name="shape"
|
|
|
|
|
Fill="#1D3649"
|
|
|
|
|
Points="20,0 120,0 140,50 0,50" />
|
|
|
|
|
|
|
|
|
|
<!-- 내용 -->
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Margin="0"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- 🔷 버튼 상태 -->
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
|
|
|
<Setter TargetName="shape" Property="Fill" Value="#264A63"/>
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsPressed" Value="True">
|
|
|
|
|
<Setter TargetName="shape" Property="Fill" Value="#162938"/>
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsEnabled" Value="False">
|
|
|
|
|
<Setter TargetName="shape" Property="Fill" Value="#555"/>
|
|
|
|
|
</Trigger>
|
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
|
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="ComboBoxStyle" TargetType="ComboBox">
|
|
|
|
|
<Setter Property="BorderBrush" Value="#404F63"/>
|
|
|
|
|
<Setter Property="BorderThickness" Value="1"/>
|
|
|
|
|
|