1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-18 07:23:17 +03:00
ProxySU/ProxySuper.WPF/Views/TrojanGoInstallerView.xaml

40 lines
2.0 KiB
Plaintext
Raw Normal View History

2021-05-20 18:32:17 +08:00
<views:MvxWindow x:Class="ProxySuper.WPF.Views.TrojanGoInstallerView"
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:views="clr-namespace:MvvmCross.Platforms.Wpf.Views;assembly=MvvmCross.Platforms.Wpf"
xmlns:local="clr-namespace:ProxySuper.WPF.Views"
mc:Ignorable="d"
Icon="/Resources/ProxySU.ico"
Title="TrojanGoInstallerView" Height="450" Width="800">
2021-05-21 18:03:40 +08:00
<StackPanel>
2021-05-20 18:32:17 +08:00
<TextBox IsReadOnly="True"
Block.LineHeight="18"
Background="#000"
Foreground="LawnGreen"
FontSize="14"
FontFamily="Consolas"
x:Name="OutputTextBox"
Height="260"
Padding="10"
BorderThickness="0"
VerticalAlignment="Top"
VerticalContentAlignment="Top"
Text="{Binding Path=OutputText}"
/>
<StackPanel Margin="10" Orientation="Horizontal">
<Label Content="安装" />
<Button Height="24" Padding="10,0" Margin="10,0,0,0" IsEnabled="{Binding Connected}" Click="Install">一键安装</Button>
<Button Height="24" Padding="10,0" Margin="10,0,0,0" IsEnabled="{Binding Connected}" Click="Uninstall">卸载代理</Button>
</StackPanel>
<StackPanel Margin="10" Orientation="Horizontal">
<Label Content="配置" />
2021-05-21 18:03:40 +08:00
<Button Height="24" Padding="10,0" Margin="10,0,0,0" IsEnabled="{Binding Connected}" Click="InstallCert">手动续签证书</Button>
2021-05-20 18:32:17 +08:00
<Button Height="24" Padding="10,0" Margin="10,0,0,0" IsEnabled="{Binding Connected}" Click="UploadWeb">上传伪装网站</Button>
</StackPanel>
2021-05-21 18:03:40 +08:00
</StackPanel>
2021-05-20 18:32:17 +08:00
</views:MvxWindow>