AdbTools/AdbTools/App.xaml
mjsoftware 5acadddafd 提交
2025-01-14 16:51:42 +08:00

29 lines
1.1 KiB
XML

<Application x:Class="AdbTools.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AdbTools"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="resource/ControlStyle.xaml"></ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
<!--所有button应用-->
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource UserButtonStyle}"/>
<Style TargetType="{x:Type MenuItem}" BasedOn="{StaticResource UserMenuItemStyle}"/>
<!--<Style TargetType="{x:Type ComboBoxItem}" BasedOn="{StaticResource UserComboBoxItem}"/>-->
<!--<Style TargetType="{x:Type ComboBox}" BasedOn="{StaticResource UserComboBox}"/>-->
<!--<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource UserTextBox}"/>-->
</ResourceDictionary>
</Application.Resources>
</Application>