UiModuleStyle2.xaml 896 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<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/Colors2.xaml"/>
    </ResourceDictionary.MergedDictionaries>
    <!--动态区 UiModule 的背景框-->
    <Style TargetType="Border" x:Key="Styles.Module.Border">
        <Setter Property="Background" Value="{StaticResource Brushes.ThemeBackground}"/>
        <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>