<Style x:Key="ToggleButton.Point.Style" TargetType="{x:Type ToggleButton}">
<Setter Property="Background" Value=""/>
<Setter Property="BorderBrush" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Foreground" Value=""/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="Padding" Value="12,5,12,5"/>
<Setter Property="Width" Value="Auto"/>
<Setter Property="MinWidth" Value="30"/>
<Setter Property="MinHeight" Value="20"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="FontFamily" Value="{StaticResource NotoSans}"/>
<Setter Property="FontSize" Value=""/>
<Setter Property="FontWeight" Value=""/>
<Setter Property="SnapsToDevicePixels" Value="True"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Grid> // Trigger 받는 영역설정
<Border x:Name="BackgroundContainer" Background="{TemplateBinding Background}" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" SnapsToDevicePixels="true" CornerRadius="4"/>
<Border x:Name="StateContainer" CornerRadius="" BorderThickness="0"/>
<ContentPresenter x:Name="contentPresenter" Focusable="False" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Background" TargetName="StateContainer" Value=""/>
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter Property="Background" TargetName="StateContainer" Value=""/>
</Trigger>
<Trigger Property="IsChecked" Value="true">
<Setter Property="Background" TargetName="StateContainer" Value=""/>
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Background" TargetName="StateContainer" Value=""/>
<Setter Property="Opacity" TargetName="StateContainer" Value=""/>
<Setter Property="Foreground" Value=""/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Opacity" TargetName="BackgroundContainer" Value=""/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>