App.xaml 1.27 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
<Application x:Class="FLY.Thick.Base.UI.App"
潘栩锋's avatar
潘栩锋 committed
2 3 4 5 6 7
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml" >
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
8
                <!--MahApps Style-->
潘栩锋's avatar
潘栩锋 committed
9 10 11
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/Light.Blue.xaml" />
12 13
                
                <!--项目Style-->
14
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Styles.xaml"/>
15 16
                
                <!--项目字符串-->
17
                <ResourceDictionary Source="pack://application:,,,/FLY.Thick.Base.UI;component/Themes/StringResources/en/StringResource.xaml"/>
18
                
潘栩锋's avatar
潘栩锋 committed
19
            </ResourceDictionary.MergedDictionaries>
20
            <Style TargetType="GroupBox" />
潘栩锋's avatar
潘栩锋 committed
21 22 23
        </ResourceDictionary>
    </Application.Resources>
</Application>