1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.WPF/App.xaml

34 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-05-08 13:52:59 +03:00
<views:MvxApplication x:Class="ProxySuper.WPF.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ProxySuper.WPF"
xmlns:views="clr-namespace:MvvmCross.Platforms.Wpf.Views;assembly=MvvmCross.Platforms.Wpf"
2021-05-14 14:07:19 +03:00
xmlns:ui="http://schemas.modernwpf.com/2019"
2021-05-08 13:52:59 +03:00
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
2021-05-13 04:58:45 +03:00
<!--Languages-->
<ResourceDictionary Source="/Resources/Languages/zh_cn.xaml" />
2021-05-15 06:58:05 +03:00
2021-05-15 11:45:36 +03:00
<!--styles-->
2021-05-14 14:07:19 +03:00
<ResourceDictionary>
<Style TargetType="{x:Type TextBox}">
2021-05-15 11:45:36 +03:00
<Setter Property="Padding" Value="5,2" />
<Setter Property="Height" Value="26" />
<Setter Property="VerticalContentAlignment" Value="Center" />
2021-05-14 14:07:19 +03:00
</Style>
<Style TargetType="{x:Type Label}">
<Setter Property="VerticalAlignment" Value="Center" />
2021-05-15 06:58:05 +03:00
</Style>
2021-05-14 14:07:19 +03:00
</ResourceDictionary>
2021-05-15 11:45:36 +03:00
<!--components styles-->
<ResourceDictionary Source="/Resources/Styles/DataGridStyle.xaml" />
2021-05-08 13:52:59 +03:00
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</views:MvxApplication>