InkCanvasForClass/Ink Canvas/App.xaml

19 lines
935 B
Plaintext
Raw Normal View History

2020-11-22 11:05:12 +08:00
<Application x:Class="Ink_Canvas.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Ink_Canvas"
2021-09-09 13:12:34 +08:00
StartupUri="MainWindow.xaml"
xmlns:ui="http://schemas.modernwpf.com/2019">
2020-11-22 11:05:12 +08:00
<Application.Resources>
2021-09-09 13:12:34 +08:00
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
2021-09-18 00:27:46 +08:00
<ui:ThemeResources RequestedTheme="Light" />
2021-09-09 13:12:34 +08:00
<ui:XamlControlsResources />
2021-11-07 18:01:31 +08:00
<ResourceDictionary Source="Resources/SeewoImageDictionary.xaml"/>
<ResourceDictionary Source="Resources/DrawShapeImageDictionary.xaml"/>
2021-12-12 00:32:33 +08:00
<ResourceDictionary Source="Resources/IconImageDictionary.xaml"/>
2021-09-09 13:12:34 +08:00
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
2020-11-22 11:05:12 +08:00
</Application.Resources>
</Application>