UiModuleStyle.xaml 895 Bytes
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/BaseStyle.xaml"/>
    </ResourceDictionary.MergedDictionaries>
    <!--动态区 UiModule 的背景框-->
    <Style TargetType="Border" x:Key="BorderStyle_module">
        <Setter Property="Background" Value="{StaticResource Color_theme_background}"/>
        <Setter Property="Margin" Value="3"/>
        <Setter Property="CornerRadius" Value="3"/>
        <Setter Property="Effect">
            <Setter.Value>
                <DropShadowEffect Color="Black" Direction="270" ShadowDepth="1" Opacity="0.23" />
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>