Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
HZH_Controls
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 3976e0dd
由
HZH
编写于
2019-09-23 18:05:45 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
控件透明
1 个父辈
f3c18196
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
473 行增加
和
465 行删除
HZH_Controls/HZH_Controls/Controls/FactoryControls/Arrow/UCArrow.cs
HZH_Controls/HZH_Controls/Controls/FactoryControls/Conduit/UCConduit.cs
HZH_Controls/HZH_Controls/Controls/FactoryControls/Conveyor/UCConveyor.cs
HZH_Controls/Test/UC/UCTestBtns.Designer.cs
HZH_Controls/Test/UC/UCTestBtns.resx
HZH_Controls/Test/UC/UCTestConduit.Designer.cs
HZH_Controls/Test/UC/UCTestConveyor.Designer.cs
HZH_Controls/HZH_Controls/Controls/FactoryControls/Arrow/UCArrow.cs
查看文件 @
3976e0d
...
...
@@ -296,6 +296,7 @@ namespace HZH_Controls.Controls
base
.
OnPaint
(
e
);
var
g
=
e
.
Graphics
;
g
.
SetGDIHigh
();
base
.
Region
=
new
Region
(
m_path
);
g
.
FillPath
(
new
SolidBrush
(
arrowColor
),
m_path
);
...
...
HZH_Controls/HZH_Controls/Controls/FactoryControls/Conduit/UCConduit.cs
查看文件 @
3976e0d
...
...
@@ -616,6 +616,7 @@ namespace HZH_Controls.Controls.Conduit
break
;
#
endregion
}
base
.
Region
=
new
Region
(
path
);
g
.
FillPath
(
new
SolidBrush
(
conduitColor
),
path
);
//渐变色
...
...
HZH_Controls/HZH_Controls/Controls/FactoryControls/Conveyor/UCConveyor.cs
查看文件 @
3976e0d
...
...
@@ -247,14 +247,20 @@ namespace HZH_Controls.Controls
var
rectRight
=
new
Rectangle
(
m_workingRect
.
Right
-
conveyorHeight
+
5
,
(
inclination
>=
0
?
(
m_workingRect
.
Top
)
:
(
m_workingRect
.
Bottom
-
conveyorHeight
))
+
5
,
conveyorHeight
-
10
,
conveyorHeight
-
10
);
g
.
FillEllipse
(
new
SolidBrush
(
conveyorColor
),
rectRight
);
g
.
FillEllipse
(
new
SolidBrush
(
Color
.
White
),
new
Rectangle
(
rectRight
.
Left
+
(
rectRight
.
Width
-
6
)
/
2
,
rectRight
.
Top
+
(
rectRight
.
Height
-
6
)
/
2
,
6
,
6
));
//传送带
//左端
GraphicsPath
path
=
new
GraphicsPath
();
path
.
AddArc
(
new
Rectangle
(
m_workingRect
.
Left
,
(
inclination
>=
0
?
(
m_workingRect
.
Bottom
-
conveyorHeight
)
:
m_workingRect
.
Top
),
conveyorHeight
,
conveyorHeight
),
90F
-
(
float
)
inclination
,
180F
);
GraphicsPath
pathRegion
=
new
GraphicsPath
();
path
.
AddArc
(
new
Rectangle
(
m_workingRect
.
Left
+
3
,
(
inclination
>=
0
?
(
m_workingRect
.
Bottom
-
conveyorHeight
)
:
m_workingRect
.
Top
)
+
3
,
conveyorHeight
-
6
,
conveyorHeight
-
6
),
90F
-
(
float
)
inclination
,
180F
);
pathRegion
.
AddArc
(
new
Rectangle
(
m_workingRect
.
Left
,
(
inclination
>=
0
?
(
m_workingRect
.
Bottom
-
conveyorHeight
)
:
m_workingRect
.
Top
),
conveyorHeight
,
conveyorHeight
),
90F
-
(
float
)
inclination
,
180F
);
//右端
path
.
AddArc
(
new
Rectangle
(
m_workingRect
.
Right
-
conveyorHeight
,
(
inclination
>=
0
?
(
m_workingRect
.
Top
)
:
(
m_workingRect
.
Bottom
-
conveyorHeight
)),
conveyorHeight
,
conveyorHeight
),
270
-
(
float
)
inclination
,
180F
);
path
.
AddArc
(
new
Rectangle
(
m_workingRect
.
Right
-
conveyorHeight
+
3
,
(
inclination
>=
0
?
(
m_workingRect
.
Top
)
:
(
m_workingRect
.
Bottom
-
conveyorHeight
))
+
3
,
conveyorHeight
-
6
,
conveyorHeight
-
6
),
270
-
(
float
)
inclination
,
180F
);
pathRegion
.
AddArc
(
new
Rectangle
(
m_workingRect
.
Right
-
conveyorHeight
,
(
inclination
>=
0
?
(
m_workingRect
.
Top
)
:
(
m_workingRect
.
Bottom
-
conveyorHeight
)),
conveyorHeight
,
conveyorHeight
),
270
-
(
float
)
inclination
,
180F
);
path
.
CloseAllFigures
();
base
.
Region
=
new
System
.
Drawing
.
Region
(
pathRegion
);
g
.
DrawPath
(
new
Pen
(
new
SolidBrush
(
conveyorColor
),
3
),
path
);
//液体流动
...
...
HZH_Controls/Test/UC/UCTestBtns.Designer.cs
查看文件 @
3976e0d
...
...
@@ -2016,7 +2016,7 @@
this
.
Controls
.
Add
(
this
.
groupBox2
);
this
.
Controls
.
Add
(
this
.
groupBox1
);
this
.
Name
=
"UCTestBtns"
;
this
.
Size
=
new
System
.
Drawing
.
Size
(
635
,
793
);
this
.
Size
=
new
System
.
Drawing
.
Size
(
993
,
793
);
this
.
Load
+=
new
System
.
EventHandler
(
this
.
UCTestBtns_Load
);
this
.
ucControlBase1
.
ResumeLayout
(
false
);
this
.
groupBox1
.
ResumeLayout
(
false
);
...
...
HZH_Controls/Test/UC/UCTestBtns.resx
查看文件 @
3976e0d
...
...
@@ -131,7 +131,7 @@
<data name="ucBtnImg16.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -142,7 +142,7 @@
<data name="ucBtnImg16.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -153,7 +153,7 @@
<data name="ucBtnImg11.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -165,7 +165,7 @@
<data name="ucBtnImg11.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -177,7 +177,7 @@
<data name="ucBtnImg6.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -189,7 +189,7 @@
<data name="ucBtnImg6.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -201,7 +201,7 @@
<data name="ucBtnImg15.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -212,7 +212,7 @@
<data name="ucBtnImg15.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -223,7 +223,7 @@
<data name="ucBtnImg10.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -235,7 +235,7 @@
<data name="ucBtnImg10.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -247,7 +247,7 @@
<data name="ucBtnImg14.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -258,7 +258,7 @@
<data name="ucBtnImg14.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -269,7 +269,7 @@
<data name="ucBtnImg9.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -281,7 +281,7 @@
<data name="ucBtnImg9.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -293,7 +293,7 @@
<data name="ucBtnImg5.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -305,7 +305,7 @@
<data name="ucBtnImg5.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -317,7 +317,7 @@
<data name="ucBtnImg13.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -328,7 +328,7 @@
<data name="ucBtnImg13.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -339,7 +339,7 @@
<data name="ucBtnImg8.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -351,7 +351,7 @@
<data name="ucBtnImg8.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFCSURBVFhH7Zb9DYIwEMX53wVcgAVYwAmYgA3cwBVYgRlY
gi1YBnyvvppiClIoRk1/yaWl3BfHFZolfo5xHE+azrJGZzPDMOSQUpdecP+m6TEwAJ6y4AjpJA2kkpyl
Gh86h7RIwAvu9ZCr1OMC/3zq/hHKj72PsZFZPOC0k3OWvubchcEhrJBNIl4l4Izv3aBA3kpg3SRJqCPz
/biOA7nIxT7sU2+QbVsShtzv3F6trs17DxVWACO3Jn3VxvkaoPzcapgz+GL3z8Ggri3muUIsA0W3mSZO
...
...
@@ -363,7 +363,7 @@
<data name="ucBtnImg12.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEjSURBVFhH7ZbPDcIgGMV7dwEXMPFaqmcn8GCEeHADN3AF
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEjSURBVFhH7ZbPDcIgGMV7dwEXMPFaqmcn8GCEeHADN3AF
V+gMLuEWLgPy6FdjCJXyp+2FX/IONfC9B1+hVoVCKlKwm7zsN/Q4LzBXolFSNG/6aR7kqV6blWtjBDAh
OGvVuTnQkOmwjW3pIC8EpOF50eZ3l6kthKAp+ei2fXjlttASmpoH02OH0ZAQNmsrsK0uo/9ijKans3yA
gP5/lfNYxgTAqaHpaYSegF6SNw8qkQa20mXgU7b7ACtxGfiEXaMSaUS9gCRc3VQmDhRwFR6rpDYovl2l
...
...
@@ -374,7 +374,7 @@
<data name="ucBtnImg12.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAEjSURBVFhH7ZbPDcIgGMV7dwEXMPFaqmcn8GCEeHADN3AF
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAEjSURBVFhH7ZbPDcIgGMV7dwEXMPFaqmcn8GCEeHADN3AF
V+gMLuEWLgPy6FdjCJXyp+2FX/IONfC9B1+hVoVCKlKwm7zsN/Q4LzBXolFSNG/6aR7kqV6blWtjBDAh
OGvVuTnQkOmwjW3pIC8EpOF50eZ3l6kthKAp+ei2fXjlttASmpoH02OH0ZAQNmsrsK0uo/9ijKans3yA
gP5/lfNYxgTAqaHpaYSegF6SNw8qkQa20mXgU7b7ACtxGfiEXaMSaUS9gCRc3VQmDhRwFR6rpDYovl2l
...
...
@@ -385,7 +385,7 @@
<data name="ucBtnImg4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -397,7 +397,7 @@
<data name="ucBtnImg4.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -409,7 +409,7 @@
<data name="ucBtnImg7.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
...
...
@@ -421,7 +421,7 @@
<data name="ucBtnImg7.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFPSURBVFhH7VbdDYIwEObdBVzAxFdafXYCH4w0PrCBG7gC
KzADS7iFyxTvrwYQCIVi1PAlF0q53n13vSuNFvwcymS7kmEnhuiMhr3sNzbZHeW1FdaomwznAToojVL4
tIm6i+TWxCnJKV6LanigcZvoojS6bBNr9AOIXUU9LDhq/Whz7MR9x4zIsnDAVLMTTL3Oqo55HqLHDDkS
ITPB+15x1JEJR5LGoCPLp6Nq2EvO+iAmpsFF7S8jW5L7HdtLF/Qu++4rmAFqTbaVkfEhAOVXq5FziKaW
...
...
@@ -433,7 +433,7 @@
<data name="ucBtnImg3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -445,7 +445,7 @@
<data name="ucBtnImg3.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAAFDSURBVFhH7ZfRjcIwEERTRhqggWsgFaSCdHAdpIW0cDXQ
RLqgmeTekAEFEFLstfyBeNIKbDyza2Ni03wky7K0fluXdV07kp+JC3Fydx1IOFDAFRXg7jqQsFVS51cB
Z39UBxL+Ofd19kT15d/PfnB3eTQzcvw8z1AFEDPRE63G3MJDYth4xvAObSXVjv+lqd0/aoz6txEbamuM
rdJBfP9+I8jHlsdB1FsfBq/ZtseRyPoQWcnRdZu8CJ1tj0PVo8UhsmYvCi7/aMs0PqmAyZZpICz1+887
...
...
@@ -457,7 +457,7 @@
<data name="ucBtnImg2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
8AAA6/ATgFUyQ
AAAFLSURBVFhH7VfRaQMxDL0xukAHiJ1+d4J8lNr0Ixt0g66Q
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAFLSURBVFhH7VfRaQMxDL0xukAHiJ1+d4J8lNr0Ixt0g66Q
FTpDl+gWXcZXPZ1yGOPCSTJXCHnwIDjmWXpSZGe6SZSXw4N83Bfza3wuKX6VHH/K29OjLO+Dkg/nOccZ
RACyvA9gOQ5dAyAX5Kt9UFL4rLP/B/ur7KkUsjweyGzOIbQZctYpfJd0PKEc2HOlbPGBhemAa5ar1dzx
4Z27P4cPDqJyY91He0RKj7q+HkJHJLcDmffELIQ7Irsdre1Wmg5HXXtiJpKWyG4HmqorpqQpe2CY/ZSI
...
...
@@ -469,7 +469,7 @@
<data name="ucBtnImg2.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
8AAA6/ATgFUyQ
AAAFLSURBVFhH7VfRaQMxDL0xukAHiJ1+d4J8lNr0Ixt0g66Q
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAFLSURBVFhH7VfRaQMxDL0xukAHiJ1+d4J8lNr0Ixt0g66Q
FTpDl+gWXcZXPZ1yGOPCSTJXCHnwIDjmWXpSZGe6SZSXw4N83Bfza3wuKX6VHH/K29OjLO+Dkg/nOccZ
RACyvA9gOQ5dAyAX5Kt9UFL4rLP/B/ur7KkUsjweyGzOIbQZctYpfJd0PKEc2HOlbPGBhemAa5ar1dzx
4Z27P4cPDqJyY91He0RKj7q+HkJHJLcDmffELIQ7Irsdre1Wmg5HXXtiJpKWyG4HmqorpqQpe2CY/ZSI
...
...
@@ -481,7 +481,7 @@
<data name="ucBtnImg21.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAABcSURBVFhH7dLBDYBACETRbcYCZGMnEg92YEt2Yxc2A0pC
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAABcSURBVFhH7dLBDYBACETRbcYCZGMnEg92YEt2Yxc2A0pC
DUs2+e8EXGYONADA1EzlyrGGaX9tlyfX8VxFKBEoEUzX07X7X+DO0ziEl4SHfLqa8GDHtuQIALNq7QPU
SkBGN/v52QAAAABJRU5ErkJggg==
</value>
...
...
@@ -489,7 +489,7 @@
<data name="ucBtnImg21.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAABcSURBVFhH7dLBDYBACETRbcYCZGMnEg92YEt2Yxc2A0pC
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAABcSURBVFhH7dLBDYBACETRbcYCZGMnEg92YEt2Yxc2A0pC
DUs2+e8EXGYONADA1EzlyrGGaX9tlyfX8VxFKBEoEUzX07X7X+DO0ziEl4SHfLqa8GDHtuQIALNq7QPU
SkBGN/v52QAAAABJRU5ErkJggg==
</value>
...
...
@@ -497,7 +497,7 @@
<data name="ucBtnImg20.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAACmSURBVFhHYxgFo2AUjIJRMAoGPfgXYtz1L8TEF8olGQD1
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAACmSURBVFhHYxgFo2AUjIJRMAoGPfgXYtz1L8TEF8olGQD1
r/0famQE5ZIG/oUYzf4favyfMgcYHfoXanyTZEfALQ81jIYKkQ1IdgQo2CGWG98Ea6YChpsXaCgBtQY3
APkariHUqJJiDI9Ko0NQKwgDuCOAmqFCZAFQsMNCEipEPECEhFEWVIhkQLblMADKAf/CTVWhXJIBJY4f
BaNgFIyCUUAHwMAAAEJ7pLguJwW2AAAAAElFTkSuQmCC
...
...
@@ -506,7 +506,7 @@
<data name="ucBtnImg20.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAACmSURBVFhHYxgFo2AUjIJRMAoGPfgXYtz1L8TEF8olGQD1
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAACmSURBVFhHYxgFo2AUjIJRMAoGPfgXYtz1L8TEF8olGQD1
r/0famQE5ZIG/oUYzf4favyfMgcYHfoXanyTZEfALQ81jIYKkQ1IdgQo2CGWG98Ea6YChpsXaCgBtQY3
APkariHUqJJiDI9Ko0NQKwgDuCOAmqFCZAFQsMNCEipEPECEhFEWVIhkQLblMADKAf/CTVWhXJIBJY4f
BaNgFIyCUUAHwMAAAEJ7pLguJwW2AAAAAElFTkSuQmCC
...
...
@@ -515,7 +515,7 @@
<data name="ucBtnImg22.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAABUSURBVFhH7c7hCYBQCEVhl2kBo02SdmjMtmgZCx+2glac
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAABUSURBVFhH7c7hCYBQCEVhl2kBo02SdmjMtmgZCx+2glac
DwT1z70CAPgVN91zreerHjF51hrhNp+XqearDuEt4aG9QKDE41Ul8uzh2zLlCgBfIXID9bo/uLiREz0A
AAAASUVORK5CYII=
</value>
...
...
@@ -523,7 +523,7 @@
<data name="ucBtnImg22.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAAD
sAAAA7AAWrWiQk
AAABUSURBVFhH7c7hCYBQCEVhl2kBo02SdmjMtmgZCx+2glac
YQUAAAAJcEhZcwAAD
r8AAA6/ATgFUyQ
AAABUSURBVFhH7c7hCYBQCEVhl2kBo02SdmjMtmgZCx+2glac
DwT1z70CAPgVN91zreerHjF51hrhNp+XqearDuEt4aG9QKDE41Ul8uzh2zLlCgBfIXID9bo/uLiREz0A
AAAASUVORK5CYII=
</value>
...
...
@@ -531,7 +531,7 @@
<data name="ucBtnImg19.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAADr
0AAA69AUf7kK0
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -542,7 +542,7 @@
<data name="ucBtnImg19.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAADr
0AAA69AUf7kK0
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -553,7 +553,7 @@
<data name="ucBtnImg18.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAADr
0AAA69AUf7kK0
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -564,7 +564,7 @@
<data name="ucBtnImg18.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAADr
0AAA69AUf7kK0
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -575,7 +575,7 @@
<data name="ucBtnImg17.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
@@ -586,7 +586,7 @@
<data name="ucBtnImg17.ImageFontIcons" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADr
8AAA6/ATgFUyQ
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
YQUAAAAJcEhZcwAADr
4AAA6+AepCscA
AAAEYSURBVFhH7ZbREYIwEET5twEbsAEaoAIrsAM6oAVboAab
oAuaQXd1M4OMIMkd6EfezA0gt3uXhAhFJmNlGIYacdLlvrD4HeDY66d9QMGjRt6zAYLzFodKKdsxLTwF
9zrEUem+wLhRnUXYhCR+cFSI2ZFPQW4rqQ80lPcq2CybltwOzDp5x1BKbucfGli9/iP8tmVKA9A0ktuA
UdQOCEBzlYUNeFUvyzjQgM//AUcizyg4a7KwkTL9AWhr2aRBA3klAX36MkB/sIw+AI+03cDu5WEGXhfZ
...
...
HZH_Controls/Test/UC/UCTestConduit.Designer.cs
查看文件 @
3976e0d
...
...
@@ -37,9 +37,11 @@
this
.
ucConduit7
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit6
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit3
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit4
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit2
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit18
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit17
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit1
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit19
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit20
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit21
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
...
...
@@ -54,11 +56,9 @@
this
.
ucConduit26
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit5
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit10
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucConduit1
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
ucBottle1
=
new
HZH_Controls
.
Controls
.
UCBottle
();
this
.
ucPond2
=
new
HZH_Controls
.
Controls
.
UCPond
();
this
.
ucBlower4
=
new
HZH_Controls
.
Controls
.
UCBlower
();
this
.
ucConduit4
=
new
HZH_Controls
.
Controls
.
Conduit
.
UCConduit
();
this
.
SuspendLayout
();
//
// ucValve1
...
...
@@ -181,6 +181,19 @@
this
.
ucConduit3
.
Size
=
new
System
.
Drawing
.
Size
(
496
,
37
);
this
.
ucConduit3
.
TabIndex
=
40
;
//
// ucConduit4
//
this
.
ucConduit4
.
ConduitColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConduit4
.
ConduitStyle
=
HZH_Controls
.
Controls
.
Conduit
.
ConduitStyle
.
Horizontal_None_Up
;
this
.
ucConduit4
.
ConduitWidth
=
50
;
this
.
ucConduit4
.
LiquidColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
3
)))),
((
int
)(((
byte
)(
169
)))),
((
int
)(((
byte
)(
243
)))));
this
.
ucConduit4
.
LiquidDirection
=
HZH_Controls
.
Controls
.
Conduit
.
LiquidDirection
.
Backward
;
this
.
ucConduit4
.
LiquidSpeed
=
50
;
this
.
ucConduit4
.
Location
=
new
System
.
Drawing
.
Point
(
935
,
313
);
this
.
ucConduit4
.
Name
=
"ucConduit4"
;
this
.
ucConduit4
.
Size
=
new
System
.
Drawing
.
Size
(
87
,
37
);
this
.
ucConduit4
.
TabIndex
=
39
;
//
// ucConduit2
//
this
.
ucConduit2
.
ConduitColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
...
...
@@ -220,6 +233,19 @@
this
.
ucConduit17
.
Size
=
new
System
.
Drawing
.
Size
(
37
,
134
);
this
.
ucConduit17
.
TabIndex
=
37
;
//
// ucConduit1
//
this
.
ucConduit1
.
ConduitColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConduit1
.
ConduitStyle
=
HZH_Controls
.
Controls
.
Conduit
.
ConduitStyle
.
Horizontal_None_None
;
this
.
ucConduit1
.
ConduitWidth
=
50
;
this
.
ucConduit1
.
LiquidColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
3
)))),
((
int
)(((
byte
)(
169
)))),
((
int
)(((
byte
)(
243
)))));
this
.
ucConduit1
.
LiquidDirection
=
HZH_Controls
.
Controls
.
Conduit
.
LiquidDirection
.
Backward
;
this
.
ucConduit1
.
LiquidSpeed
=
50
;
this
.
ucConduit1
.
Location
=
new
System
.
Drawing
.
Point
(
581
,
194
);
this
.
ucConduit1
.
Name
=
"ucConduit1"
;
this
.
ucConduit1
.
Size
=
new
System
.
Drawing
.
Size
(
136
,
37
);
this
.
ucConduit1
.
TabIndex
=
52
;
//
// ucConduit19
//
this
.
ucConduit19
.
ConduitColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
...
...
@@ -402,19 +428,6 @@
this
.
ucConduit10
.
Size
=
new
System
.
Drawing
.
Size
(
161
,
37
);
this
.
ucConduit10
.
TabIndex
=
47
;
//
// ucConduit1
//
this
.
ucConduit1
.
ConduitColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConduit1
.
ConduitStyle
=
HZH_Controls
.
Controls
.
Conduit
.
ConduitStyle
.
Horizontal_None_None
;
this
.
ucConduit1
.
ConduitWidth
=
50
;
this
.
ucConduit1
.
LiquidColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
3
)))),
((
int
)(((
byte
)(
169
)))),
((
int
)(((
byte
)(
243
)))));
this
.
ucConduit1
.
LiquidDirection
=
HZH_Controls
.
Controls
.
Conduit
.
LiquidDirection
.
Backward
;
this
.
ucConduit1
.
LiquidSpeed
=
50
;
this
.
ucConduit1
.
Location
=
new
System
.
Drawing
.
Point
(
581
,
194
);
this
.
ucConduit1
.
Name
=
"ucConduit1"
;
this
.
ucConduit1
.
Size
=
new
System
.
Drawing
.
Size
(
136
,
37
);
this
.
ucConduit1
.
TabIndex
=
52
;
//
// ucBottle1
//
this
.
ucBottle1
.
BottleColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
...
...
@@ -468,19 +481,6 @@
this
.
ucBlower4
.
Size
=
new
System
.
Drawing
.
Size
(
116
,
154
);
this
.
ucBlower4
.
TabIndex
=
62
;
//
// ucConduit4
//
this
.
ucConduit4
.
ConduitColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConduit4
.
ConduitStyle
=
HZH_Controls
.
Controls
.
Conduit
.
ConduitStyle
.
Horizontal_None_Up
;
this
.
ucConduit4
.
ConduitWidth
=
50
;
this
.
ucConduit4
.
LiquidColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
3
)))),
((
int
)(((
byte
)(
169
)))),
((
int
)(((
byte
)(
243
)))));
this
.
ucConduit4
.
LiquidDirection
=
HZH_Controls
.
Controls
.
Conduit
.
LiquidDirection
.
Backward
;
this
.
ucConduit4
.
LiquidSpeed
=
50
;
this
.
ucConduit4
.
Location
=
new
System
.
Drawing
.
Point
(
935
,
313
);
this
.
ucConduit4
.
Name
=
"ucConduit4"
;
this
.
ucConduit4
.
Size
=
new
System
.
Drawing
.
Size
(
87
,
37
);
this
.
ucConduit4
.
TabIndex
=
39
;
//
// UCTestConduit
//
this
.
AutoScaleMode
=
System
.
Windows
.
Forms
.
AutoScaleMode
.
None
;
...
...
HZH_Controls/Test/UC/UCTestConveyor.Designer.cs
查看文件 @
3976e0d
...
...
@@ -28,44 +28,109 @@
/// </summary>
private
void
InitializeComponent
()
{
this
.
ucConveyor36
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor18
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor35
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor12
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor34
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor2
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor33
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor17
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor32
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor11
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor31
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor6
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor30
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor16
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor29
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor10
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor28
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor4
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor5
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor3
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor1
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor7
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor8
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor27
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor15
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor26
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor9
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor10
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor11
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor12
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor13
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor25
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor5
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor24
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor14
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor15
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor16
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor17
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor18
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor19
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor20
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor21
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor22
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor23
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor24
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor25
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor26
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor27
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor28
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor29
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor30
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor31
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor32
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor33
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor34
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor35
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor36
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor13
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor22
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor21
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor8
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor20
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor7
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor19
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor3
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
ucConveyor1
=
new
HZH_Controls
.
Controls
.
UCConveyor
();
this
.
SuspendLayout
();
//
// ucConveyor36
//
this
.
ucConveyor36
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor36
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor36
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor36
.
ConveyorHeight
=
30
;
this
.
ucConveyor36
.
ConveyorSpeed
=
100
;
this
.
ucConveyor36
.
Inclination
=
30D
;
this
.
ucConveyor36
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
497
);
this
.
ucConveyor36
.
Name
=
"ucConveyor36"
;
this
.
ucConveyor36
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor36
.
TabIndex
=
22
;
//
// ucConveyor18
//
this
.
ucConveyor18
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor18
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor18
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor18
.
ConveyorHeight
=
30
;
this
.
ucConveyor18
.
ConveyorSpeed
=
100
;
this
.
ucConveyor18
.
Inclination
=
30D
;
this
.
ucConveyor18
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
503
);
this
.
ucConveyor18
.
Name
=
"ucConveyor18"
;
this
.
ucConveyor18
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor18
.
TabIndex
=
22
;
//
// ucConveyor35
//
this
.
ucConveyor35
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor35
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor35
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor35
.
ConveyorHeight
=
30
;
this
.
ucConveyor35
.
ConveyorSpeed
=
100
;
this
.
ucConveyor35
.
Inclination
=
30D
;
this
.
ucConveyor35
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
281
);
this
.
ucConveyor35
.
Name
=
"ucConveyor35"
;
this
.
ucConveyor35
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor35
.
TabIndex
=
22
;
//
// ucConveyor12
//
this
.
ucConveyor12
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor12
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor12
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor12
.
ConveyorHeight
=
30
;
this
.
ucConveyor12
.
ConveyorSpeed
=
100
;
this
.
ucConveyor12
.
Inclination
=
30D
;
this
.
ucConveyor12
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
287
);
this
.
ucConveyor12
.
Name
=
"ucConveyor12"
;
this
.
ucConveyor12
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor12
.
TabIndex
=
22
;
//
// ucConveyor34
//
this
.
ucConveyor34
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor34
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor34
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor34
.
ConveyorHeight
=
30
;
this
.
ucConveyor34
.
ConveyorSpeed
=
100
;
this
.
ucConveyor34
.
Inclination
=
30D
;
this
.
ucConveyor34
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
67
);
this
.
ucConveyor34
.
Name
=
"ucConveyor34"
;
this
.
ucConveyor34
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor34
.
TabIndex
=
22
;
//
// ucConveyor2
//
this
.
ucConveyor2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
...
...
@@ -79,6 +144,71 @@
this
.
ucConveyor2
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor2
.
TabIndex
=
22
;
//
// ucConveyor33
//
this
.
ucConveyor33
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor33
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor33
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor33
.
ConveyorHeight
=
30
;
this
.
ucConveyor33
.
ConveyorSpeed
=
100
;
this
.
ucConveyor33
.
Inclination
=
90D
;
this
.
ucConveyor33
.
Location
=
new
System
.
Drawing
.
Point
(
1146
,
443
);
this
.
ucConveyor33
.
Name
=
"ucConveyor33"
;
this
.
ucConveyor33
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor33
.
TabIndex
=
23
;
//
// ucConveyor17
//
this
.
ucConveyor17
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor17
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor17
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor17
.
ConveyorHeight
=
30
;
this
.
ucConveyor17
.
ConveyorSpeed
=
100
;
this
.
ucConveyor17
.
Inclination
=
90D
;
this
.
ucConveyor17
.
Location
=
new
System
.
Drawing
.
Point
(
546
,
443
);
this
.
ucConveyor17
.
Name
=
"ucConveyor17"
;
this
.
ucConveyor17
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor17
.
TabIndex
=
23
;
//
// ucConveyor32
//
this
.
ucConveyor32
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor32
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor32
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor32
.
ConveyorHeight
=
30
;
this
.
ucConveyor32
.
ConveyorSpeed
=
100
;
this
.
ucConveyor32
.
Inclination
=
90D
;
this
.
ucConveyor32
.
Location
=
new
System
.
Drawing
.
Point
(
1146
,
227
);
this
.
ucConveyor32
.
Name
=
"ucConveyor32"
;
this
.
ucConveyor32
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor32
.
TabIndex
=
23
;
//
// ucConveyor11
//
this
.
ucConveyor11
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor11
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor11
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor11
.
ConveyorHeight
=
30
;
this
.
ucConveyor11
.
ConveyorSpeed
=
100
;
this
.
ucConveyor11
.
Inclination
=
90D
;
this
.
ucConveyor11
.
Location
=
new
System
.
Drawing
.
Point
(
546
,
227
);
this
.
ucConveyor11
.
Name
=
"ucConveyor11"
;
this
.
ucConveyor11
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor11
.
TabIndex
=
23
;
//
// ucConveyor31
//
this
.
ucConveyor31
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor31
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor31
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor31
.
ConveyorHeight
=
30
;
this
.
ucConveyor31
.
ConveyorSpeed
=
100
;
this
.
ucConveyor31
.
Inclination
=
90D
;
this
.
ucConveyor31
.
Location
=
new
System
.
Drawing
.
Point
(
1146
,
13
);
this
.
ucConveyor31
.
Name
=
"ucConveyor31"
;
this
.
ucConveyor31
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor31
.
TabIndex
=
23
;
//
// ucConveyor6
//
this
.
ucConveyor6
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
...
...
@@ -92,6 +222,71 @@
this
.
ucConveyor6
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor6
.
TabIndex
=
23
;
//
// ucConveyor30
//
this
.
ucConveyor30
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor30
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor30
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor30
.
ConveyorHeight
=
30
;
this
.
ucConveyor30
.
ConveyorSpeed
=
100
;
this
.
ucConveyor30
.
Inclination
=
90D
;
this
.
ucConveyor30
.
Location
=
new
System
.
Drawing
.
Point
(
627
,
443
);
this
.
ucConveyor30
.
Name
=
"ucConveyor30"
;
this
.
ucConveyor30
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor30
.
TabIndex
=
24
;
//
// ucConveyor16
//
this
.
ucConveyor16
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor16
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor16
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor16
.
ConveyorHeight
=
30
;
this
.
ucConveyor16
.
ConveyorSpeed
=
100
;
this
.
ucConveyor16
.
Inclination
=
90D
;
this
.
ucConveyor16
.
Location
=
new
System
.
Drawing
.
Point
(
27
,
443
);
this
.
ucConveyor16
.
Name
=
"ucConveyor16"
;
this
.
ucConveyor16
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor16
.
TabIndex
=
24
;
//
// ucConveyor29
//
this
.
ucConveyor29
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor29
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor29
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor29
.
ConveyorHeight
=
30
;
this
.
ucConveyor29
.
ConveyorSpeed
=
100
;
this
.
ucConveyor29
.
Inclination
=
90D
;
this
.
ucConveyor29
.
Location
=
new
System
.
Drawing
.
Point
(
627
,
227
);
this
.
ucConveyor29
.
Name
=
"ucConveyor29"
;
this
.
ucConveyor29
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor29
.
TabIndex
=
24
;
//
// ucConveyor10
//
this
.
ucConveyor10
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor10
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor10
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor10
.
ConveyorHeight
=
30
;
this
.
ucConveyor10
.
ConveyorSpeed
=
100
;
this
.
ucConveyor10
.
Inclination
=
90D
;
this
.
ucConveyor10
.
Location
=
new
System
.
Drawing
.
Point
(
27
,
227
);
this
.
ucConveyor10
.
Name
=
"ucConveyor10"
;
this
.
ucConveyor10
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor10
.
TabIndex
=
24
;
//
// ucConveyor28
//
this
.
ucConveyor28
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor28
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor28
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor28
.
ConveyorHeight
=
30
;
this
.
ucConveyor28
.
ConveyorSpeed
=
100
;
this
.
ucConveyor28
.
Inclination
=
90D
;
this
.
ucConveyor28
.
Location
=
new
System
.
Drawing
.
Point
(
627
,
13
);
this
.
ucConveyor28
.
Name
=
"ucConveyor28"
;
this
.
ucConveyor28
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor28
.
TabIndex
=
24
;
//
// ucConveyor4
//
this
.
ucConveyor4
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
...
...
@@ -105,70 +300,44 @@
this
.
ucConveyor4
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor4
.
TabIndex
=
24
;
//
// ucConveyor5
//
this
.
ucConveyor5
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor5
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor5
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor5
.
ConveyorHeight
=
30
;
this
.
ucConveyor5
.
ConveyorSpeed
=
100
;
this
.
ucConveyor5
.
Inclination
=
0D
;
this
.
ucConveyor5
.
Location
=
new
System
.
Drawing
.
Point
(
321
,
13
);
this
.
ucConveyor5
.
Name
=
"ucConveyor5"
;
this
.
ucConveyor5
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor5
.
TabIndex
=
25
;
//
// ucConveyor3
//
this
.
ucConveyor3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor3
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor3
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor3
.
ConveyorHeight
=
30
;
this
.
ucConveyor3
.
ConveyorSpeed
=
100
;
this
.
ucConveyor3
.
Inclination
=
0D
;
this
.
ucConveyor3
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
13
);
this
.
ucConveyor3
.
Name
=
"ucConveyor3"
;
this
.
ucConveyor3
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor3
.
TabIndex
=
26
;
//
// ucConveyor1
// ucConveyor27
//
this
.
ucConveyor
1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
1
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
1
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor
1
.
ConveyorHeight
=
30
;
this
.
ucConveyor
1
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
1
.
Inclination
=
-
3
0D
;
this
.
ucConveyor
1
.
Location
=
new
System
.
Drawing
.
Point
(
300
,
72
);
this
.
ucConveyor
1
.
Name
=
"ucConveyor1
"
;
this
.
ucConveyor
1
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor
1
.
TabIndex
=
27
;
this
.
ucConveyor
27
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
27
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
27
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
27
.
ConveyorHeight
=
30
;
this
.
ucConveyor
27
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
27
.
Inclination
=
0D
;
this
.
ucConveyor
27
.
Location
=
new
System
.
Drawing
.
Point
(
921
,
443
);
this
.
ucConveyor
27
.
Name
=
"ucConveyor27
"
;
this
.
ucConveyor
27
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor
27
.
TabIndex
=
25
;
//
// ucConveyor
7
// ucConveyor
15
//
this
.
ucConveyor
7
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
7
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor
7
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor
7
.
ConveyorHeight
=
30
;
this
.
ucConveyor
7
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
7
.
Inclination
=
-
3
0D
;
this
.
ucConveyor
7
.
Location
=
new
System
.
Drawing
.
Point
(
300
,
286
);
this
.
ucConveyor
7
.
Name
=
"ucConveyor7
"
;
this
.
ucConveyor
7
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor
7
.
TabIndex
=
27
;
this
.
ucConveyor
15
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
15
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor
15
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
15
.
ConveyorHeight
=
30
;
this
.
ucConveyor
15
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
15
.
Inclination
=
0D
;
this
.
ucConveyor
15
.
Location
=
new
System
.
Drawing
.
Point
(
321
,
443
);
this
.
ucConveyor
15
.
Name
=
"ucConveyor15
"
;
this
.
ucConveyor
15
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor
15
.
TabIndex
=
25
;
//
// ucConveyor
8
// ucConveyor
26
//
this
.
ucConveyor
8
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
8
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
8
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor
8
.
ConveyorHeight
=
30
;
this
.
ucConveyor
8
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
8
.
Inclination
=
0D
;
this
.
ucConveyor
8
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
227
);
this
.
ucConveyor
8
.
Name
=
"ucConveyor8
"
;
this
.
ucConveyor
8
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor
8
.
TabIndex
=
26
;
this
.
ucConveyor
26
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
26
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
26
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor
26
.
ConveyorHeight
=
30
;
this
.
ucConveyor
26
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
26
.
Inclination
=
0D
;
this
.
ucConveyor
26
.
Location
=
new
System
.
Drawing
.
Point
(
921
,
227
);
this
.
ucConveyor
26
.
Name
=
"ucConveyor26
"
;
this
.
ucConveyor
26
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor
26
.
TabIndex
=
25
;
//
// ucConveyor9
//
...
...
@@ -183,57 +352,44 @@
this
.
ucConveyor9
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor9
.
TabIndex
=
25
;
//
// ucConveyor10
//
this
.
ucConveyor10
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor10
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor10
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor10
.
ConveyorHeight
=
30
;
this
.
ucConveyor10
.
ConveyorSpeed
=
100
;
this
.
ucConveyor10
.
Inclination
=
90D
;
this
.
ucConveyor10
.
Location
=
new
System
.
Drawing
.
Point
(
27
,
227
);
this
.
ucConveyor10
.
Name
=
"ucConveyor10"
;
this
.
ucConveyor10
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor10
.
TabIndex
=
24
;
//
// ucConveyor11
// ucConveyor25
//
this
.
ucConveyor
11
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
11
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
11
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
For
ward
;
this
.
ucConveyor
11
.
ConveyorHeight
=
30
;
this
.
ucConveyor
11
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
11
.
Inclination
=
9
0D
;
this
.
ucConveyor
11
.
Location
=
new
System
.
Drawing
.
Point
(
546
,
227
);
this
.
ucConveyor
11
.
Name
=
"ucConveyor11
"
;
this
.
ucConveyor
11
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
17
3
);
this
.
ucConveyor
11
.
TabIndex
=
23
;
this
.
ucConveyor
25
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
25
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
25
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Back
ward
;
this
.
ucConveyor
25
.
ConveyorHeight
=
30
;
this
.
ucConveyor
25
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
25
.
Inclination
=
0D
;
this
.
ucConveyor
25
.
Location
=
new
System
.
Drawing
.
Point
(
921
,
13
);
this
.
ucConveyor
25
.
Name
=
"ucConveyor25
"
;
this
.
ucConveyor
25
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
5
3
);
this
.
ucConveyor
25
.
TabIndex
=
25
;
//
// ucConveyor
12
// ucConveyor
5
//
this
.
ucConveyor
12
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
12
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor
12
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
For
ward
;
this
.
ucConveyor
12
.
ConveyorHeight
=
30
;
this
.
ucConveyor
12
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
12
.
Inclination
=
3
0D
;
this
.
ucConveyor
12
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
287
);
this
.
ucConveyor
12
.
Name
=
"ucConveyor12
"
;
this
.
ucConveyor
12
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor
12
.
TabIndex
=
22
;
this
.
ucConveyor
5
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
5
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor
5
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Back
ward
;
this
.
ucConveyor
5
.
ConveyorHeight
=
30
;
this
.
ucConveyor
5
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
5
.
Inclination
=
0D
;
this
.
ucConveyor
5
.
Location
=
new
System
.
Drawing
.
Point
(
321
,
13
);
this
.
ucConveyor
5
.
Name
=
"ucConveyor5
"
;
this
.
ucConveyor
5
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor
5
.
TabIndex
=
25
;
//
// ucConveyor
13
// ucConveyor
24
//
this
.
ucConveyor
13
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
13
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
13
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
13
.
ConveyorHeight
=
30
;
this
.
ucConveyor
13
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
13
.
Inclination
=
-
3
0D
;
this
.
ucConveyor
13
.
Location
=
new
System
.
Drawing
.
Point
(
300
,
502
);
this
.
ucConveyor
13
.
Name
=
"ucConveyor13
"
;
this
.
ucConveyor
13
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor
13
.
TabIndex
=
27
;
this
.
ucConveyor
24
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
24
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
24
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
24
.
ConveyorHeight
=
30
;
this
.
ucConveyor
24
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
24
.
Inclination
=
0D
;
this
.
ucConveyor
24
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
443
);
this
.
ucConveyor
24
.
Name
=
"ucConveyor24
"
;
this
.
ucConveyor
24
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor
24
.
TabIndex
=
26
;
//
// ucConveyor14
//
...
...
@@ -248,85 +404,46 @@
this
.
ucConveyor14
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor14
.
TabIndex
=
26
;
//
// ucConveyor15
//
this
.
ucConveyor15
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor15
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor15
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor15
.
ConveyorHeight
=
30
;
this
.
ucConveyor15
.
ConveyorSpeed
=
100
;
this
.
ucConveyor15
.
Inclination
=
0D
;
this
.
ucConveyor15
.
Location
=
new
System
.
Drawing
.
Point
(
321
,
443
);
this
.
ucConveyor15
.
Name
=
"ucConveyor15"
;
this
.
ucConveyor15
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor15
.
TabIndex
=
25
;
//
// ucConveyor16
// ucConveyor23
//
this
.
ucConveyor
16
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
16
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
16
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
16
.
ConveyorHeight
=
30
;
this
.
ucConveyor
16
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
16
.
Inclination
=
9
0D
;
this
.
ucConveyor
16
.
Location
=
new
System
.
Drawing
.
Point
(
27
,
443
);
this
.
ucConveyor
16
.
Name
=
"ucConveyor16
"
;
this
.
ucConveyor
16
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor
16
.
TabIndex
=
24
;
this
.
ucConveyor
23
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
23
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
23
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
23
.
ConveyorHeight
=
30
;
this
.
ucConveyor
23
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
23
.
Inclination
=
-
3
0D
;
this
.
ucConveyor
23
.
Location
=
new
System
.
Drawing
.
Point
(
900
,
496
);
this
.
ucConveyor
23
.
Name
=
"ucConveyor23
"
;
this
.
ucConveyor
23
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor
23
.
TabIndex
=
27
;
//
// ucConveyor1
7
// ucConveyor1
3
//
this
.
ucConveyor1
7
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor1
7
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor1
7
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor1
7
.
ConveyorHeight
=
30
;
this
.
ucConveyor1
7
.
ConveyorSpeed
=
100
;
this
.
ucConveyor1
7
.
Inclination
=
9
0D
;
this
.
ucConveyor1
7
.
Location
=
new
System
.
Drawing
.
Point
(
546
,
443
);
this
.
ucConveyor1
7
.
Name
=
"ucConveyor17
"
;
this
.
ucConveyor1
7
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor1
7
.
TabIndex
=
23
;
this
.
ucConveyor1
3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor1
3
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucConveyor1
3
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor1
3
.
ConveyorHeight
=
30
;
this
.
ucConveyor1
3
.
ConveyorSpeed
=
100
;
this
.
ucConveyor1
3
.
Inclination
=
-
3
0D
;
this
.
ucConveyor1
3
.
Location
=
new
System
.
Drawing
.
Point
(
300
,
502
);
this
.
ucConveyor1
3
.
Name
=
"ucConveyor13
"
;
this
.
ucConveyor1
3
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor1
3
.
TabIndex
=
27
;
//
// ucConveyor
18
// ucConveyor
22
//
this
.
ucConveyor
18
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
18
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
18
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
18
.
ConveyorHeight
=
30
;
this
.
ucConveyor
18
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
18
.
Inclination
=
3
0D
;
this
.
ucConveyor
18
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
503
);
this
.
ucConveyor
18
.
Name
=
"ucConveyor18
"
;
this
.
ucConveyor
18
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor
18
.
TabIndex
=
22
;
this
.
ucConveyor
22
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
22
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
22
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor
22
.
ConveyorHeight
=
30
;
this
.
ucConveyor
22
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
22
.
Inclination
=
0D
;
this
.
ucConveyor
22
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
227
);
this
.
ucConveyor
22
.
Name
=
"ucConveyor22
"
;
this
.
ucConveyor
22
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor
22
.
TabIndex
=
26
;
//
// ucConveyor19
//
this
.
ucConveyor19
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor19
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor19
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor19
.
ConveyorHeight
=
30
;
this
.
ucConveyor19
.
ConveyorSpeed
=
100
;
this
.
ucConveyor19
.
Inclination
=
-
30D
;
this
.
ucConveyor19
.
Location
=
new
System
.
Drawing
.
Point
(
900
,
66
);
this
.
ucConveyor19
.
Name
=
"ucConveyor19"
;
this
.
ucConveyor19
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor19
.
TabIndex
=
27
;
//
// ucConveyor20
//
this
.
ucConveyor20
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor20
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor20
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor20
.
ConveyorHeight
=
30
;
this
.
ucConveyor20
.
ConveyorSpeed
=
100
;
this
.
ucConveyor20
.
Inclination
=
0D
;
this
.
ucConveyor20
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
13
);
this
.
ucConveyor20
.
Name
=
"ucConveyor20"
;
this
.
ucConveyor20
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor20
.
TabIndex
=
26
;
//
// ucConveyor21
// ucConveyor21
//
this
.
ucConveyor21
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor21
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
...
...
@@ -339,200 +456,83 @@
this
.
ucConveyor21
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor21
.
TabIndex
=
27
;
//
// ucConveyor22
//
this
.
ucConveyor22
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor22
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor22
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor22
.
ConveyorHeight
=
30
;
this
.
ucConveyor22
.
ConveyorSpeed
=
100
;
this
.
ucConveyor22
.
Inclination
=
0D
;
this
.
ucConveyor22
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
227
);
this
.
ucConveyor22
.
Name
=
"ucConveyor22"
;
this
.
ucConveyor22
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor22
.
TabIndex
=
26
;
//
// ucConveyor23
//
this
.
ucConveyor23
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor23
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor23
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor23
.
ConveyorHeight
=
30
;
this
.
ucConveyor23
.
ConveyorSpeed
=
100
;
this
.
ucConveyor23
.
Inclination
=
-
30D
;
this
.
ucConveyor23
.
Location
=
new
System
.
Drawing
.
Point
(
900
,
496
);
this
.
ucConveyor23
.
Name
=
"ucConveyor23"
;
this
.
ucConveyor23
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor23
.
TabIndex
=
27
;
//
// ucConveyor24
//
this
.
ucConveyor24
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor24
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor24
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor24
.
ConveyorHeight
=
30
;
this
.
ucConveyor24
.
ConveyorSpeed
=
100
;
this
.
ucConveyor24
.
Inclination
=
0D
;
this
.
ucConveyor24
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
443
);
this
.
ucConveyor24
.
Name
=
"ucConveyor24"
;
this
.
ucConveyor24
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor24
.
TabIndex
=
26
;
//
// ucConveyor25
//
this
.
ucConveyor25
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor25
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor25
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor25
.
ConveyorHeight
=
30
;
this
.
ucConveyor25
.
ConveyorSpeed
=
100
;
this
.
ucConveyor25
.
Inclination
=
0D
;
this
.
ucConveyor25
.
Location
=
new
System
.
Drawing
.
Point
(
921
,
13
);
this
.
ucConveyor25
.
Name
=
"ucConveyor25"
;
this
.
ucConveyor25
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor25
.
TabIndex
=
25
;
//
// ucConveyor26
//
this
.
ucConveyor26
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor26
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor26
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor26
.
ConveyorHeight
=
30
;
this
.
ucConveyor26
.
ConveyorSpeed
=
100
;
this
.
ucConveyor26
.
Inclination
=
0D
;
this
.
ucConveyor26
.
Location
=
new
System
.
Drawing
.
Point
(
921
,
227
);
this
.
ucConveyor26
.
Name
=
"ucConveyor26"
;
this
.
ucConveyor26
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor26
.
TabIndex
=
25
;
//
// ucConveyor27
//
this
.
ucConveyor27
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor27
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor27
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor27
.
ConveyorHeight
=
30
;
this
.
ucConveyor27
.
ConveyorSpeed
=
100
;
this
.
ucConveyor27
.
Inclination
=
0D
;
this
.
ucConveyor27
.
Location
=
new
System
.
Drawing
.
Point
(
921
,
443
);
this
.
ucConveyor27
.
Name
=
"ucConveyor27"
;
this
.
ucConveyor27
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor27
.
TabIndex
=
25
;
//
// ucConveyor28
//
this
.
ucConveyor28
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor28
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor28
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor28
.
ConveyorHeight
=
30
;
this
.
ucConveyor28
.
ConveyorSpeed
=
100
;
this
.
ucConveyor28
.
Inclination
=
90D
;
this
.
ucConveyor28
.
Location
=
new
System
.
Drawing
.
Point
(
627
,
13
);
this
.
ucConveyor28
.
Name
=
"ucConveyor28"
;
this
.
ucConveyor28
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor28
.
TabIndex
=
24
;
//
// ucConveyor29
//
this
.
ucConveyor29
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor29
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor29
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor29
.
ConveyorHeight
=
30
;
this
.
ucConveyor29
.
ConveyorSpeed
=
100
;
this
.
ucConveyor29
.
Inclination
=
90D
;
this
.
ucConveyor29
.
Location
=
new
System
.
Drawing
.
Point
(
627
,
227
);
this
.
ucConveyor29
.
Name
=
"ucConveyor29"
;
this
.
ucConveyor29
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor29
.
TabIndex
=
24
;
//
// ucConveyor30
//
this
.
ucConveyor30
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor30
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor30
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor30
.
ConveyorHeight
=
30
;
this
.
ucConveyor30
.
ConveyorSpeed
=
100
;
this
.
ucConveyor30
.
Inclination
=
90D
;
this
.
ucConveyor30
.
Location
=
new
System
.
Drawing
.
Point
(
627
,
443
);
this
.
ucConveyor30
.
Name
=
"ucConveyor30"
;
this
.
ucConveyor30
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
165
);
this
.
ucConveyor30
.
TabIndex
=
24
;
//
// ucConveyor31
// ucConveyor8
//
this
.
ucConveyor
31
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
31
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
31
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Back
ward
;
this
.
ucConveyor
31
.
ConveyorHeight
=
30
;
this
.
ucConveyor
31
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
31
.
Inclination
=
9
0D
;
this
.
ucConveyor
31
.
Location
=
new
System
.
Drawing
.
Point
(
1146
,
13
);
this
.
ucConveyor
31
.
Name
=
"ucConveyor31
"
;
this
.
ucConveyor
31
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
17
3
);
this
.
ucConveyor
31
.
TabIndex
=
23
;
this
.
ucConveyor
8
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
8
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
8
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
For
ward
;
this
.
ucConveyor
8
.
ConveyorHeight
=
30
;
this
.
ucConveyor
8
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
8
.
Inclination
=
0D
;
this
.
ucConveyor
8
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
227
);
this
.
ucConveyor
8
.
Name
=
"ucConveyor8
"
;
this
.
ucConveyor
8
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
5
3
);
this
.
ucConveyor
8
.
TabIndex
=
26
;
//
// ucConveyor
32
// ucConveyor
20
//
this
.
ucConveyor
32
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
32
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
32
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
For
ward
;
this
.
ucConveyor
32
.
ConveyorHeight
=
30
;
this
.
ucConveyor
32
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
32
.
Inclination
=
9
0D
;
this
.
ucConveyor
32
.
Location
=
new
System
.
Drawing
.
Point
(
1146
,
227
);
this
.
ucConveyor
32
.
Name
=
"ucConveyor32
"
;
this
.
ucConveyor
32
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
17
3
);
this
.
ucConveyor
32
.
TabIndex
=
23
;
this
.
ucConveyor
20
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
20
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
20
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Back
ward
;
this
.
ucConveyor
20
.
ConveyorHeight
=
30
;
this
.
ucConveyor
20
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
20
.
Inclination
=
0D
;
this
.
ucConveyor
20
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
13
);
this
.
ucConveyor
20
.
Name
=
"ucConveyor20
"
;
this
.
ucConveyor
20
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
5
3
);
this
.
ucConveyor
20
.
TabIndex
=
26
;
//
// ucConveyor
33
// ucConveyor
7
//
this
.
ucConveyor
33
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
33
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
33
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
33
.
ConveyorHeight
=
30
;
this
.
ucConveyor
33
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
33
.
Inclination
=
9
0D
;
this
.
ucConveyor
33
.
Location
=
new
System
.
Drawing
.
Point
(
1146
,
443
);
this
.
ucConveyor
33
.
Name
=
"ucConveyor33
"
;
this
.
ucConveyor
33
.
Size
=
new
System
.
Drawing
.
Size
(
72
,
173
);
this
.
ucConveyor
33
.
TabIndex
=
23
;
this
.
ucConveyor
7
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
7
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
7
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Forward
;
this
.
ucConveyor
7
.
ConveyorHeight
=
30
;
this
.
ucConveyor
7
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
7
.
Inclination
=
-
3
0D
;
this
.
ucConveyor
7
.
Location
=
new
System
.
Drawing
.
Point
(
300
,
286
);
this
.
ucConveyor
7
.
Name
=
"ucConveyor7
"
;
this
.
ucConveyor
7
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor
7
.
TabIndex
=
27
;
//
// ucConveyor
34
// ucConveyor
19
//
this
.
ucConveyor
34
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
34
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
34
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor
34
.
ConveyorHeight
=
30
;
this
.
ucConveyor
34
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
34
.
Inclination
=
30D
;
this
.
ucConveyor
34
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
67
);
this
.
ucConveyor
34
.
Name
=
"ucConveyor34
"
;
this
.
ucConveyor
34
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor
34
.
TabIndex
=
22
;
this
.
ucConveyor
19
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
19
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
19
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor
19
.
ConveyorHeight
=
30
;
this
.
ucConveyor
19
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
19
.
Inclination
=
-
30D
;
this
.
ucConveyor
19
.
Location
=
new
System
.
Drawing
.
Point
(
900
,
66
);
this
.
ucConveyor
19
.
Name
=
"ucConveyor19
"
;
this
.
ucConveyor
19
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor
19
.
TabIndex
=
27
;
//
// ucConveyor3
5
// ucConveyor3
//
this
.
ucConveyor3
5
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor3
5
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor3
5
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
For
ward
;
this
.
ucConveyor3
5
.
ConveyorHeight
=
30
;
this
.
ucConveyor3
5
.
ConveyorSpeed
=
100
;
this
.
ucConveyor3
5
.
Inclination
=
3
0D
;
this
.
ucConveyor3
5
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
281
);
this
.
ucConveyor3
5
.
Name
=
"ucConveyor35
"
;
this
.
ucConveyor3
5
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor3
5
.
TabIndex
=
22
;
this
.
ucConveyor3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor3
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor3
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Back
ward
;
this
.
ucConveyor3
.
ConveyorHeight
=
30
;
this
.
ucConveyor3
.
ConveyorSpeed
=
100
;
this
.
ucConveyor3
.
Inclination
=
0D
;
this
.
ucConveyor3
.
Location
=
new
System
.
Drawing
.
Point
(
102
,
13
);
this
.
ucConveyor3
.
Name
=
"ucConveyor3
"
;
this
.
ucConveyor3
.
Size
=
new
System
.
Drawing
.
Size
(
213
,
53
);
this
.
ucConveyor3
.
TabIndex
=
26
;
//
// ucConveyor
36
// ucConveyor
1
//
this
.
ucConveyor
36
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
36
.
ConveyorColor
=
System
.
Drawing
.
Color
.
DimGray
;
this
.
ucConveyor
36
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
None
;
this
.
ucConveyor
36
.
ConveyorHeight
=
30
;
this
.
ucConveyor
36
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
36
.
Inclination
=
30D
;
this
.
ucConveyor
36
.
Location
=
new
System
.
Drawing
.
Point
(
702
,
497
);
this
.
ucConveyor
36
.
Name
=
"ucConveyor36
"
;
this
.
ucConveyor
36
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
112
);
this
.
ucConveyor
36
.
TabIndex
=
22
;
this
.
ucConveyor
1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucConveyor
1
.
ConveyorColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))))
;
this
.
ucConveyor
1
.
ConveyorDirection
=
HZH_Controls
.
Controls
.
ConveyorDirection
.
Backward
;
this
.
ucConveyor
1
.
ConveyorHeight
=
30
;
this
.
ucConveyor
1
.
ConveyorSpeed
=
100
;
this
.
ucConveyor
1
.
Inclination
=
-
30D
;
this
.
ucConveyor
1
.
Location
=
new
System
.
Drawing
.
Point
(
300
,
72
);
this
.
ucConveyor
1
.
Name
=
"ucConveyor1
"
;
this
.
ucConveyor
1
.
Size
=
new
System
.
Drawing
.
Size
(
183
,
120
);
this
.
ucConveyor
1
.
TabIndex
=
27
;
//
// UCTestConveyor
//
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论