InkCanvasForClass/Ink Canvas/App.xaml

29 lines
1.4 KiB
Plaintext
Raw Permalink 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.inkore.net/lib/ui/wpf/modern">
2020-11-22 11:05:12 +08:00
<Application.Resources>
2021-09-09 13:12:34 +08:00
<ResourceDictionary>
<Style TargetType="ui:ScrollViewerEx">
2023-10-28 22:46:22 +08:00
<EventSetter Event="PreviewMouseWheel" Handler="ScrollViewer_PreviewMouseWheel"/>
</Style>
<Style TargetType="ui:FontIcon">
<Setter Property="FontSize" Value="20"/>
</Style>
<Style TargetType="ui:SymbolIcon">
<Setter Property="FontSize" Value="20"/>
</Style>
2021-09-09 13:12:34 +08:00
<ResourceDictionary.MergedDictionaries>
<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"/>
<ResourceDictionary Source="Resources/Styles/Light.xaml"/>
2021-09-09 13:12:34 +08:00
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
2020-11-22 11:05:12 +08:00
</Application.Resources>
</Application>