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>
|
2022-11-20 18:00:16 +03:00
|
|
|
|
2021-05-08 13:52:59 +03:00
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2022-02-28 05:09:13 +03:00
|
|
|
<!--Language-->
|
2021-05-13 04:58:45 +03:00
|
|
|
<ResourceDictionary Source="/Resources/Languages/zh_cn.xaml" />
|
2022-02-28 05:09:13 +03:00
|
|
|
<!--style-->
|
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
|
|
|
|
2022-02-28 05:09:13 +03:00
|
|
|
<!--component style-->
|
2021-05-15 11:45:36 +03:00
|
|
|
<ResourceDictionary Source="/Resources/Styles/DataGridStyle.xaml" />
|
|
|
|
|
2021-05-08 13:52:59 +03:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
|
|
</views:MvxApplication>
|