diff --git a/CmdGUI.sln b/gostGUI.sln similarity index 86% rename from CmdGUI.sln rename to gostGUI.sln index 75caca3..72b3324 100644 --- a/CmdGUI.sln +++ b/gostGUI.sln @@ -1,25 +1,25 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30330.147 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cmdGUI", "CmdGUI\cmdGUI.csproj", "{0D2CE34D-3A44-4903-868A-C7B7D02E615B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {45D2B436-5866-42B8-83D2-CD8CA2DF7E4A} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30330.147 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "gostGUI", "gostGUI\gostGUI.csproj", "{0D2CE34D-3A44-4903-868A-C7B7D02E615B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0D2CE34D-3A44-4903-868A-C7B7D02E615B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {45D2B436-5866-42B8-83D2-CD8CA2DF7E4A} + EndGlobalSection +EndGlobal diff --git a/CmdGUI/.gitignore b/gostGUI/.gitignore similarity index 100% rename from CmdGUI/.gitignore rename to gostGUI/.gitignore diff --git a/CmdGUI/Common.cs b/gostGUI/Common.cs similarity index 99% rename from CmdGUI/Common.cs rename to gostGUI/Common.cs index 4de9767..0d3fc25 100644 --- a/CmdGUI/Common.cs +++ b/gostGUI/Common.cs @@ -140,7 +140,7 @@ public static bool loadIni(string fullPathName, out Dictionary r } catch (Exception ) { - return false; ; + return false; } } diff --git a/CmdGUI/FormMain.Designer.cs b/gostGUI/FormMain.Designer.cs similarity index 97% rename from CmdGUI/FormMain.Designer.cs rename to gostGUI/FormMain.Designer.cs index 12e4235..dee154a 100644 --- a/CmdGUI/FormMain.Designer.cs +++ b/gostGUI/FormMain.Designer.cs @@ -1,195 +1,194 @@ -namespace CmdGUI -{ - partial class FormMain - { - /// - /// 必需的设计器变量。 - /// - private System.ComponentModel.IContainer components = null; - - /// - /// 清理所有正在使用的资源。 - /// - /// 如果应释放托管资源,为 true;否则为 false。 - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows 窗体设计器生成的代码 - - /// - /// 设计器支持所需的方法 - 不要修改 - /// 使用代码编辑器修改此方法的内容。 - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain)); - this.label1 = new System.Windows.Forms.Label(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.button1 = new System.Windows.Forms.Button(); - this.textBox3 = new System.Windows.Forms.TextBox(); - this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); - this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); - this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.label2 = new System.Windows.Forms.Label(); - this.button2 = new System.Windows.Forms.Button(); - this.button3 = new System.Windows.Forms.Button(); - this.button4 = new System.Windows.Forms.Button(); - this.label3 = new System.Windows.Forms.Label(); - this.contextMenuStrip1.SuspendLayout(); - this.SuspendLayout(); - // - // label1 - // - resources.ApplyResources(this.label1, "label1"); - this.label1.Name = "label1"; - // - // textBox1 - // - this.textBox1.AllowDrop = true; - resources.ApplyResources(this.textBox1, "textBox1"); - this.textBox1.Name = "textBox1"; - this.textBox1.DragDrop += new System.Windows.Forms.DragEventHandler(this.textBox1_DragDrop); - this.textBox1.DragEnter += new System.Windows.Forms.DragEventHandler(this.textBox1_DragEnter); - // - // button1 - // - resources.ApplyResources(this.button1, "button1"); - this.button1.Name = "button1"; - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // textBox3 - // - this.textBox3.BackColor = System.Drawing.SystemColors.ActiveCaptionText; - this.textBox3.ForeColor = System.Drawing.SystemColors.Window; - this.textBox3.HideSelection = false; - resources.ApplyResources(this.textBox3, "textBox3"); - this.textBox3.Name = "textBox3"; - this.textBox3.ReadOnly = true; - // - // notifyIcon1 - // - resources.ApplyResources(this.notifyIcon1, "notifyIcon1"); - this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick); - // - // contextMenuStrip1 - // - this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.startToolStripMenuItem, - this.stopToolStripMenuItem, - this.exitToolStripMenuItem}); - this.contextMenuStrip1.Name = "contextMenuStrip1"; - resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1"); - // - // startToolStripMenuItem - // - this.startToolStripMenuItem.Name = "startToolStripMenuItem"; - resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem"); - this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); - // - // stopToolStripMenuItem - // - this.stopToolStripMenuItem.Name = "stopToolStripMenuItem"; - resources.ApplyResources(this.stopToolStripMenuItem, "stopToolStripMenuItem"); - this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click); - // - // exitToolStripMenuItem - // - this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; - resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); - this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); - // - // textBox2 - // - this.textBox2.AcceptsReturn = true; - this.textBox2.AcceptsTab = true; - this.textBox2.AllowDrop = true; - resources.ApplyResources(this.textBox2, "textBox2"); - this.textBox2.Name = "textBox2"; - // - // label2 - // - resources.ApplyResources(this.label2, "label2"); - this.label2.Name = "label2"; - // - // button2 - // - resources.ApplyResources(this.button2, "button2"); - this.button2.Name = "button2"; - this.button2.UseMnemonic = false; - this.button2.UseVisualStyleBackColor = true; - this.button2.Click += new System.EventHandler(this.button2_Click); - // - // button3 - // - resources.ApplyResources(this.button3, "button3"); - this.button3.Name = "button3"; - this.button3.UseVisualStyleBackColor = true; - this.button3.Click += new System.EventHandler(this.button3_Click); - // - // button4 - // - resources.ApplyResources(this.button4, "button4"); - this.button4.Name = "button4"; - this.button4.UseVisualStyleBackColor = true; - this.button4.Click += new System.EventHandler(this.clearButton_Click); - // - // label3 - // - resources.ApplyResources(this.label3, "label3"); - this.label3.Name = "label3"; - // - // FormMain - // - resources.ApplyResources(this, "$this"); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.button4); - this.Controls.Add(this.button3); - this.Controls.Add(this.button2); - this.Controls.Add(this.label3); - this.Controls.Add(this.label2); - this.Controls.Add(this.textBox2); - this.Controls.Add(this.textBox3); - this.Controls.Add(this.button1); - this.Controls.Add(this.textBox1); - this.Controls.Add(this.label1); - this.Name = "FormMain"; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing); - this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormMain_FormClosed); - //this.DragDrop += new System.Windows.Forms.DragEventHandler(this.FormMain_DragDrop); - this.contextMenuStrip1.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.Button button1; - private System.Windows.Forms.TextBox textBox3; - private System.Windows.Forms.NotifyIcon notifyIcon1; - private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; - private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; - private System.Windows.Forms.TextBox textBox2; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.Button button2; - private System.Windows.Forms.Button button3; - private System.Windows.Forms.ToolStripMenuItem startToolStripMenuItem; - private System.Windows.Forms.ToolStripMenuItem stopToolStripMenuItem; - private System.Windows.Forms.Button button4; - private System.Windows.Forms.Label label3; - } -} - +namespace gostGUI +{ + partial class FormMain + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows 窗体设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain)); + this.label1 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); + this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); + this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.button2 = new System.Windows.Forms.Button(); + this.button3 = new System.Windows.Forms.Button(); + this.button4 = new System.Windows.Forms.Button(); + this.label3 = new System.Windows.Forms.Label(); + this.contextMenuStrip1.SuspendLayout(); + this.SuspendLayout(); + // + // label1 + // + resources.ApplyResources(this.label1, "label1"); + this.label1.Name = "label1"; + // + // textBox1 + // + this.textBox1.AllowDrop = true; + resources.ApplyResources(this.textBox1, "textBox1"); + this.textBox1.Name = "textBox1"; + this.textBox1.DragDrop += new System.Windows.Forms.DragEventHandler(this.textBox1_DragDrop); + this.textBox1.DragEnter += new System.Windows.Forms.DragEventHandler(this.textBox1_DragEnter); + // + // button1 + // + resources.ApplyResources(this.button1, "button1"); + this.button1.Name = "button1"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // textBox3 + // + this.textBox3.BackColor = System.Drawing.SystemColors.ActiveCaptionText; + this.textBox3.ForeColor = System.Drawing.SystemColors.Window; + this.textBox3.HideSelection = false; + resources.ApplyResources(this.textBox3, "textBox3"); + this.textBox3.Name = "textBox3"; + this.textBox3.ReadOnly = true; + // + // notifyIcon1 + // + resources.ApplyResources(this.notifyIcon1, "notifyIcon1"); + this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick); + // + // contextMenuStrip1 + // + this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.startToolStripMenuItem, + this.stopToolStripMenuItem, + this.exitToolStripMenuItem}); + this.contextMenuStrip1.Name = "contextMenuStrip1"; + resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1"); + // + // startToolStripMenuItem + // + this.startToolStripMenuItem.Name = "startToolStripMenuItem"; + resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem"); + this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); + // + // stopToolStripMenuItem + // + this.stopToolStripMenuItem.Name = "stopToolStripMenuItem"; + resources.ApplyResources(this.stopToolStripMenuItem, "stopToolStripMenuItem"); + this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click); + // + // exitToolStripMenuItem + // + this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; + resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); + this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); + // + // textBox2 + // + this.textBox2.AcceptsReturn = true; + this.textBox2.AcceptsTab = true; + this.textBox2.AllowDrop = true; + resources.ApplyResources(this.textBox2, "textBox2"); + this.textBox2.Name = "textBox2"; + // + // label2 + // + resources.ApplyResources(this.label2, "label2"); + this.label2.Name = "label2"; + // + // button2 + // + resources.ApplyResources(this.button2, "button2"); + this.button2.Name = "button2"; + this.button2.UseMnemonic = false; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // button3 + // + resources.ApplyResources(this.button3, "button3"); + this.button3.Name = "button3"; + this.button3.UseVisualStyleBackColor = true; + this.button3.Click += new System.EventHandler(this.button3_Click); + // + // button4 + // + resources.ApplyResources(this.button4, "button4"); + this.button4.Name = "button4"; + this.button4.UseVisualStyleBackColor = true; + this.button4.Click += new System.EventHandler(this.clearButton_Click); + // + // label3 + // + resources.ApplyResources(this.label3, "label3"); + this.label3.Name = "label3"; + // + // FormMain + // + resources.ApplyResources(this, "$this"); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.button4); + this.Controls.Add(this.button3); + this.Controls.Add(this.button2); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.textBox2); + this.Controls.Add(this.textBox3); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.label1); + this.Name = "FormMain"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing); + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormMain_FormClosed); + this.contextMenuStrip1.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.NotifyIcon notifyIcon1; + private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; + private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; + private System.Windows.Forms.TextBox textBox2; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.ToolStripMenuItem startToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem stopToolStripMenuItem; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.Label label3; + } +} + diff --git a/CmdGUI/FormMain.cs b/gostGUI/FormMain.cs similarity index 99% rename from CmdGUI/FormMain.cs rename to gostGUI/FormMain.cs index 9afd282..2f6eb2d 100644 --- a/CmdGUI/FormMain.cs +++ b/gostGUI/FormMain.cs @@ -9,7 +9,7 @@ using System.Text; using System.Windows.Forms; -namespace CmdGUI +namespace gostGUI { public partial class FormMain : Form { diff --git a/CmdGUI/FormMain.resx b/gostGUI/FormMain.resx similarity index 97% rename from CmdGUI/FormMain.resx rename to gostGUI/FormMain.resx index 51b0d56..2b82cc6 100644 --- a/CmdGUI/FormMain.resx +++ b/gostGUI/FormMain.resx @@ -1,560 +1,560 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - 12, 16 - - - 53, 12 - - - 0 - - - program: - - - label1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - 宋体, 10.5pt - - - 68, 13 - - - 628, 23 - - - 1 - - - cmd.exe - - - textBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 715, 54 - - - 75, 37 - - - 2 - - - start - - - button1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - 14, 189 - - - True - - - - Vertical - - - 774, 389 - - - 3 - - - textBox3 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - 17, 17 - - - - AAABAAEAGBgAAAEAIACICQAAFgAAACgAAAAYAAAAMAAAAAEAIAAAAAAAYAkAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n/FHDa+3Rx2fuzcdn713HZ+/tx2fv7cdn713HZ - +7Nx2ft4ddT/GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHDX - 9yBx2fqncdn793HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3Ha+6tx3PgkAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcdj7SHHZ++tx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvzcNj8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABy2Ppwcdn7+3HZ+/9x2fv/cdn7/3HZ+/9q1/r/VtL3/0TP9f9Ez/X/VtL3/2jX+v9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3LZ+4AAAAAAAAAAAAAAAAAAAAAAAAAAAHDa+0Rx2fv7cdn7/3HZ+/9x2fv/b9n7/0XO - 9f8bxPD/Jcfx/zbK9P82yvT/Jcfx/xvE8P9BzvX/btj7/3HZ+/9x2fv/cdn7/3HZ+/9w2fxQAAAAAAAA - AAAAAAAAddT/GHHZ++dx2fv/cdn7/3HZ+/9u2Pv/K8jy/yTG8f9d1Pn/cdn7/3HZ+/9x2fv/cdn7/2HV - +f8ox/L/KMfy/2zX+v9x2fv/cdn7/3HZ+/9x2fvvcNf3IAAAAAAAAAAAcdn8k3HZ+/9x2fv/cdn7/3HZ - +/9BzvX/Kcjy/23Y+v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9u2Pv/L8nz/zvM9P9x2fv/cdn7/3HZ - +/9x2fv/cNn8nwAAAABq1P8Mcdn783HZ+/9x2fv/cdn7/2LW+f8dxfH/Ytb5/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/Ztf5/x3F8f9c1Pj/cdn7/3HZ+/9x2fv/cdn793Df/xBx2vpocdn7/3HZ - +/9x2fv/cdn7/0rQ9v82yvT/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/zvM - 9P9Ez/X/cdn7/3HZ+/9x2fv/cdn7/3HZ+mxx2fqncdn7/3HZ+/9x2fv/cdn7/zbK9P9Jz/b/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/0zQ9/80y/P/cdn7/3HZ+/9x2fv/cdn7/3HZ - +qdx2fvLcdn7/3HZ+/9x2fv/cdn7/0nP9v9l1vr/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/2jX+f9Gzvb/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ++9x2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ++9x2fvLcdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fqncdn7/3HZ+/9x2fv/cdn7/3HV9/9rps//ap/K/27F - 6v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HY+v9rrNT/aZzH/27A5f9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +qdx2vpocdn7/3HZ+/9x2fv/cdn7/2qjzP9mgK//ZoCv/2aEs/9w1vj/cdn7/3HZ+/9x2fv/cdn7/2yt - 1v9mgK//ZoCv/2aBsP9wzvH/cdn7/3HZ+/9x2fv/cdn7/3Ha+miA3/8Icdn773HZ+/9x2fv/cdn7/2mZ - xf9mgK//ZoCv/2aAr/9w0fP/cdn7/3HZ+/9x2fv/cdn7/2qlzv9mgK//ZoCv/2aAr/9uxer/cdn7/3HZ - +/9x2fv/cdn782rU/wwAAAAAcNr7j3HZ+/9x2fv/cdn7/2694/9mgbD/ZoCv/2mdyP9x2fv/cdn7/3HZ - +/9x2fv/cdn7/27F6v9mhLP/ZoCv/2mVwf9w1vj/cdn7/3HZ+/9x2fv/cdj8lwAAAAAAAAAAc9n/FHHZ - ++Nx2fv/cdn7/3HZ+/9w0fP/b8vv/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9w0/b/b8jt/3HZ - +/9x2fv/cdn7/3HZ+/9x2fvnddT/GAAAAAAAAAAAAAAAAHPZ+zxx2fv7cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/tw1/tAAAAAAAAA - AAAAAAAAAAAAAAAAAABw2fpkcdn7+3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3DZ+mQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n7PHHZ - ++dx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvnc9n7PAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHXU/xhx2fyTcdn773HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn783HZ/JN11P8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAgN//CHDZ+mRw2fyfcdr7v3HZ+t9x2frfcdr7v3HZ+qNx2vpoatT/DAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+AH8A+AAfAPAADwDgAAcAwAADAIAAAQCAAAEAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAQCAAAEAwAADAOAABwDwAA8A+AAfAP4A - fwA= - - - - cmdGUI - - - True - - - 135, 17 - - - 106, 24 - - - start - - - 106, 24 - - - stop - - - 106, 24 - - - exit - - - 107, 76 - - - contextMenuStrip1 - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 68, 51 - - - True - - - 628, 99 - - - 4 - - - -s -i 127.0.0.1 - - - textBox2 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - True - - - 14, 54 - - - 35, 12 - - - 5 - - - args: - - - label2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 715, 106 - - - 75, 38 - - - 6 - - - stop - - - button2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - 715, 10 - - - 75, 34 - - - 8 - - - select - - - button3 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - 715, 150 - - - 75, 33 - - - 9 - - - clear - - - button4 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - 14, 160 - - - 47, 12 - - - 5 - - - output: - - - label3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - True - - - 6, 12 - - - 802, 590 - - - - AAABAAEAGBgAAAEAIACICQAAFgAAACgAAAAYAAAAMAAAAAEAIAAAAAAAYAkAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n/FHDa+3Rx2fuzcdn713HZ+/tx2fv7cdn713HZ - +7Nx2ft4ddT/GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHDX - 9yBx2fqncdn793HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3Ha+6tx3PgkAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcdj7SHHZ++tx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvzcNj8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABy2Ppwcdn7+3HZ+/9x2fv/cdn7/3HZ+/9q1/r/VtL3/0TP9f9Ez/X/VtL3/2jX+v9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3LZ+4AAAAAAAAAAAAAAAAAAAAAAAAAAAHDa+0Rx2fv7cdn7/3HZ+/9x2fv/b9n7/0XO - 9f8bxPD/Jcfx/zbK9P82yvT/Jcfx/xvE8P9BzvX/btj7/3HZ+/9x2fv/cdn7/3HZ+/9w2fxQAAAAAAAA - AAAAAAAAddT/GHHZ++dx2fv/cdn7/3HZ+/9u2Pv/K8jy/yTG8f9d1Pn/cdn7/3HZ+/9x2fv/cdn7/2HV - +f8ox/L/KMfy/2zX+v9x2fv/cdn7/3HZ+/9x2fvvcNf3IAAAAAAAAAAAcdn8k3HZ+/9x2fv/cdn7/3HZ - +/9BzvX/Kcjy/23Y+v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9u2Pv/L8nz/zvM9P9x2fv/cdn7/3HZ - +/9x2fv/cNn8nwAAAABq1P8Mcdn783HZ+/9x2fv/cdn7/2LW+f8dxfH/Ytb5/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/Ztf5/x3F8f9c1Pj/cdn7/3HZ+/9x2fv/cdn793Df/xBx2vpocdn7/3HZ - +/9x2fv/cdn7/0rQ9v82yvT/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/zvM - 9P9Ez/X/cdn7/3HZ+/9x2fv/cdn7/3HZ+mxx2fqncdn7/3HZ+/9x2fv/cdn7/zbK9P9Jz/b/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/0zQ9/80y/P/cdn7/3HZ+/9x2fv/cdn7/3HZ - +qdx2fvLcdn7/3HZ+/9x2fv/cdn7/0nP9v9l1vr/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/2jX+f9Gzvb/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ++9x2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ++9x2fvLcdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fqncdn7/3HZ+/9x2fv/cdn7/3HV9/9rps//ap/K/27F - 6v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HY+v9rrNT/aZzH/27A5f9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +qdx2vpocdn7/3HZ+/9x2fv/cdn7/2qjzP9mgK//ZoCv/2aEs/9w1vj/cdn7/3HZ+/9x2fv/cdn7/2yt - 1v9mgK//ZoCv/2aBsP9wzvH/cdn7/3HZ+/9x2fv/cdn7/3Ha+miA3/8Icdn773HZ+/9x2fv/cdn7/2mZ - xf9mgK//ZoCv/2aAr/9w0fP/cdn7/3HZ+/9x2fv/cdn7/2qlzv9mgK//ZoCv/2aAr/9uxer/cdn7/3HZ - +/9x2fv/cdn782rU/wwAAAAAcNr7j3HZ+/9x2fv/cdn7/2694/9mgbD/ZoCv/2mdyP9x2fv/cdn7/3HZ - +/9x2fv/cdn7/27F6v9mhLP/ZoCv/2mVwf9w1vj/cdn7/3HZ+/9x2fv/cdj8lwAAAAAAAAAAc9n/FHHZ - ++Nx2fv/cdn7/3HZ+/9w0fP/b8vv/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9w0/b/b8jt/3HZ - +/9x2fv/cdn7/3HZ+/9x2fvnddT/GAAAAAAAAAAAAAAAAHPZ+zxx2fv7cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/tw1/tAAAAAAAAA - AAAAAAAAAAAAAAAAAABw2fpkcdn7+3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3DZ+mQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n7PHHZ - ++dx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvnc9n7PAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHXU/xhx2fyTcdn773HZ+/9x2fv/cdn7/3HZ - +/9x2fv/cdn7/3HZ+/9x2fv/cdn783HZ/JN11P8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAgN//CHDZ+mRw2fyfcdr7v3HZ+t9x2frfcdr7v3HZ+qNx2vpoatT/DAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+AH8A+AAfAPAADwDgAAcAwAADAIAAAQCAAAEAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAQCAAAEAwAADAOAABwDwAA8A+AAfAP4A - fwA= - - - - CenterScreen - - - cmdGUI v1.0 - - - notifyIcon1 - - - System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - startToolStripMenuItem - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - stopToolStripMenuItem - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - exitToolStripMenuItem - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - FormMain - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + True + + + + 12, 16 + + + 53, 12 + + + 0 + + + program: + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 10 + + + 宋体, 10.5pt + + + 68, 13 + + + 628, 23 + + + 1 + + + cmd.exe + + + textBox1 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 9 + + + 715, 54 + + + 75, 37 + + + 2 + + + start + + + button1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 8 + + + 14, 189 + + + True + + + + Vertical + + + 774, 389 + + + 3 + + + textBox3 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 7 + + + 17, 17 + + + + AAABAAEAGBgAAAEAIACICQAAFgAAACgAAAAYAAAAMAAAAAEAIAAAAAAAYAkAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n/FHDa+3Rx2fuzcdn713HZ+/tx2fv7cdn713HZ + +7Nx2ft4ddT/GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHDX + 9yBx2fqncdn793HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3Ha+6tx3PgkAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcdj7SHHZ++tx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvzcNj8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AABy2Ppwcdn7+3HZ+/9x2fv/cdn7/3HZ+/9q1/r/VtL3/0TP9f9Ez/X/VtL3/2jX+v9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3LZ+4AAAAAAAAAAAAAAAAAAAAAAAAAAAHDa+0Rx2fv7cdn7/3HZ+/9x2fv/b9n7/0XO + 9f8bxPD/Jcfx/zbK9P82yvT/Jcfx/xvE8P9BzvX/btj7/3HZ+/9x2fv/cdn7/3HZ+/9w2fxQAAAAAAAA + AAAAAAAAddT/GHHZ++dx2fv/cdn7/3HZ+/9u2Pv/K8jy/yTG8f9d1Pn/cdn7/3HZ+/9x2fv/cdn7/2HV + +f8ox/L/KMfy/2zX+v9x2fv/cdn7/3HZ+/9x2fvvcNf3IAAAAAAAAAAAcdn8k3HZ+/9x2fv/cdn7/3HZ + +/9BzvX/Kcjy/23Y+v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9u2Pv/L8nz/zvM9P9x2fv/cdn7/3HZ + +/9x2fv/cNn8nwAAAABq1P8Mcdn783HZ+/9x2fv/cdn7/2LW+f8dxfH/Ytb5/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/Ztf5/x3F8f9c1Pj/cdn7/3HZ+/9x2fv/cdn793Df/xBx2vpocdn7/3HZ + +/9x2fv/cdn7/0rQ9v82yvT/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/zvM + 9P9Ez/X/cdn7/3HZ+/9x2fv/cdn7/3HZ+mxx2fqncdn7/3HZ+/9x2fv/cdn7/zbK9P9Jz/b/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/0zQ9/80y/P/cdn7/3HZ+/9x2fv/cdn7/3HZ + +qdx2fvLcdn7/3HZ+/9x2fv/cdn7/0nP9v9l1vr/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/2jX+f9Gzvb/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ++9x2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ++9x2fvLcdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fqncdn7/3HZ+/9x2fv/cdn7/3HV9/9rps//ap/K/27F + 6v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HY+v9rrNT/aZzH/27A5f9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +qdx2vpocdn7/3HZ+/9x2fv/cdn7/2qjzP9mgK//ZoCv/2aEs/9w1vj/cdn7/3HZ+/9x2fv/cdn7/2yt + 1v9mgK//ZoCv/2aBsP9wzvH/cdn7/3HZ+/9x2fv/cdn7/3Ha+miA3/8Icdn773HZ+/9x2fv/cdn7/2mZ + xf9mgK//ZoCv/2aAr/9w0fP/cdn7/3HZ+/9x2fv/cdn7/2qlzv9mgK//ZoCv/2aAr/9uxer/cdn7/3HZ + +/9x2fv/cdn782rU/wwAAAAAcNr7j3HZ+/9x2fv/cdn7/2694/9mgbD/ZoCv/2mdyP9x2fv/cdn7/3HZ + +/9x2fv/cdn7/27F6v9mhLP/ZoCv/2mVwf9w1vj/cdn7/3HZ+/9x2fv/cdj8lwAAAAAAAAAAc9n/FHHZ + ++Nx2fv/cdn7/3HZ+/9w0fP/b8vv/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9w0/b/b8jt/3HZ + +/9x2fv/cdn7/3HZ+/9x2fvnddT/GAAAAAAAAAAAAAAAAHPZ+zxx2fv7cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/tw1/tAAAAAAAAA + AAAAAAAAAAAAAAAAAABw2fpkcdn7+3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3DZ+mQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n7PHHZ + ++dx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvnc9n7PAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHXU/xhx2fyTcdn773HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn783HZ/JN11P8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAgN//CHDZ+mRw2fyfcdr7v3HZ+t9x2frfcdr7v3HZ+qNx2vpoatT/DAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+AH8A+AAfAPAADwDgAAcAwAADAIAAAQCAAAEAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAQCAAAEAwAADAOAABwDwAA8A+AAfAP4A + fwA= + + + + cmdGUI + + + True + + + 135, 17 + + + 102, 22 + + + start + + + 102, 22 + + + stop + + + 102, 22 + + + exit + + + 103, 70 + + + contextMenuStrip1 + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 68, 51 + + + True + + + 628, 99 + + + 4 + + + -s -i 127.0.0.1 + + + textBox2 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 6 + + + True + + + 14, 54 + + + 35, 12 + + + 5 + + + args: + + + label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 5 + + + 715, 106 + + + 75, 38 + + + 6 + + + stop + + + button2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 3 + + + 715, 10 + + + 75, 34 + + + 8 + + + select + + + button3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + 715, 150 + + + 75, 33 + + + 9 + + + clear + + + button4 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + 14, 160 + + + 47, 12 + + + 5 + + + output: + + + label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 4 + + + True + + + True + + + 6, 12 + + + 802, 590 + + + + AAABAAEAGBgAAAEAIACICQAAFgAAACgAAAAYAAAAMAAAAAEAIAAAAAAAYAkAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n/FHDa+3Rx2fuzcdn713HZ+/tx2fv7cdn713HZ + +7Nx2ft4ddT/GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHDX + 9yBx2fqncdn793HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3Ha+6tx3PgkAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcdj7SHHZ++tx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvzcNj8VAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AABy2Ppwcdn7+3HZ+/9x2fv/cdn7/3HZ+/9q1/r/VtL3/0TP9f9Ez/X/VtL3/2jX+v9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3LZ+4AAAAAAAAAAAAAAAAAAAAAAAAAAAHDa+0Rx2fv7cdn7/3HZ+/9x2fv/b9n7/0XO + 9f8bxPD/Jcfx/zbK9P82yvT/Jcfx/xvE8P9BzvX/btj7/3HZ+/9x2fv/cdn7/3HZ+/9w2fxQAAAAAAAA + AAAAAAAAddT/GHHZ++dx2fv/cdn7/3HZ+/9u2Pv/K8jy/yTG8f9d1Pn/cdn7/3HZ+/9x2fv/cdn7/2HV + +f8ox/L/KMfy/2zX+v9x2fv/cdn7/3HZ+/9x2fvvcNf3IAAAAAAAAAAAcdn8k3HZ+/9x2fv/cdn7/3HZ + +/9BzvX/Kcjy/23Y+v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9u2Pv/L8nz/zvM9P9x2fv/cdn7/3HZ + +/9x2fv/cNn8nwAAAABq1P8Mcdn783HZ+/9x2fv/cdn7/2LW+f8dxfH/Ytb5/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/Ztf5/x3F8f9c1Pj/cdn7/3HZ+/9x2fv/cdn793Df/xBx2vpocdn7/3HZ + +/9x2fv/cdn7/0rQ9v82yvT/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/zvM + 9P9Ez/X/cdn7/3HZ+/9x2fv/cdn7/3HZ+mxx2fqncdn7/3HZ+/9x2fv/cdn7/zbK9P9Jz/b/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/0zQ9/80y/P/cdn7/3HZ+/9x2fv/cdn7/3HZ + +qdx2fvLcdn7/3HZ+/9x2fv/cdn7/0nP9v9l1vr/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/2jX+f9Gzvb/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ++9x2fvvcdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ++9x2fvLcdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+8tx2fqncdn7/3HZ+/9x2fv/cdn7/3HV9/9rps//ap/K/27F + 6v9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HY+v9rrNT/aZzH/27A5f9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +qdx2vpocdn7/3HZ+/9x2fv/cdn7/2qjzP9mgK//ZoCv/2aEs/9w1vj/cdn7/3HZ+/9x2fv/cdn7/2yt + 1v9mgK//ZoCv/2aBsP9wzvH/cdn7/3HZ+/9x2fv/cdn7/3Ha+miA3/8Icdn773HZ+/9x2fv/cdn7/2mZ + xf9mgK//ZoCv/2aAr/9w0fP/cdn7/3HZ+/9x2fv/cdn7/2qlzv9mgK//ZoCv/2aAr/9uxer/cdn7/3HZ + +/9x2fv/cdn782rU/wwAAAAAcNr7j3HZ+/9x2fv/cdn7/2694/9mgbD/ZoCv/2mdyP9x2fv/cdn7/3HZ + +/9x2fv/cdn7/27F6v9mhLP/ZoCv/2mVwf9w1vj/cdn7/3HZ+/9x2fv/cdj8lwAAAAAAAAAAc9n/FHHZ + ++Nx2fv/cdn7/3HZ+/9w0fP/b8vv/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9w0/b/b8jt/3HZ + +/9x2fv/cdn7/3HZ+/9x2fvnddT/GAAAAAAAAAAAAAAAAHPZ+zxx2fv7cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/tw1/tAAAAAAAAA + AAAAAAAAAAAAAAAAAABw2fpkcdn7+3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn7+3DZ+mQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc9n7PHHZ + ++dx2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fv/cdn7/3HZ+/9x2fvnc9n7PAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHXU/xhx2fyTcdn773HZ+/9x2fv/cdn7/3HZ + +/9x2fv/cdn7/3HZ+/9x2fv/cdn783HZ/JN11P8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAgN//CHDZ+mRw2fyfcdr7v3HZ+t9x2frfcdr7v3HZ+qNx2vpoatT/DAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+AH8A+AAfAPAADwDgAAcAwAADAIAAAQCAAAEAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAQCAAAEAwAADAOAABwDwAA8A+AAfAP4A + fwA= + + + + CenterScreen + + + gostGUI v1.0 + + + notifyIcon1 + + + System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + startToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + stopToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + exitToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FormMain + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/CmdGUI/Program.cs b/gostGUI/Program.cs similarity index 96% rename from CmdGUI/Program.cs rename to gostGUI/Program.cs index 591a7a8..65637a1 100644 --- a/CmdGUI/Program.cs +++ b/gostGUI/Program.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Windows.Forms; -namespace CmdGUI +namespace gostGUI { static class Program { diff --git a/CmdGUI/Properties/AssemblyInfo.cs b/gostGUI/Properties/AssemblyInfo.cs similarity index 100% rename from CmdGUI/Properties/AssemblyInfo.cs rename to gostGUI/Properties/AssemblyInfo.cs diff --git a/CmdGUI/Properties/Resources.Designer.cs b/gostGUI/Properties/Resources.Designer.cs similarity index 100% rename from CmdGUI/Properties/Resources.Designer.cs rename to gostGUI/Properties/Resources.Designer.cs diff --git a/CmdGUI/Properties/Resources.resx b/gostGUI/Properties/Resources.resx similarity index 100% rename from CmdGUI/Properties/Resources.resx rename to gostGUI/Properties/Resources.resx diff --git a/CmdGUI/Properties/Settings.Designer.cs b/gostGUI/Properties/Settings.Designer.cs similarity index 100% rename from CmdGUI/Properties/Settings.Designer.cs rename to gostGUI/Properties/Settings.Designer.cs diff --git a/CmdGUI/Properties/Settings.settings b/gostGUI/Properties/Settings.settings similarity index 100% rename from CmdGUI/Properties/Settings.settings rename to gostGUI/Properties/Settings.settings diff --git a/CmdGUI/cmd.conf b/gostGUI/cmd.conf similarity index 100% rename from CmdGUI/cmd.conf rename to gostGUI/cmd.conf diff --git a/CmdGUI/cmdGUI.csproj b/gostGUI/gostGUI.csproj similarity index 95% rename from CmdGUI/cmdGUI.csproj rename to gostGUI/gostGUI.csproj index 3f04821..3b451d1 100644 --- a/CmdGUI/cmdGUI.csproj +++ b/gostGUI/gostGUI.csproj @@ -1,127 +1,127 @@ - - - - - Debug - AnyCPU - {0D2CE34D-3A44-4903-868A-C7B7D02E615B} - WinExe - CmdGUI - cmdGUI - v4.0 - 512 - true - true - publish\ - true - Web - true - Foreground - 7 - Days - false - false - true - http://abc.com/abc/ - true - publish.htm - 1 - 1.0.0.%2a - false - true - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - smile-full.ico - - - E92D2C6FB40BE9EE983C13EE1D80E1A1C643BF6D - - - CmdWrapperGUI_TemporaryKey.pfx - - - true - - - true - - - - - - - - - - - - - - - - - Form - - - FormMain.cs - - - - - FormMain.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - PreserveNewest - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - - - - - - - - False - .NET Framework 3.5 SP1 - false - - - + + + + + Debug + AnyCPU + {0D2CE34D-3A44-4903-868A-C7B7D02E615B} + WinExe + gostGUI + gostGUI + v4.0 + 512 + true + true + publish\ + true + Web + true + Foreground + 7 + Days + false + false + true + http://abc.com/abc/ + true + publish.htm + 1 + 1.0.0.%2a + false + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + smile-full.ico + + + E92D2C6FB40BE9EE983C13EE1D80E1A1C643BF6D + + + CmdWrapperGUI_TemporaryKey.pfx + + + true + + + false + + + + + + + + + + + + + + + + + Form + + + FormMain.cs + + + + + FormMain.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + PreserveNewest + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + False + .NET Framework 3.5 SP1 + false + + + \ No newline at end of file diff --git a/CmdGUI/smile-full.ico b/gostGUI/smile-full.ico similarity index 100% rename from CmdGUI/smile-full.ico rename to gostGUI/smile-full.ico diff --git a/CmdGUI/smile24.ico b/gostGUI/smile24.ico similarity index 100% rename from CmdGUI/smile24.ico rename to gostGUI/smile24.ico