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-04-05 05:22:43 +03:00
|
|
|
|
Title="主机控制台" Height="600" 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"/>
|
|
|
|
|
|
2021-04-05 05:22:43 +03:00
|
|
|
|
<Button Content="一键安装"
|
2021-03-15 12:58:20 +03:00
|
|
|
|
Click="Install"
|
|
|
|
|
Height="26"
|
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
|
Width="120"/>
|
2021-03-09 12:52:09 +03:00
|
|
|
|
|
2021-04-05 05:22:43 +03:00
|
|
|
|
<Button Content="更新配置"
|
2021-03-15 12:58:20 +03:00
|
|
|
|
Margin="10,0,0,0"
|
2021-04-05 05:22:43 +03:00
|
|
|
|
Click="UpdateXraySettings"
|
2021-03-15 12:58:20 +03:00
|
|
|
|
Height="26"
|
|
|
|
|
IsEnabled="{Binding HasConnected}"
|
|
|
|
|
Width="120"/>
|
2021-03-09 12:52:09 +03:00
|
|
|
|
|
2021-04-05 05:22:43 +03:00
|
|
|
|
<Button Content="更新Xray内核"
|
2021-03-15 12:58:20 +03:00
|
|
|
|
Margin="10,0,0,0"
|
2021-04-05 05:22:43 +03:00
|
|
|
|
Click="UpdateXrayCore"
|
2021-03-15 12:58:20 +03:00
|
|
|
|
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-04-05 05:22:43 +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"/>
|
|
|
|
|
|
2021-04-05 05:22:43 +03:00
|
|
|
|
<Button Content="上传网站"
|
2021-03-15 12:58:20 +03:00
|
|
|
|
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-04-05 05:22:43 +03:00
|
|
|
|
<Label Content="说明:"/>
|
|
|
|
|
<StackPanel Margin="10,0,0,0">
|
|
|
|
|
<Label Content="一键安装: 最后输出 “请尽情享用” 表示完成,到[查看配置]或[导出配置]查看节点" />
|
|
|
|
|
<Label Content="更新配置: 修改节点配置信息后,不需要重新安装,这个功能就可以更新配置了" />
|
|
|
|
|
|
|
|
|
|
<Label Content="续签证书: 证书默认是自动续签,但不保证都能续签成功,如果失败请用[续签证书]手动续签" />
|
|
|
|
|
<Label Content="上传网站: 伪装网站,正确的静态网页要有index.html文件(请检查),然后将网站压缩包上传。" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<Label Content="如下是网友提供的静态网页连接,请自行检查是否有index.html文件" />
|
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>
|