|
|
|
|
@ -9,16 +9,29 @@
|
|
|
|
|
xmlns:shell="clr-namespace:System.Windows.Shell;assembly=PresentationFramework">
|
|
|
|
|
|
|
|
|
|
<classes:BoolToVisibilityConverter x:Key="BoolToVisibilityConverter"/>
|
|
|
|
|
|
|
|
|
|
<FontFamily x:Key="SCDream1">pack://application:,,,/Fonts/#S-Core Dream 1 Thin</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream2">pack://application:,,,/Fonts/#S-Core Dream 2 ExtraLight</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream3">pack://application:,,,/Fonts/#S-Core Dream 3 Light</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream4">pack://application:,,,/Fonts/#S-Core Dream 4 Regular</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream5">pack://application:,,,/Fonts/#S-Core Dream 5 Medium</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream6">pack://application:,,,/Fonts/#S-Core Dream 6 Bold</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream7">pack://application:,,,/Fonts/#S-Core Dream 7 ExtraBold</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream8">pack://application:,,,/Fonts/#S-Core Dream 8 Heavy</FontFamily>
|
|
|
|
|
<FontFamily x:Key="SCDream9">pack://application:,,,/Fonts/#S-Core Dream 9 Black</FontFamily>
|
|
|
|
|
<classes:InverseBoolConverter x:Key="InverseBoolConverter"/>
|
|
|
|
|
<classes:EnumEqualsConverter x:Key="EnumEqualsConverter"/>
|
|
|
|
|
<classes:BoolToPowerConverter x:Key="BoolToPowerConverter"/>
|
|
|
|
|
<classes:OneBasedConverter x:Key="OneBasedConverter"/>
|
|
|
|
|
<classes:PageIndexToDisplayConverter x:Key="PageIndexToDisplayConverter"/>
|
|
|
|
|
<classes:CurrentPageEqualsConverter x:Key="CurrentPageEqualsConverter"/>
|
|
|
|
|
|
|
|
|
|
<FontFamily x:Key="Pretendard_Thin">pack://application:,,,/Fonts/#Pretendard Thin</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_ExtraLight">pack://application:,,,/Fonts/#Pretendard ExtraLight</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_Light">pack://application:,,,/Fonts/#Pretendard Light</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_Regular">pack://application:,,,/Fonts/#Pretendard Regular</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_Medium">pack://application:,,,/Fonts/#Pretendard Medium</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_SemiBold">pack://application:,,,/Fonts/#Pretendard SemiBold</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_Bold">pack://application:,,,/Fonts/#Pretendard Bold</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_ExtraBold">pack://application:,,,/Fonts/#Pretendard ExtraBold</FontFamily>
|
|
|
|
|
<FontFamily x:Key="Pretendard_Black">pack://application:,,,/Fonts/#Pretendard Black</FontFamily>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="{x:Type TextBlock}" x:Key="TitleTextBlockStyle">
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_SemiBold}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="FontSize" Value="16"/>
|
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="WindowChromeStyle" TargetType="{x:Type Window}">
|
|
|
|
|
<Setter Property="shell:WindowChrome.WindowChrome">
|
|
|
|
|
@ -61,7 +74,7 @@
|
|
|
|
|
|
|
|
|
|
<Style x:Key="RadioBtnContentTextBlockStyle" TargetType="TextBlock">
|
|
|
|
|
<Setter Property="FontSize" Value="16"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream3}"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_Medium}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="#999"/>
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<!-- 🔹 라디오버튼이 체크되었을 때 텍스트 색 변경 -->
|
|
|
|
|
@ -75,7 +88,7 @@
|
|
|
|
|
|
|
|
|
|
<Style x:Key="CheckBoxContentTextBlockStyle" TargetType="TextBlock">
|
|
|
|
|
<Setter Property="FontSize" Value="16"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream3}"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_Medium}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="#999"/>
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<!-- 🔹 라디오버튼이 체크되었을 때 텍스트 색 변경 -->
|
|
|
|
|
@ -87,6 +100,18 @@
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="FieldNameRunStyle" TargetType="{x:Type Run}">
|
|
|
|
|
<Setter Property="FontSize" Value="18"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_Medium}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="#4178BE"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="FieldValueRunStyle" TargetType="{x:Type Run}">
|
|
|
|
|
<Setter Property="FontSize" Value="24"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_SemiBold}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="#FFFFFF"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="ImageRadioButtonStyle" TargetType="RadioButton">
|
|
|
|
|
<Setter Property="Foreground" Value="#999"/>
|
|
|
|
|
<Setter Property="FontSize" Value="20"/>
|
|
|
|
|
@ -97,7 +122,7 @@
|
|
|
|
|
<Image x:Name="ButtonImage" Stretch="Fill"
|
|
|
|
|
Source="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=(helper:RadioButtonHelper.UnPressedImage)}"/>
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
|
|
TextElement.FontFamily="{StaticResource SCDream8}"
|
|
|
|
|
TextElement.FontFamily="{StaticResource Pretendard_SemiBold}"
|
|
|
|
|
TextElement.FontSize="{TemplateBinding FontSize}"
|
|
|
|
|
TextElement.Foreground="{TemplateBinding Foreground}"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
@ -117,13 +142,16 @@
|
|
|
|
|
<Setter Property="Foreground" Value="#999"/>
|
|
|
|
|
<Setter Property="FontSize" Value="20"/>
|
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
|
|
|
<Setter Property="Width" Value="249"/>
|
|
|
|
|
<Setter Property="Height" Value="56"/>
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="RadioButton">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Border Background="{TemplateBinding Background}" CornerRadius="30">
|
|
|
|
|
<Border Background="{TemplateBinding Background}" CornerRadius="30"
|
|
|
|
|
Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
|
|
TextElement.FontFamily="{StaticResource SCDream8}"
|
|
|
|
|
TextElement.FontFamily="{StaticResource Pretendard_SemiBold}"
|
|
|
|
|
TextElement.FontSize="{TemplateBinding FontSize}"
|
|
|
|
|
TextElement.Foreground="{TemplateBinding Foreground}"/>
|
|
|
|
|
</Border>
|
|
|
|
|
@ -149,7 +177,7 @@
|
|
|
|
|
<ControlTemplate TargetType="RadioButton">
|
|
|
|
|
<Border Background="{TemplateBinding Background}">
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
|
|
TextElement.FontFamily="{StaticResource SCDream8}"
|
|
|
|
|
TextElement.FontFamily="{StaticResource Pretendard_SemiBold}"
|
|
|
|
|
TextElement.FontSize="{TemplateBinding FontSize}"
|
|
|
|
|
TextElement.Foreground="{TemplateBinding Foreground}"/>
|
|
|
|
|
</Border>
|
|
|
|
|
@ -164,6 +192,49 @@
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Style x:Key="PageCommandButtonStyle"
|
|
|
|
|
TargetType="Button"
|
|
|
|
|
BasedOn="{StaticResource MaterialDesignFlatLightBgButton}">
|
|
|
|
|
|
|
|
|
|
<!-- 기본 속성 재정의 -->
|
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
|
|
|
<Setter Property="BorderThickness" Value="0"/>
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="Width" Value="20"/>
|
|
|
|
|
<Setter Property="Height" Value="20"/>
|
|
|
|
|
<Setter Property="Padding" Value="0"/>
|
|
|
|
|
<Setter Property="Margin" Value="4 0"/>
|
|
|
|
|
<Setter Property="Opacity" Value="1"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="PageNumButtonStyle" TargetType="{x:Type Button}">
|
|
|
|
|
<Setter Property="Width" Value="24"/>
|
|
|
|
|
<Setter Property="Height" Value="24"/>
|
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="#264A60" />
|
|
|
|
|
<Setter Property="BorderThickness" Value="1" />
|
|
|
|
|
<Setter Property="Foreground" Value="#264A60"/>
|
|
|
|
|
<Setter Property="Padding" Value="6 0"/>
|
|
|
|
|
<Setter Property="Margin" Value="6"/>
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Value="True">
|
|
|
|
|
<DataTrigger.Binding>
|
|
|
|
|
<MultiBinding Converter="{StaticResource CurrentPageEqualsConverter}">
|
|
|
|
|
<!-- 현재 버튼의 인덱스 (각 아이템, int) -->
|
|
|
|
|
<Binding />
|
|
|
|
|
<!-- TanksPager.PageIndex -->
|
|
|
|
|
<Binding Path="DataContext.PageIndex"
|
|
|
|
|
RelativeSource="{RelativeSource AncestorType=ItemsControl}" />
|
|
|
|
|
</MultiBinding>
|
|
|
|
|
</DataTrigger.Binding>
|
|
|
|
|
<Setter Property="Background" Value="#325C80" />
|
|
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
|
|
<Setter Property="BorderThickness" Value="0" />
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="ImageButtonStyle" TargetType="Button">
|
|
|
|
|
<Setter Property="Width" Value="58"/>
|
|
|
|
|
<Setter Property="Height" Value="42"/>
|
|
|
|
|
@ -204,22 +275,15 @@
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="Button">
|
|
|
|
|
<Grid>
|
|
|
|
|
|
|
|
|
|
<!-- 🔷 사다리꼴(위 좁고 아래 넓음) -->
|
|
|
|
|
<!-- (20,0) (120,0)
|
|
|
|
|
\ /
|
|
|
|
|
(0,50) (140,50) -->
|
|
|
|
|
<Polygon x:Name="shape"
|
|
|
|
|
Fill="#1D3649"
|
|
|
|
|
Points="85.6111,0 92,30 0,30 6.38889,0" />
|
|
|
|
|
|
|
|
|
|
<!-- 내용 -->
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Margin="0"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- 🔷 버튼 상태 -->
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
|
|
|
<Setter TargetName="shape" Property="Fill" Value="#264A63"/>
|
|
|
|
|
@ -246,22 +310,15 @@
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="Button">
|
|
|
|
|
<Grid>
|
|
|
|
|
|
|
|
|
|
<!-- 🔷 사다리꼴(위 좁고 아래 넓음) -->
|
|
|
|
|
<!-- (20,0) (120,0)
|
|
|
|
|
\ /
|
|
|
|
|
(0,50) (140,50) -->
|
|
|
|
|
<Polygon x:Name="shape"
|
|
|
|
|
Fill="#1D3649"
|
|
|
|
|
Points="0,85.6111 30,92 30,0 0,6.38889" />
|
|
|
|
|
|
|
|
|
|
<!-- 내용 -->
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Margin="0"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- 🔷 버튼 상태 -->
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
|
|
|
<Setter TargetName="shape" Property="Fill" Value="#264A63"/>
|
|
|
|
|
@ -357,6 +414,7 @@
|
|
|
|
|
<Setter Property="Background" Value="{StaticResource LineComboBg}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="{StaticResource LineComboText}"/>
|
|
|
|
|
<Setter Property="FontSize" Value="16"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_SemiBold}"/>
|
|
|
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
|
|
|
<Setter Property="Padding" Value="12 0" />
|
|
|
|
|
<Setter Property="ItemContainerStyle" Value="{StaticResource LineComboBoxItemStyle}" />
|
|
|
|
|
@ -418,6 +476,20 @@
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<!-- DataGrid -->
|
|
|
|
|
|
|
|
|
|
<Style TargetType="{x:Type DataGridCell}">
|
|
|
|
|
<Setter Property="Padding" Value="0" />
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type DataGridCell}">
|
|
|
|
|
<Grid>
|
|
|
|
|
<ContentPresenter Margin="0" />
|
|
|
|
|
</Grid>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="DataGridStyle" TargetType="DataGrid">
|
|
|
|
|
<Setter Property="EnableRowVirtualization" Value="True"/>
|
|
|
|
|
<Setter Property="EnableColumnVirtualization" Value="True"/>
|
|
|
|
|
@ -435,21 +507,21 @@
|
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
|
|
|
<Setter Property="BorderBrush" Value="#999"/>
|
|
|
|
|
<Setter Property="BorderThickness" Value="1"/>
|
|
|
|
|
<Setter Property="TextElement.FontSize" Value="14"/>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="DataGridRowStyle" TargetType="{x:Type DataGridRow}">
|
|
|
|
|
<Setter Property="Background" Value="#292929"/>
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream3}"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_Medium}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="#BDBDBD"/>
|
|
|
|
|
<Setter Property="Padding" Value="0"/>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="DataGridColumnHeaderStyle" TargetType="{x:Type DataGridColumnHeader}">
|
|
|
|
|
<Setter Property="Background" Value="#264A60"/>
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
|
|
|
<Setter Property="BorderBrush" Value="White"/>
|
|
|
|
|
<Setter Property="FontSize" Value="14"/>
|
|
|
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream5}"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_SemiBold}"/>
|
|
|
|
|
<Setter Property="Height" Value="44"/>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="HighlightLeftBorderHeaderStyle"
|
|
|
|
|
@ -467,7 +539,7 @@
|
|
|
|
|
<Style x:Key="DataGridElmenetStyle" TargetType="{x:Type TextBlock}">
|
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream3}"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_Medium}"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="GridViewColumnHeaderStyle" TargetType="{x:Type GridViewColumnHeader}">
|
|
|
|
|
@ -478,6 +550,8 @@
|
|
|
|
|
Background="#1D3649"
|
|
|
|
|
Width="{TemplateBinding Width}" >
|
|
|
|
|
<TextBlock Text="{TemplateBinding Content}"
|
|
|
|
|
FontSize="14"
|
|
|
|
|
FontFamily="{StaticResource Pretendard_SemiBold}"
|
|
|
|
|
Foreground="White"
|
|
|
|
|
Padding="0"
|
|
|
|
|
TextAlignment="Center"
|
|
|
|
|
@ -495,24 +569,10 @@
|
|
|
|
|
<Style x:Key="GridViewTextBlockStyle" TargetType="{x:Type TextBlock}">
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="FontSize" Value="14"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream3}"/>
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_Medium}"/>
|
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="PageCommandButtonStyle"
|
|
|
|
|
TargetType="Button"
|
|
|
|
|
BasedOn="{StaticResource MaterialDesignFlatLightBgButton}">
|
|
|
|
|
|
|
|
|
|
<!-- 기본 속성 재정의 -->
|
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
|
|
|
<Setter Property="BorderThickness" Value="0"/>
|
|
|
|
|
<Setter Property="Foreground" Value="White"/>
|
|
|
|
|
<Setter Property="Width" Value="20"/>
|
|
|
|
|
<Setter Property="Height" Value="20"/>
|
|
|
|
|
<Setter Property="Padding" Value="0"/>
|
|
|
|
|
<Setter Property="Opacity" Value="1"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="ListBoxItem" x:Key="TransparentListBoxItemStyle" BasedOn="{StaticResource MaterialDesignListBoxItem}">
|
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
|
|
|
<Setter Property="Padding" Value="0"/>
|
|
|
|
|
@ -679,7 +739,7 @@
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
TextElement.Foreground="{TemplateBinding Foreground}"
|
|
|
|
|
TextElement.FontSize="12"
|
|
|
|
|
TextElement.FontFamily="{StaticResource SCDream2}"/>
|
|
|
|
|
TextElement.FontFamily="{StaticResource Pretendard_Medium}"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
@ -775,7 +835,7 @@
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="GeneralButtonStyle" TargetType="Button" BasedOn="{StaticResource MaterialDesignFlatLightBgButton}">
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream3}" />
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_SemiBold}" />
|
|
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
|
|
<Setter Property="FontSize" Value="16" />
|
|
|
|
|
<Setter Property="Background" Value="#325C80" />
|
|
|
|
|
@ -785,7 +845,7 @@
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="CCTVTextBlockStyle" TargetType="TextBlock">
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource SCDream4}" />
|
|
|
|
|
<Setter Property="FontFamily" Value="{StaticResource Pretendard_Medium}" />
|
|
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
|
|
<Setter Property="FontSize" Value="16" />
|
|
|
|
|
</Style>
|
|
|
|
|
|