提交 d28f5b9c authored 作者: 曾传波's avatar 曾传波

最新版

上级 4c47efe3
...@@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.31313.79 ...@@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.31313.79
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool", "Tool\Tool.csproj", "{9B6513DB-F34F-4E5C-82D2-225D7D3B4529}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tool", "Tool\Tool.csproj", "{9B6513DB-F34F-4E5C-82D2-225D7D3B4529}"
EndProject EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{BB9114B0-C3DD-4B74-9411-6D12A0A3E5A6}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
...@@ -15,6 +17,8 @@ Global ...@@ -15,6 +17,8 @@ Global
{9B6513DB-F34F-4E5C-82D2-225D7D3B4529}.Debug|Any CPU.Build.0 = Debug|Any CPU {9B6513DB-F34F-4E5C-82D2-225D7D3B4529}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9B6513DB-F34F-4E5C-82D2-225D7D3B4529}.Release|Any CPU.ActiveCfg = Release|Any CPU {9B6513DB-F34F-4E5C-82D2-225D7D3B4529}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9B6513DB-F34F-4E5C-82D2-225D7D3B4529}.Release|Any CPU.Build.0 = Release|Any CPU {9B6513DB-F34F-4E5C-82D2-225D7D3B4529}.Release|Any CPU.Build.0 = Release|Any CPU
{BB9114B0-C3DD-4B74-9411-6D12A0A3E5A6}.Debug|Any CPU.ActiveCfg = Debug
{BB9114B0-C3DD-4B74-9411-6D12A0A3E5A6}.Release|Any CPU.ActiveCfg = Release
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
......
...@@ -43,13 +43,15 @@ namespace Tool ...@@ -43,13 +43,15 @@ namespace Tool
this.port = new System.Windows.Forms.TextBox(); this.port = new System.Windows.Forms.TextBox();
this.Windows = new System.Windows.Forms.RadioButton(); this.Windows = new System.Windows.Forms.RadioButton();
this.Linux = new System.Windows.Forms.RadioButton(); this.Linux = new System.Windows.Forms.RadioButton();
this.Close = new System.Windows.Forms.Button();
this.Open = new System.Windows.Forms.Button();
this.panel1.SuspendLayout(); this.panel1.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
// Detection // Detection
// //
this.Detection.Font = new System.Drawing.Font("微软雅黑", 20F, System.Drawing.FontStyle.Bold); this.Detection.Font = new System.Drawing.Font("微软雅黑", 20F, System.Drawing.FontStyle.Bold);
this.Detection.Location = new System.Drawing.Point(166, 44); this.Detection.Location = new System.Drawing.Point(32, 33);
this.Detection.Name = "Detection"; this.Detection.Name = "Detection";
this.Detection.Size = new System.Drawing.Size(120, 67); this.Detection.Size = new System.Drawing.Size(120, 67);
this.Detection.TabIndex = 0; this.Detection.TabIndex = 0;
...@@ -61,7 +63,7 @@ namespace Tool ...@@ -61,7 +63,7 @@ namespace Tool
// //
this.Start.Enabled = false; this.Start.Enabled = false;
this.Start.Font = new System.Drawing.Font("微软雅黑", 20F, System.Drawing.FontStyle.Bold); this.Start.Font = new System.Drawing.Font("微软雅黑", 20F, System.Drawing.FontStyle.Bold);
this.Start.Location = new System.Drawing.Point(363, 44); this.Start.Location = new System.Drawing.Point(180, 33);
this.Start.Name = "Start"; this.Start.Name = "Start";
this.Start.Size = new System.Drawing.Size(120, 67); this.Start.Size = new System.Drawing.Size(120, 67);
this.Start.TabIndex = 1; this.Start.TabIndex = 1;
...@@ -198,11 +200,37 @@ namespace Tool ...@@ -198,11 +200,37 @@ namespace Tool
this.Linux.UseVisualStyleBackColor = true; this.Linux.UseVisualStyleBackColor = true;
this.Linux.CheckedChanged += new System.EventHandler(this.Linux_CheckedChanged); this.Linux.CheckedChanged += new System.EventHandler(this.Linux_CheckedChanged);
// //
// Close
//
this.Close.Enabled = false;
this.Close.Font = new System.Drawing.Font("微软雅黑", 16F, System.Drawing.FontStyle.Bold);
this.Close.Location = new System.Drawing.Point(328, 33);
this.Close.Name = "Close";
this.Close.Size = new System.Drawing.Size(131, 67);
this.Close.TabIndex = 4;
this.Close.Text = "关闭防火墙";
this.Close.UseVisualStyleBackColor = true;
this.Close.Click += new System.EventHandler(this.Close_Click);
//
// Open
//
this.Open.Enabled = false;
this.Open.Font = new System.Drawing.Font("微软雅黑", 16F, System.Drawing.FontStyle.Bold);
this.Open.Location = new System.Drawing.Point(487, 33);
this.Open.Name = "Open";
this.Open.Size = new System.Drawing.Size(131, 67);
this.Open.TabIndex = 5;
this.Open.Text = "打开防火墙";
this.Open.UseVisualStyleBackColor = true;
this.Open.Click += new System.EventHandler(this.Open_Click);
//
// Form1 // Form1
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(640, 432); this.ClientSize = new System.Drawing.Size(640, 432);
this.Controls.Add(this.Open);
this.Controls.Add(this.Close);
this.Controls.Add(this.Linux); this.Controls.Add(this.Linux);
this.Controls.Add(this.Windows); this.Controls.Add(this.Windows);
this.Controls.Add(this.panel1); this.Controls.Add(this.panel1);
...@@ -234,6 +262,8 @@ namespace Tool ...@@ -234,6 +262,8 @@ namespace Tool
private System.Windows.Forms.RadioButton Windows; private System.Windows.Forms.RadioButton Windows;
private System.Windows.Forms.RadioButton Linux; private System.Windows.Forms.RadioButton Linux;
private System.Windows.Forms.ProgressBar progressBar1; private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Button Close;
private System.Windows.Forms.Button Open;
} }
} }
差异被折叠。
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<IsWebBootstrapper>false</IsWebBootstrapper> <IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>D:\toolExe\</PublishUrl> <PublishUrl>D:\toolExe2\</PublishUrl>
<Install>true</Install> <Install>true</Install>
<InstallFrom>Disk</InstallFrom> <InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled> <UpdateEnabled>false</UpdateEnabled>
...@@ -22,8 +22,7 @@ ...@@ -22,8 +22,7 @@
<UpdatePeriodically>false</UpdatePeriodically> <UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired> <UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions> <MapFileExtensions>true</MapFileExtensions>
<AutorunEnabled>true</AutorunEnabled> <ApplicationRevision>23</ApplicationRevision>
<ApplicationRevision>22</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion> <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust> <UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted> <PublishWizardCompleted>true</PublishWizardCompleted>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论