From 066356ad4b0c4e98826d02223a66e72f04c54a67 Mon Sep 17 00:00:00 2001 From: ProxySU Date: Sat, 4 Apr 2020 22:43:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E9=AA=8C=E6=9F=90=E4=BA=9B=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=EF=BC=8C=E4=B8=8D=E6=88=90=E7=86=9F=E6=9C=AA=E8=83=BD?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProxySU/MainWindow.xaml | 38 +++++++++++++++++++++----- ProxySU/MainWindow.xaml.cs | 55 +++++++++++++++++++------------------- 2 files changed, 60 insertions(+), 33 deletions(-) diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml index ab8316f..4529fd5 100644 --- a/ProxySU/MainWindow.xaml +++ b/ProxySU/MainWindow.xaml @@ -5,7 +5,33 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:ProxySU" mc:Ignorable="d" - Title="ProxySU" Height="550" Width="600"> + Title="ProxySU" Height="550" Width="820"> + + + + + @@ -32,16 +58,16 @@ - + - + - + @@ -178,8 +204,8 @@ + diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs index 417309a..a57bc30 100644 --- a/ProxySU/MainWindow.xaml.cs +++ b/ProxySU/MainWindow.xaml.cs @@ -50,6 +50,7 @@ namespace ProxySU RadioButtonProxyNoLogin.IsChecked = true; RadioButtonSocks4.Visibility = Visibility.Collapsed; ReceiveConfigurationParameters = new string[6]; + } //远程主机连接信息 @@ -557,10 +558,10 @@ namespace ProxySU textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus); Thread.Sleep(1000); //生成服务端配置 - if (!Directory.Exists("config"))//如果不存在就创建file文件夹      - { - Directory.CreateDirectory("config");//创建该文件夹   - } + //if (!Directory.Exists("config"))//如果不存在就创建file文件夹      + //{ + // Directory.CreateDirectory("config");//创建该文件夹   + //} //string clientConfig = "TemplateConfg\\tcp_client_config.json"; using (StreamReader reader = File.OpenText(serverConfig)) { @@ -583,19 +584,19 @@ namespace ProxySU } - using (StreamWriter sw = new StreamWriter(@"config\config.json")) + using (StreamWriter sw = new StreamWriter(@"config.json")) { sw.Write(serverJson.ToString()); } } - UploadConfig(connectionInfo, @"config\config.json",upLoadPath); + UploadConfig(connectionInfo, @"config.json",upLoadPath); //client.RunCommand("sed -i 's/##port##/" + ReceiveConfigurationParameters[1] + "/' " + upLoadPath); //client.RunCommand("sed -i 's/##uuid##/" + ReceiveConfigurationParameters[2] + "/' " + upLoadPath); //client.RunCommand("sed -i 's/##path##/\\" + ReceiveConfigurationParameters[3] + "/' " + upLoadPath); ////client.RunCommand("sed -i 's/##domain##/" + ReceiveConfigurationParameters[4] + "/' " + upLoadPath); //client.RunCommand("sed -i 's/##mkcpHeaderType##/" + ReceiveConfigurationParameters[5] + "/' " + upLoadPath); client.RunCommand("systemctl restart v2ray"); - File.Delete(@"config\config.json"); + File.Delete(@"config.json"); //打开防火墙端口 string openFireWallPort = ReceiveConfigurationParameters[1]; @@ -1145,27 +1146,27 @@ namespace ProxySU } } - private void ButtonWebBrowserProxyGo_Click(object sender, RoutedEventArgs e) - { - try - { - string urlStartchar = TextBoxWebBrowserProxyUrl.Text.Substring(0, 4); - MessageBox.Show(urlStartchar); - if (String.Equals(urlStartchar,"http")==true) - { - WebBrowserResourcesAndTools.Source = new Uri(TextBoxWebBrowserProxyUrl.Text); - } - else - { - WebBrowserResourcesAndTools.Source = new Uri("http://"+TextBoxWebBrowserProxyUrl.Text); - } + //private void ButtonWebBrowserProxyGo_Click(object sender, RoutedEventArgs e) + //{ + // try + // { + // string urlStartchar = TextBoxWebBrowserProxyUrl.Text.Substring(0, 4); + // //MessageBox.Show(urlStartchar); + // if (String.Equals(urlStartchar,"http")==true) + // { + // WebBrowserResourcesAndTools.Source = new Uri(TextBoxWebBrowserProxyUrl.Text); + // } + // else + // { + // WebBrowserResourcesAndTools.Source = new Uri("http://" + TextBoxWebBrowserProxyUrl.Text);//如果没有前置代理,此处应为:"http://" + TextBoxWebBrowserProxyUrl.Text + // } - } - catch (Exception ex) - { - MessageBox.Show(ex.Message); - } - } + // } + // catch (Exception ex) + // { + // MessageBox.Show(ex.Message); + // } + // } }