MaiTouchSensorEmulator/App.xaml

16 lines
696 B
Plaintext
Raw Permalink Normal View History

2024-02-08 12:41:21 +08:00
<Application x:Class="WpfMaiTouchEmulator.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfMaiTouchEmulator"
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
2024-02-08 12:41:21 +08:00
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemesDictionary Theme="Light" />
<ui:ControlsDictionary />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
2024-02-08 12:41:21 +08:00
</Application.Resources>
</Application>