BorderStyle.xaml 1.6 KB
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <DropShadowEffect x:Key="ShadowEffect" ShadowDepth="1"/>
    <DropShadowEffect x:Key="DeepShadowEffect" ShadowDepth="3"/>
    <Style x:Key="BorderStyleWithoutEffect" TargetType="{x:Type Border}">
        <Setter Property="ToolTipService.ShowDuration" Value="30000"/>
        <Setter Property="BorderBrush" Value="{StaticResource LightBorderBrush}"/>
        <Setter Property="BorderThickness" Value="1"/>
        <Setter Property="CornerRadius" Value="8,8,8,8"/>
    </Style>
    <Style x:Key="BorderStyle" TargetType="{x:Type Border}">
        <Setter Property="ToolTipService.ShowDuration" Value="30000"/>
        <Setter Property="BorderBrush" Value="{StaticResource LightBorderBrush}"/>
        <Setter Property="BorderThickness" Value="1"/>
        <Setter Property="CornerRadius" Value="8,8,8,8"/>
        <Setter Property="Effect" Value="{StaticResource DeepShadowEffect}"/>
    </Style>

    <Style x:Key="HeaderBorderStyle" TargetType="{x:Type Border}">
        <Setter Property="ToolTipService.ShowDuration" Value="30000"/>
        <Setter Property="BorderBrush" Value="{StaticResource LightBorderBrush}"/>
        <Setter Property="BorderThickness" Value="1"/>
        <Setter Property="CornerRadius" Value="8,8,0,0"/>
        <Setter Property="Effect" Value="{StaticResource ShadowEffect}"/>
    </Style>

    <Style TargetType="{x:Type Border}">
        <Setter Property="ToolTipService.ShowDuration" Value="30000"/>
    </Style>

</ResourceDictionary>