summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/App.xaml
blob: e436745b4d320445e092d02cadd0410970d8d283 (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:AppBootstrapper x:Key="bootstrapper" />
                </ResourceDictionary>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>