summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/App.xaml
blob: 24ea02909a2ac7ff073a3b45d89b522107608baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Application x:Class="HandBrakeWPF.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:HandBrakeWPF.Startup"
             ShutdownMode="OnMainWindowClose">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Views/Styles/Styles.xaml"/>
                <ResourceDictionary>
                    <local:CastleBootstrapper x:Key="bootstrapper" />
                </ResourceDictionary>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>