2021-02-25 04:59:06 +03:00
|
|
|
<metro:MetroWindow x:Class="ProxySU_Core.TerminalWindow"
|
|
|
|
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:ProxySU_Core"
|
|
|
|
xmlns:metro="http://metro.mahapps.com/winfx/xaml/controls"
|
|
|
|
mc:Ignorable="d"
|
2021-03-09 12:52:09 +03:00
|
|
|
Title="主机控制台" Height="500" Width="800">
|
2021-02-25 04:59:06 +03:00
|
|
|
<StackPanel>
|
2021-03-11 07:05:50 +03:00
|
|
|
<TextBox IsReadOnly="True"
|
2021-02-25 04:59:06 +03:00
|
|
|
Block.LineHeight="18"
|
|
|
|
Background="#000"
|
|
|
|
Foreground="LawnGreen"
|
|
|
|
FontSize="14"
|
|
|
|
FontFamily="Consolas"
|
2021-03-04 13:25:52 +03:00
|
|
|
x:Name="OutputTextBox"
|
2021-03-15 12:58:20 +03:00
|
|
|
Height="260"
|
2021-03-11 07:05:50 +03:00
|
|
|
Text="{Binding Path=OutputText}"
|
|
|
|
/>
|
2021-02-25 04:59:06 +03:00
|
|
|
|
2021-03-09 12:52:09 +03:00
|
|
|
<StackPanel Margin="10"
|
2021-03-15 12:58:20 +03:00
|
|
|
Orientation="Vertical"
|
2021-03-09 12:52:09 +03:00
|
|
|
HorizontalAlignment="Left">
|
2021-03-15 12:58:20 +03:00
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<TextBlock Text="内核/配置"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Margin="0,0,10,0"/>
|
|
|
|
|
|
|
|
<Button Content="安装Xray"
|
|
|
|
Click="Install"
|
|
|
|
Height="26"
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
Width="120"/>
|
2021-03-09 12:52:09 +03:00
|
|
|
|
2021-03-15 12:58:20 +03:00
|
|
|
<Button Content="更新Xray内核"
|
|
|
|
Margin="10,0,0,0"
|
|
|
|
Click="UpdateXrayCore"
|
|
|
|
Height="26"
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
Width="120"/>
|
2021-03-09 12:52:09 +03:00
|
|
|
|
2021-03-15 12:58:20 +03:00
|
|
|
<Button Content="更新Xray配置"
|
|
|
|
Margin="10,0,0,0"
|
|
|
|
Click="UpdateXraySettings"
|
|
|
|
Height="26"
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
Width="120"/>
|
2021-03-26 06:28:41 +03:00
|
|
|
|
|
|
|
<Button Content="卸载代理"
|
|
|
|
Margin="10,0,0,0"
|
|
|
|
Click="UninstallXray"
|
|
|
|
Height="26"
|
|
|
|
Width="120"
|
|
|
|
IsEnabled="{Binding HasConnected}"/>
|
2021-03-15 12:58:20 +03:00
|
|
|
</StackPanel>
|
2021-03-11 09:31:18 +03:00
|
|
|
|
2021-03-15 12:58:20 +03:00
|
|
|
<StackPanel Orientation="Horizontal"
|
|
|
|
Margin="0,10,0,0">
|
|
|
|
<TextBlock Text="证书/网站"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Margin="0,0,10,0"/>
|
2021-03-09 12:52:09 +03:00
|
|
|
|
2021-03-26 06:28:41 +03:00
|
|
|
<Button Content="申请证书"
|
2021-03-15 12:58:20 +03:00
|
|
|
Margin="0,0,0,0"
|
|
|
|
Height="26"
|
|
|
|
Width="120"
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
Click="InstallCert"/>
|
2021-03-09 14:02:14 +03:00
|
|
|
|
2021-03-15 12:58:20 +03:00
|
|
|
<Button Content="上传自有证书"
|
|
|
|
Margin="10,0,0,0"
|
|
|
|
Height="26"
|
|
|
|
Width="120"
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
Click="UploadCert"/>
|
|
|
|
|
|
|
|
<Button Content="上传伪装网站"
|
|
|
|
Margin="10,0,0,0"
|
|
|
|
Height="26"
|
|
|
|
Width="120"
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
Click="UploadWeb"/>
|
|
|
|
|
|
|
|
<Button Content="重装Caddy"
|
|
|
|
Margin="10,0,0,0"
|
|
|
|
Click="ReinstallCaddy"
|
|
|
|
Height="26"
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
Width="120"/>
|
|
|
|
</StackPanel>
|
2021-03-09 12:52:09 +03:00
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel Margin="10,0,0,0">
|
2021-03-10 05:50:34 +03:00
|
|
|
<Label Content="静态网页模版(感谢网友推荐),将网站压缩包上传到服务区即可。" />
|
2021-03-09 12:52:09 +03:00
|
|
|
<TextBlock>
|
|
|
|
<Hyperlink NavigateUri="https://www.themezy.com" Click="OpenLink">Themezy</Hyperlink>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock>
|
2021-03-09 13:18:29 +03:00
|
|
|
<Hyperlink NavigateUri="https://onepagelove.com/templates/free-templates" Click="OpenLink">One Page Love</Hyperlink>
|
2021-03-09 12:52:09 +03:00
|
|
|
</TextBlock>
|
|
|
|
<TextBlock>
|
|
|
|
<Hyperlink NavigateUri="https://html5up.net/" Click="OpenLink">HTML5 UP</Hyperlink>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock>
|
|
|
|
<Hyperlink NavigateUri="https://templatemo.com/" Click="OpenLink">template mo</Hyperlink>
|
|
|
|
</TextBlock>
|
2021-02-25 04:59:06 +03:00
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
|
|
</metro:MetroWindow>
|