Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
T
ToolNew
Project
Project
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
Graph
比较
统计图
议题
0
议题
0
列表
看板
标记
Milestones
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
曾传波
ToolNew
Commits
d28f5b9c
提交
d28f5b9c
authored
5月 06, 2023
作者:
曾传波
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
最新版
上级
4c47efe3
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
38 行增加
和
5 行删除
+38
-5
Tool.sln
Tool/Tool.sln
+4
-0
Form1.Designer.cs
Tool/Tool/Form1.Designer.cs
+32
-2
Form1.cs
Tool/Tool/Form1.cs
+0
-0
ServiceManagement.jar
Tool/Tool/Resources/ServiceManagement.jar
+0
-0
Tool.csproj
Tool/Tool/Tool.csproj
+2
-3
没有找到文件。
Tool/Tool.sln
浏览文件 @
d28f5b9c
...
@@ -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
...
...
Tool/Tool/Form1.Designer.cs
浏览文件 @
d28f5b9c
...
@@ -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
;
}
}
}
}
Tool/Tool/Form1.cs
浏览文件 @
d28f5b9c
差异被折叠。
点击展开。
Tool/Tool/Resources/ServiceManagement.jar
浏览文件 @
d28f5b9c
No preview for this file type
Tool/Tool/Tool.csproj
浏览文件 @
d28f5b9c
...
@@ -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:\toolExe
2
\
</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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论