2025-06-22 21:09:32 +08:00
|
|
|
<Application
|
|
|
|
x:Class="MCI18n.App"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:local="clr-namespace:MCI18n"
|
|
|
|
StartupUri="MainWindow.xaml">
|
2025-06-22 11:33:58 +08:00
|
|
|
<Application.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2025-06-22 21:09:32 +08:00
|
|
|
<!-- 引入自定义按钮样式 -->
|
|
|
|
<ResourceDictionary Source="Theme/MCButtonStyle.xaml" />
|
|
|
|
<ResourceDictionary Source="Theme/MCTabTheme.xaml" />
|
|
|
|
<ResourceDictionary Source="Theme/MCListViewStyle.xaml" />
|
2025-06-22 11:33:58 +08:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
2025-06-22 21:09:32 +08:00
|
|
|
<local:NullToVisibilityConverter x:Key="NullToVisibilityConverter" />
|
2025-06-22 11:33:58 +08:00
|
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
|
|
</Application>
|