mirror of
https://ghfast.top/https://github.com/zsjy/AdbTools.git
synced 2025-03-15 08:39:39 +08:00
29 lines
1.1 KiB
XML
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>
|