From 01af863260bdd77281005504c0f3e89002744760 Mon Sep 17 00:00:00 2001 From: ProxySU Date: Thu, 5 Nov 2020 22:54:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BC=AA=E8=A3=85=E7=BD=91?= =?UTF-8?q?=E5=9D=80=E9=A2=84=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProxySU/ClassModel.cs | 31 +++++++++++++++++ ProxySU/MainWindow.xaml | 4 +-- ProxySU/MainWindow.xaml.cs | 41 ++++++++++++---------- ProxySU/Properties/AssemblyInfo.cs | 4 +-- ProxySU/ProxySU.csproj | 1 + ProxySU/SSpluginWindow.xaml.cs | 32 +++++++++-------- ProxySU/TrojanGoTemplateWindow.xaml.cs | 31 +++++++++-------- ProxySU/V2RayTemplateWindow.xaml.cs | 46 ++++++++++++++----------- ProxySU/bin/Beta/Beta.zip | Bin 750685 -> 750561 bytes 9 files changed, 116 insertions(+), 74 deletions(-) create mode 100644 ProxySU/ClassModel.cs diff --git a/ProxySU/ClassModel.cs b/ProxySU/ClassModel.cs new file mode 100644 index 0000000..a393688 --- /dev/null +++ b/ProxySU/ClassModel.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace ProxySU +{ + class ClassModel + { + //伪装网址的处理 + public static string DisguiseURLprocessing(string fakeUrl) + { + var uri = new Uri(fakeUrl); + return uri.Host; + //Console.WriteLine(uri.Host); + + ////处理伪装网站域名中的前缀 + //if (fakeUrl.Length >= 7) + //{ + // string testDomainMask = fakeUrl.Substring(0, 7); + // if (String.Equals(testDomainMask, "https:/") || String.Equals(testDomainMask, "http://")) + // { + // string[] tmpUrl = fakeUrl.Split('/'); + // fakeUrl = tmpUrl[2]; + // } + + //} + + } + } +} diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml index 805b1a8..a4be79b 100644 --- a/ProxySU/MainWindow.xaml +++ b/ProxySU/MainWindow.xaml @@ -5,9 +5,9 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:ProxySU" mc:Ignorable="d" - Title="ProxySU - v2.4.19" Height="675" Width="650"> + Title="ProxySU - v2.4.20 beta1" Height="675" Width="650"> + https://docs.microsoft.co/en-us/dotnet/desktop-wpf/fundamentals/styles-templates-overview-->