18 lines
819 B
XML

<Application x:Class="MyApp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MyApp"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resorce/ButtonDictionary.xaml"/>
<ResourceDictionary Source="Resorce/ImageDictionary.xaml"/>
<ResourceDictionary Source="Resorce/ListDictionary.xaml"/>
<ResourceDictionary Source="Resorce/WindowDictionary.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>