mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
92 lines
4.2 KiB
XML
92 lines
4.2 KiB
XML
<views:MvxWindow x:Class="ProxySuper.WPF.Views.TrojanGoEditorView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:ProxySuper.WPF.Views"
|
|
xmlns:views="clr-namespace:MvvmCross.Platforms.Wpf.Views;assembly=MvvmCross.Platforms.Wpf"
|
|
xmlns:ctrl="clr-namespace:ProxySuper.WPF.Controls"
|
|
mc:Ignorable="d"
|
|
BorderThickness="0,1,0,0"
|
|
BorderBrush="#eee"
|
|
Icon="/Resources/ProxySU.ico"
|
|
WindowStartupLocation="CenterScreen"
|
|
Title="Trojan-Go编辑配置" Height="600" Width="1000">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="310" />
|
|
<ColumnDefinition Width="1" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Grid.Column="0" Margin="10">
|
|
<ctrl:HostControl />
|
|
</StackPanel>
|
|
<StackPanel Grid.Column="1" Background="#EEE"></StackPanel>
|
|
|
|
<StackPanel Grid.Column="2">
|
|
<Grid Margin="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="36" />
|
|
<RowDefinition Height="36" />
|
|
<RowDefinition Height="36" />
|
|
<RowDefinition Height="36" />
|
|
<RowDefinition Height="36" />
|
|
<RowDefinition Height="36" />
|
|
<RowDefinition Height="36" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="120" />
|
|
<ColumnDefinition Width="200" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Content="{DynamicResource TrojanGoDomain}" Grid.Row="0" Grid.Column="0" />
|
|
<TextBox Text="{Binding Settings.Domain}" Grid.Row="0" Grid.Column="1" />
|
|
|
|
<Label Content="{DynamicResource TrojanGoPort}" Grid.Row="1" Grid.Column="0" />
|
|
<TextBox Text="{Binding Settings.Port}" Grid.Row="1" Grid.Column="1" />
|
|
|
|
<Label Content="{DynamicResource TrojanGoPassword}" Grid.Row="2" Grid.Column="0" />
|
|
<TextBox Text="{Binding Settings.Password}" Grid.Row="2" Grid.Column="1" />
|
|
|
|
<Label Content="{DynamicResource TrojanGoMaskDomain}" Grid.Row="3" Grid.Column="0" />
|
|
<TextBox Text="{Binding Settings.MaskDomain}" Grid.Row="3" Grid.Column="1" />
|
|
|
|
<Label Content="{DynamicResource TrojanGoWebSocketPath}" Grid.Row="4" Grid.Column="0" />
|
|
<TextBox Text="{Binding Settings.WebSocketPath}" Grid.Row="4" Grid.Column="1" />
|
|
|
|
|
|
<Label Content="{DynamicResource XrayWithTLS}" Width="120" Grid.Row="5" Grid.Column="0" />
|
|
<CheckBox IsChecked="{Binding Path=Settings.WithTLS}"
|
|
Grid.Row="5"
|
|
Grid.Column="1"
|
|
Content="{DynamicResource XrayWithTLSDesc}"
|
|
VerticalContentAlignment="Center"
|
|
VerticalAlignment="Center" />
|
|
</Grid>
|
|
|
|
|
|
<Border Grid.Row="1"
|
|
BorderBrush="#eee"
|
|
BorderThickness="0,1,0,0">
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="0,20,0,0"
|
|
HorizontalAlignment="Right">
|
|
<Button Content="{DynamicResource Save}"
|
|
Command="{Binding SaveCommand}"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Padding="10,5" />
|
|
|
|
<Button Content="{DynamicResource SaveAndInstall}"
|
|
Command="{Binding SaveAndInstallCommand}"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Padding="10,5"
|
|
Margin="20,0,40,0" />
|
|
</StackPanel>
|
|
</Border>
|
|
</StackPanel>
|
|
</Grid>
|
|
</views:MvxWindow>
|