Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
孙克
/
ACSingleStore
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 6f61f07f
由
LN
编写于
2019-11-11 13:34:57 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
1
1 个父辈
44143efd
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
14 行增加
和
14 行删除
ProCopyClient/Form1.Designer.cs → ProCopyClient/FrmMain.Designer.cs
ProCopyClient/Form1.cs → ProCopyClient/FrmMain.cs
ProCopyClient/Form1.resx → ProCopyClient/FrmMain.resx
ProCopyClient/ProCopyClient.csproj
ProCopyClient/Program.cs
ProCopyClient/F
orm1
.Designer.cs
→
ProCopyClient/F
rmMain
.Designer.cs
查看文件 @
6f61f07
namespace
ProCopyClient
namespace
ProCopyClient
{
{
partial
class
F
orm1
partial
class
F
rmMain
{
{
/// <summary>
/// <summary>
/// 必需的设计器变量。
/// 必需的设计器变量。
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
//
//
// button1
// button1
//
//
this
.
button1
.
Location
=
new
System
.
Drawing
.
Point
(
1
35
,
46
);
this
.
button1
.
Location
=
new
System
.
Drawing
.
Point
(
1
41
,
72
);
this
.
button1
.
Name
=
"button1"
;
this
.
button1
.
Name
=
"button1"
;
this
.
button1
.
Size
=
new
System
.
Drawing
.
Size
(
172
,
69
);
this
.
button1
.
Size
=
new
System
.
Drawing
.
Size
(
172
,
69
);
this
.
button1
.
TabIndex
=
0
;
this
.
button1
.
TabIndex
=
0
;
...
@@ -41,13 +41,13 @@
...
@@ -41,13 +41,13 @@
this
.
button1
.
UseVisualStyleBackColor
=
true
;
this
.
button1
.
UseVisualStyleBackColor
=
true
;
this
.
button1
.
Click
+=
new
System
.
EventHandler
(
this
.
button1_Click
);
this
.
button1
.
Click
+=
new
System
.
EventHandler
(
this
.
button1_Click
);
//
//
// F
orm1
// F
rmMain
//
//
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
(
463
,
215
);
this
.
ClientSize
=
new
System
.
Drawing
.
Size
(
463
,
215
);
this
.
Controls
.
Add
(
this
.
button1
);
this
.
Controls
.
Add
(
this
.
button1
);
this
.
Name
=
"F
orm1
"
;
this
.
Name
=
"F
rmMain
"
;
this
.
StartPosition
=
System
.
Windows
.
Forms
.
FormStartPosition
.
CenterScreen
;
this
.
StartPosition
=
System
.
Windows
.
Forms
.
FormStartPosition
.
CenterScreen
;
this
.
Text
=
"客户端复制"
;
this
.
Text
=
"客户端复制"
;
this
.
ResumeLayout
(
false
);
this
.
ResumeLayout
(
false
);
...
...
ProCopyClient/F
orm1
.cs
→
ProCopyClient/F
rmMain
.cs
查看文件 @
6f61f07
...
@@ -11,9 +11,9 @@ using System.Windows.Forms;
...
@@ -11,9 +11,9 @@ using System.Windows.Forms;
namespace
ProCopyClient
namespace
ProCopyClient
{
{
public
partial
class
F
orm1
:
Form
public
partial
class
F
rmMain
:
Form
{
{
public
F
orm1
()
public
F
rmMain
()
{
{
InitializeComponent
();
InitializeComponent
();
}
}
...
@@ -34,11 +34,11 @@ namespace ProCopyClient
...
@@ -34,11 +34,11 @@ namespace ProCopyClient
if
(
Directory
.
Exists
(
leftPath
))
if
(
Directory
.
Exists
(
leftPath
))
{
{
Directory
.
Delete
(
leftPath
);
Directory
.
Delete
(
leftPath
,
true
);
}
}
if
(
Directory
.
Exists
(
rightPath
))
if
(
Directory
.
Exists
(
rightPath
))
{
{
Directory
.
Delete
(
rightPath
);
Directory
.
Delete
(
rightPath
,
true
);
}
}
Directory
.
CreateDirectory
(
leftPath
);
Directory
.
CreateDirectory
(
leftPath
);
Directory
.
CreateDirectory
(
rightPath
);
Directory
.
CreateDirectory
(
rightPath
);
...
...
ProCopyClient/F
orm1
.resx
→
ProCopyClient/F
rmMain
.resx
查看文件 @
6f61f07
文件被删除
ProCopyClient/ProCopyClient.csproj
查看文件 @
6f61f07
...
@@ -46,16 +46,16 @@
...
@@ -46,16 +46,16 @@
<Reference Include="System.Xml" />
<Reference Include="System.Xml" />
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
<Compile Include="F
orm1
.cs">
<Compile Include="F
rmMain
.cs">
<SubType>Form</SubType>
<SubType>Form</SubType>
</Compile>
</Compile>
<Compile Include="F
orm1
.Designer.cs">
<Compile Include="F
rmMain
.Designer.cs">
<DependentUpon>F
orm1
.cs</DependentUpon>
<DependentUpon>F
rmMain
.cs</DependentUpon>
</Compile>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="F
orm1
.resx">
<EmbeddedResource Include="F
rmMain
.resx">
<DependentUpon>F
orm1
.cs</DependentUpon>
<DependentUpon>F
rmMain
.cs</DependentUpon>
</EmbeddedResource>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<Generator>ResXFileCodeGenerator</Generator>
...
...
ProCopyClient/Program.cs
查看文件 @
6f61f07
...
@@ -16,7 +16,7 @@ namespace ProCopyClient
...
@@ -16,7 +16,7 @@ namespace ProCopyClient
{
{
Application
.
EnableVisualStyles
();
Application
.
EnableVisualStyles
();
Application
.
SetCompatibleTextRenderingDefault
(
false
);
Application
.
SetCompatibleTextRenderingDefault
(
false
);
Application
.
Run
(
new
F
orm1
());
Application
.
Run
(
new
F
rmMain
());
}
}
}
}
}
}
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论