Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
HZH_Controls
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 26aec14f
由
HZH
编写于
2019-11-27 14:19:34 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
开关文字支持自定义颜色
1 个父辈
90b35cf9
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
619 行增加
和
574 行删除
HZH_Controls/HZH_Controls/Controls/Switch/UCSwitch.cs
HZH_Controls/HZH_Controls/HZH_Controls.nuspec
HZH_Controls/HZH_Controls/HandInput/handinput.ini
HZH_Controls/Test/UC/UCTestForms.Designer.cs
HZH_Controls/HZH_Controls/Controls/Switch/UCSwitch.cs
查看文件 @
26aec14
...
...
@@ -57,6 +57,18 @@ namespace HZH_Controls.Controls
Refresh
();
}
}
private
Color
m_trueTextColr
=
Color
.
White
;
[
Description
(
"选中时文本颜色"
),
Category
(
"自定义"
)]
public
Color
TrueTextColr
{
get
{
return
m_trueTextColr
;
}
set
{
m_trueTextColr
=
value
;
Refresh
();
}
}
/// <summary>
/// The m false color
...
...
@@ -78,6 +90,19 @@ namespace HZH_Controls.Controls
}
}
private
Color
m_falseTextColr
=
Color
.
White
;
[
Description
(
"没有选中时文本颜色"
),
Category
(
"自定义"
)]
public
Color
FalseTextColr
{
get
{
return
m_falseTextColr
;
}
set
{
m_falseTextColr
=
value
;
Refresh
();
}
}
/// <summary>
/// The m checked
/// </summary>
...
...
@@ -233,7 +258,7 @@ namespace HZH_Controls.Controls
{
System
.
Drawing
.
SizeF
sizeF
=
g
.
MeasureString
(
strText
.
Replace
(
" "
,
"A"
),
Font
);
int
intTextY
=
(
this
.
Height
-
(
int
)
sizeF
.
Height
)
/
2
+
2
;
g
.
DrawString
(
strText
,
Font
,
Brushes
.
White
,
new
Point
((
this
.
Height
-
2
-
4
)
/
2
,
intTextY
));
g
.
DrawString
(
strText
,
Font
,
new
SolidBrush
(
m_trueTextColr
)
,
new
Point
((
this
.
Height
-
2
-
4
)
/
2
,
intTextY
));
}
}
else
...
...
@@ -247,7 +272,7 @@ namespace HZH_Controls.Controls
{
System
.
Drawing
.
SizeF
sizeF
=
g
.
MeasureString
(
strText
.
Replace
(
" "
,
"A"
),
Font
);
int
intTextY
=
(
this
.
Height
-
(
int
)
sizeF
.
Height
)
/
2
+
2
;
g
.
DrawString
(
strText
,
Font
,
Brushes
.
White
,
new
Point
(
this
.
Width
-
2
-
(
this
.
Height
-
2
-
4
)
/
2
-
((
this
.
Height
-
2
-
4
)
/
2
)
/
2
-
(
int
)
sizeF
.
Width
/
2
,
intTextY
));
g
.
DrawString
(
strText
,
Font
,
new
SolidBrush
(
m_falseTextColr
)
,
new
Point
(
this
.
Width
-
2
-
(
this
.
Height
-
2
-
4
)
/
2
-
((
this
.
Height
-
2
-
4
)
/
2
)
/
2
-
(
int
)
sizeF
.
Width
/
2
,
intTextY
));
}
}
}
...
...
@@ -293,7 +318,7 @@ namespace HZH_Controls.Controls
{
System
.
Drawing
.
SizeF
sizeF
=
g
.
MeasureString
(
strText
.
Replace
(
" "
,
"A"
),
Font
);
int
intTextY
=
(
this
.
Height
-
(
int
)
sizeF
.
Height
)
/
2
+
2
;
g
.
DrawString
(
strText
,
Font
,
Brushes
.
White
,
new
Point
((
this
.
Height
-
2
-
4
)
/
2
,
intTextY
));
g
.
DrawString
(
strText
,
Font
,
new
SolidBrush
(
m_trueTextColr
)
,
new
Point
((
this
.
Height
-
2
-
4
)
/
2
,
intTextY
));
}
}
else
...
...
@@ -314,7 +339,7 @@ namespace HZH_Controls.Controls
{
System
.
Drawing
.
SizeF
sizeF
=
g
.
MeasureString
(
strText
.
Replace
(
" "
,
"A"
),
Font
);
int
intTextY
=
(
this
.
Height
-
(
int
)
sizeF
.
Height
)
/
2
+
2
;
g
.
DrawString
(
strText
,
Font
,
Brushes
.
White
,
new
Point
(
this
.
Width
-
2
-
(
this
.
Height
-
2
-
4
)
/
2
-
((
this
.
Height
-
2
-
4
)
/
2
)
/
2
-
(
int
)
sizeF
.
Width
/
2
,
intTextY
));
g
.
DrawString
(
strText
,
Font
,
new
SolidBrush
(
m_falseTextColr
)
,
new
Point
(
this
.
Width
-
2
-
(
this
.
Height
-
2
-
4
)
/
2
-
((
this
.
Height
-
2
-
4
)
/
2
)
/
2
-
(
int
)
sizeF
.
Width
/
2
,
intTextY
));
}
}
}
...
...
HZH_Controls/HZH_Controls/HZH_Controls.nuspec
查看文件 @
26aec14
...
...
@@ -2,7 +2,7 @@
<package
>
<metadata>
<id>
$id$
</id>
<version>
1.0.
9
</version>
<version>
1.0.
10
</version>
<title>
HZHControls
</title>
<authors>
HuangZhengHui
</authors>
<owners>
HuangZhengHui
</owners>
...
...
HZH_Controls/HZH_Controls/HandInput/handinput.ini
查看文件 @
26aec14
此文件类型无法预览
HZH_Controls/Test/UC/UCTestForms.Designer.cs
查看文件 @
26aec14
...
...
@@ -29,13 +29,34 @@
private
void
InitializeComponent
()
{
this
.
groupBox4
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
groupBox3
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
groupBox6
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
groupBox7
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
groupBox1
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
groupBox2
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
ucDatePickerExt3
=
new
HZH_Controls
.
Controls
.
UCDatePickerExt
();
this
.
ucDatePickerExt2
=
new
HZH_Controls
.
Controls
.
UCDatePickerExt
();
this
.
ucDatePickerExt1
=
new
HZH_Controls
.
Controls
.
UCDatePickerExt
();
this
.
ucSwitch10
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch5
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch9
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch1
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch6
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch2
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch8
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch3
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch4
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch7
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucNumTextBox2
=
new
HZH_Controls
.
Controls
.
UCNumTextBox
();
this
.
ucNumTextBox1
=
new
HZH_Controls
.
Controls
.
UCNumTextBox
();
this
.
ucComboxGrid1
=
new
HZH_Controls
.
Controls
.
UCComboxGrid
();
this
.
ucComboBox2
=
new
HZH_Controls
.
Controls
.
UCCombox
();
this
.
ucComboBox1
=
new
HZH_Controls
.
Controls
.
UCCombox
();
this
.
ucTextBoxEx4
=
new
HZH_Controls
.
Controls
.
UCTextBoxEx
();
this
.
ucTextBoxEx3
=
new
HZH_Controls
.
Controls
.
UCTextBoxEx
();
this
.
ucTextBoxEx2
=
new
HZH_Controls
.
Controls
.
UCTextBoxEx
();
this
.
ucTextBoxEx1
=
new
HZH_Controls
.
Controls
.
UCTextBoxEx
();
this
.
ucNumTextBox1
=
new
HZH_Controls
.
Controls
.
UCNumTextBox
();
this
.
textBoxTransparent1
=
new
HZH_Controls
.
Controls
.
TextBoxTransparent
();
this
.
groupBox3
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
ucCheckBox4
=
new
HZH_Controls
.
Controls
.
UCCheckBox
();
this
.
ucCheckBox3
=
new
HZH_Controls
.
Controls
.
UCCheckBox
();
this
.
ucCheckBox2
=
new
HZH_Controls
.
Controls
.
UCCheckBox
();
...
...
@@ -44,27 +65,6 @@
this
.
ucRadioButton3
=
new
HZH_Controls
.
Controls
.
UCRadioButton
();
this
.
ucRadioButton2
=
new
HZH_Controls
.
Controls
.
UCRadioButton
();
this
.
ucRadioButton1
=
new
HZH_Controls
.
Controls
.
UCRadioButton
();
this
.
groupBox6
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
ucComboxGrid1
=
new
HZH_Controls
.
Controls
.
UCComboxGrid
();
this
.
ucComboBox2
=
new
HZH_Controls
.
Controls
.
UCCombox
();
this
.
ucComboBox1
=
new
HZH_Controls
.
Controls
.
UCCombox
();
this
.
groupBox7
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
ucDatePickerExt3
=
new
HZH_Controls
.
Controls
.
UCDatePickerExt
();
this
.
ucDatePickerExt2
=
new
HZH_Controls
.
Controls
.
UCDatePickerExt
();
this
.
ucDatePickerExt1
=
new
HZH_Controls
.
Controls
.
UCDatePickerExt
();
this
.
ucSwitch10
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch9
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch6
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch8
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch5
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch7
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch4
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch3
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch2
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
ucSwitch1
=
new
HZH_Controls
.
Controls
.
UCSwitch
();
this
.
groupBox1
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
groupBox2
=
new
System
.
Windows
.
Forms
.
GroupBox
();
this
.
ucNumTextBox2
=
new
HZH_Controls
.
Controls
.
UCNumTextBox
();
this
.
groupBox4
.
SuspendLayout
();
this
.
groupBox3
.
SuspendLayout
();
this
.
groupBox6
.
SuspendLayout
();
...
...
@@ -87,171 +87,327 @@
this
.
groupBox4
.
TabStop
=
false
;
this
.
groupBox4
.
Text
=
"文本框"
;
//
//
ucTextBoxEx4
//
groupBox3
//
this
.
ucTextBoxEx4
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx4
.
ConerRadius
=
5
;
this
.
ucTextBoxEx4
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx4
.
DecLength
=
2
;
this
.
ucTextBoxEx4
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx4
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx4
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx4
.
InputText
=
""
;
this
.
ucTextBoxEx4
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx4
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx4
.
IsRadius
=
true
;
this
.
ucTextBoxEx4
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx4
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx4
.
IsShowRect
=
true
;
this
.
ucTextBoxEx4
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx4
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderAll_EN
;
this
.
ucTextBoxEx4
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
273
);
this
.
ucTextBoxEx4
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx4
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx4
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx4
.
Name
=
"ucTextBoxEx4"
;
this
.
ucTextBoxEx4
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx4
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx4
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx4
.
PromptText
=
"水印文字"
;
this
.
ucTextBoxEx4
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx4
.
RectWidth
=
1
;
this
.
ucTextBoxEx4
.
RegexPattern
=
""
;
this
.
ucTextBoxEx4
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx4
.
TabIndex
=
2
;
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox4
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox3
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox2
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox1
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton4
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton3
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton2
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton1
);
this
.
groupBox3
.
Location
=
new
System
.
Drawing
.
Point
(
3
,
3
);
this
.
groupBox3
.
Name
=
"groupBox3"
;
this
.
groupBox3
.
Size
=
new
System
.
Drawing
.
Size
(
149
,
327
);
this
.
groupBox3
.
TabIndex
=
3
;
this
.
groupBox3
.
TabStop
=
false
;
this
.
groupBox3
.
Text
=
"单选/复选"
;
//
//
ucTextBoxEx3
//
groupBox6
//
this
.
ucTextBoxEx3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx3
.
ConerRadius
=
5
;
this
.
ucTextBoxEx3
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx3
.
DecLength
=
2
;
this
.
ucTextBoxEx3
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx3
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx3
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx3
.
InputText
=
"手写键盘"
;
this
.
ucTextBoxEx3
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx3
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx3
.
IsRadius
=
true
;
this
.
ucTextBoxEx3
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx3
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx3
.
IsShowRect
=
true
;
this
.
ucTextBoxEx3
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx3
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderHand
;
this
.
ucTextBoxEx3
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
206
);
this
.
ucTextBoxEx3
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx3
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx3
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx3
.
Name
=
"ucTextBoxEx3"
;
this
.
ucTextBoxEx3
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx3
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx3
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx3
.
PromptText
=
""
;
this
.
ucTextBoxEx3
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx3
.
RectWidth
=
1
;
this
.
ucTextBoxEx3
.
RegexPattern
=
""
;
this
.
ucTextBoxEx3
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx3
.
TabIndex
=
2
;
this
.
groupBox6
.
Controls
.
Add
(
this
.
ucComboxGrid1
);
this
.
groupBox6
.
Controls
.
Add
(
this
.
ucComboBox2
);
this
.
groupBox6
.
Controls
.
Add
(
this
.
ucComboBox1
);
this
.
groupBox6
.
Location
=
new
System
.
Drawing
.
Point
(
3
,
461
);
this
.
groupBox6
.
Name
=
"groupBox6"
;
this
.
groupBox6
.
Size
=
new
System
.
Drawing
.
Size
(
618
,
81
);
this
.
groupBox6
.
TabIndex
=
7
;
this
.
groupBox6
.
TabStop
=
false
;
this
.
groupBox6
.
Text
=
"下拉列表"
;
//
//
ucTextBoxEx2
//
groupBox7
//
this
.
ucTextBoxEx2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx2
.
ConerRadius
=
5
;
this
.
ucTextBoxEx2
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx2
.
DecLength
=
2
;
this
.
ucTextBoxEx2
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx2
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx2
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx2
.
InputText
=
"英文键盘"
;
this
.
ucTextBoxEx2
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx2
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx2
.
IsRadius
=
true
;
this
.
ucTextBoxEx2
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx2
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx2
.
IsShowRect
=
true
;
this
.
ucTextBoxEx2
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx2
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderAll_EN
;
this
.
ucTextBoxEx2
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
139
);
this
.
ucTextBoxEx2
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx2
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx2
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx2
.
Name
=
"ucTextBoxEx2"
;
this
.
ucTextBoxEx2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx2
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx2
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx2
.
PromptText
=
""
;
this
.
ucTextBoxEx2
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx2
.
RectWidth
=
1
;
this
.
ucTextBoxEx2
.
RegexPattern
=
""
;
this
.
ucTextBoxEx2
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx2
.
TabIndex
=
2
;
this
.
groupBox7
.
Controls
.
Add
(
this
.
ucDatePickerExt3
);
this
.
groupBox7
.
Controls
.
Add
(
this
.
ucDatePickerExt2
);
this
.
groupBox7
.
Controls
.
Add
(
this
.
ucDatePickerExt1
);
this
.
groupBox7
.
Location
=
new
System
.
Drawing
.
Point
(
3
,
336
);
this
.
groupBox7
.
Name
=
"groupBox7"
;
this
.
groupBox7
.
Size
=
new
System
.
Drawing
.
Size
(
374
,
119
);
this
.
groupBox7
.
TabIndex
=
8
;
this
.
groupBox7
.
TabStop
=
false
;
this
.
groupBox7
.
Text
=
"日历"
;
//
//
ucTextBoxE
x1
//
groupBo
x1
//
this
.
ucTextBoxEx1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx1
.
ConerRadius
=
5
;
this
.
ucTextBoxEx1
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx1
.
DecLength
=
2
;
this
.
ucTextBoxEx1
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx1
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx1
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx1
.
InputText
=
"数字键盘"
;
this
.
ucTextBoxEx1
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx1
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx1
.
IsRadius
=
true
;
this
.
ucTextBoxEx1
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx1
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx1
.
IsShowRect
=
true
;
this
.
ucTextBoxEx1
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx1
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderNum
;
this
.
ucTextBoxEx1
.
Location
=
new
System
.
Drawing
.
Point
(
7
,
72
);
this
.
ucTextBoxEx1
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx1
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx1
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx1
.
Name
=
"ucTextBoxEx1"
;
this
.
ucTextBoxEx1
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx1
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx1
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx1
.
PromptText
=
""
;
this
.
ucTextBoxEx1
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx1
.
RectWidth
=
1
;
this
.
ucTextBoxEx1
.
RegexPattern
=
""
;
this
.
ucTextBoxEx1
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx1
.
TabIndex
=
2
;
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch10
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch5
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch9
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch1
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch6
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch2
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch8
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch3
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch4
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch7
);
this
.
groupBox1
.
Location
=
new
System
.
Drawing
.
Point
(
383
,
174
);
this
.
groupBox1
.
Name
=
"groupBox1"
;
this
.
groupBox1
.
Size
=
new
System
.
Drawing
.
Size
(
238
,
281
);
this
.
groupBox1
.
TabIndex
=
7
;
this
.
groupBox1
.
TabStop
=
false
;
this
.
groupBox1
.
Text
=
"下拉列表"
;
//
// ucNumTextBox1
// groupBox2
//
this
.
groupBox2
.
Controls
.
Add
(
this
.
ucNumTextBox2
);
this
.
groupBox2
.
Controls
.
Add
(
this
.
ucNumTextBox1
);
this
.
groupBox2
.
Location
=
new
System
.
Drawing
.
Point
(
383
,
3
);
this
.
groupBox2
.
Name
=
"groupBox2"
;
this
.
groupBox2
.
Size
=
new
System
.
Drawing
.
Size
(
238
,
165
);
this
.
groupBox2
.
TabIndex
=
7
;
this
.
groupBox2
.
TabStop
=
false
;
this
.
groupBox2
.
Text
=
"下拉列表"
;
//
// ucDatePickerExt3
//
this
.
ucDatePickerExt3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt3
.
ConerRadius
=
5
;
this
.
ucDatePickerExt3
.
CurrentTime
=
new
System
.
DateTime
(
2019
,
8
,
8
,
15
,
17
,
11
,
0
);
this
.
ucDatePickerExt3
.
FillColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt3
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucDatePickerExt3
.
IsRadius
=
true
;
this
.
ucDatePickerExt3
.
IsShowRect
=
true
;
this
.
ucDatePickerExt3
.
Location
=
new
System
.
Drawing
.
Point
(
224
,
62
);
this
.
ucDatePickerExt3
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucDatePickerExt3
.
Name
=
"ucDatePickerExt3"
;
this
.
ucDatePickerExt3
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
0
,
10
,
0
,
0
);
this
.
ucDatePickerExt3
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucDatePickerExt3
.
RectWidth
=
1
;
this
.
ucDatePickerExt3
.
Size
=
new
System
.
Drawing
.
Size
(
128
,
39
);
this
.
ucDatePickerExt3
.
TabIndex
=
0
;
this
.
ucDatePickerExt3
.
TimeFontSize
=
20
;
this
.
ucDatePickerExt3
.
TimeType
=
HZH_Controls
.
Controls
.
DateTimePickerType
.
Time
;
//
// ucDatePickerExt2
//
this
.
ucDatePickerExt2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt2
.
ConerRadius
=
5
;
this
.
ucDatePickerExt2
.
CurrentTime
=
new
System
.
DateTime
(
2019
,
8
,
8
,
15
,
17
,
11
,
0
);
this
.
ucDatePickerExt2
.
FillColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt2
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucDatePickerExt2
.
IsRadius
=
true
;
this
.
ucDatePickerExt2
.
IsShowRect
=
true
;
this
.
ucDatePickerExt2
.
Location
=
new
System
.
Drawing
.
Point
(
7
,
62
);
this
.
ucDatePickerExt2
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucDatePickerExt2
.
Name
=
"ucDatePickerExt2"
;
this
.
ucDatePickerExt2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
0
,
10
,
0
,
0
);
this
.
ucDatePickerExt2
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucDatePickerExt2
.
RectWidth
=
1
;
this
.
ucDatePickerExt2
.
Size
=
new
System
.
Drawing
.
Size
(
210
,
39
);
this
.
ucDatePickerExt2
.
TabIndex
=
0
;
this
.
ucDatePickerExt2
.
TimeFontSize
=
20
;
this
.
ucDatePickerExt2
.
TimeType
=
HZH_Controls
.
Controls
.
DateTimePickerType
.
Date
;
//
// ucDatePickerExt1
//
this
.
ucDatePickerExt1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt1
.
ConerRadius
=
5
;
this
.
ucDatePickerExt1
.
CurrentTime
=
new
System
.
DateTime
(
2019
,
8
,
8
,
15
,
17
,
11
,
0
);
this
.
ucDatePickerExt1
.
FillColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt1
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucDatePickerExt1
.
IsRadius
=
true
;
this
.
ucDatePickerExt1
.
IsShowRect
=
true
;
this
.
ucDatePickerExt1
.
Location
=
new
System
.
Drawing
.
Point
(
7
,
17
);
this
.
ucDatePickerExt1
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucDatePickerExt1
.
Name
=
"ucDatePickerExt1"
;
this
.
ucDatePickerExt1
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
0
,
10
,
0
,
0
);
this
.
ucDatePickerExt1
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucDatePickerExt1
.
RectWidth
=
1
;
this
.
ucDatePickerExt1
.
Size
=
new
System
.
Drawing
.
Size
(
335
,
39
);
this
.
ucDatePickerExt1
.
TabIndex
=
0
;
this
.
ucDatePickerExt1
.
TimeFontSize
=
20
;
this
.
ucDatePickerExt1
.
TimeType
=
HZH_Controls
.
Controls
.
DateTimePickerType
.
DateTime
;
//
// ucSwitch10
//
this
.
ucSwitch10
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch10
.
Checked
=
false
;
this
.
ucSwitch10
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch10
.
FalseTextColr
=
System
.
Drawing
.
Color
.
Green
;
this
.
ucSwitch10
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
173
);
this
.
ucSwitch10
.
Name
=
"ucSwitch10"
;
this
.
ucSwitch10
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch10
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch10
.
TabIndex
=
9
;
this
.
ucSwitch10
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch10
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch10
.
TrueTextColr
=
System
.
Drawing
.
Color
.
Black
;
//
// ucSwitch5
//
this
.
ucSwitch5
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch5
.
Checked
=
true
;
this
.
ucSwitch5
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch5
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch5
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
20
);
this
.
ucSwitch5
.
Name
=
"ucSwitch5"
;
this
.
ucSwitch5
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch5
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch5
.
TabIndex
=
13
;
this
.
ucSwitch5
.
Texts
=
new
string
[
0
];
this
.
ucSwitch5
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch5
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch9
//
this
.
ucSwitch9
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch9
.
Checked
=
true
;
this
.
ucSwitch9
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch9
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch9
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
122
);
this
.
ucSwitch9
.
Name
=
"ucSwitch9"
;
this
.
ucSwitch9
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch9
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch9
.
TabIndex
=
10
;
this
.
ucSwitch9
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch9
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch9
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch1
//
this
.
ucSwitch1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch1
.
Checked
=
true
;
this
.
ucSwitch1
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch1
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch1
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
224
);
this
.
ucSwitch1
.
Name
=
"ucSwitch1"
;
this
.
ucSwitch1
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch1
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Line
;
this
.
ucSwitch1
.
TabIndex
=
18
;
this
.
ucSwitch1
.
Texts
=
new
string
[
0
];
this
.
ucSwitch1
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch1
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch6
//
this
.
ucSwitch6
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch6
.
Checked
=
false
;
this
.
ucSwitch6
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch6
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch6
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
71
);
this
.
ucSwitch6
.
Name
=
"ucSwitch6"
;
this
.
ucSwitch6
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch6
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch6
.
TabIndex
=
11
;
this
.
ucSwitch6
.
Texts
=
new
string
[
0
];
this
.
ucSwitch6
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch6
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch2
//
this
.
ucSwitch2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch2
.
Checked
=
false
;
this
.
ucSwitch2
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch2
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch2
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
224
);
this
.
ucSwitch2
.
Name
=
"ucSwitch2"
;
this
.
ucSwitch2
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch2
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Line
;
this
.
ucSwitch2
.
TabIndex
=
17
;
this
.
ucSwitch2
.
Texts
=
new
string
[
0
];
this
.
ucSwitch2
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch2
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch8
//
this
.
ucSwitch8
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch8
.
Checked
=
false
;
this
.
ucSwitch8
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch8
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch8
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
173
);
this
.
ucSwitch8
.
Name
=
"ucSwitch8"
;
this
.
ucSwitch8
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch8
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch8
.
TabIndex
=
12
;
this
.
ucSwitch8
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch8
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch8
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch3
//
this
.
ucSwitch3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch3
.
Checked
=
true
;
this
.
ucSwitch3
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch3
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch3
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
20
);
this
.
ucSwitch3
.
Name
=
"ucSwitch3"
;
this
.
ucSwitch3
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch3
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch3
.
TabIndex
=
16
;
this
.
ucSwitch3
.
Texts
=
new
string
[
0
];
this
.
ucSwitch3
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch3
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch4
//
this
.
ucSwitch4
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch4
.
Checked
=
false
;
this
.
ucSwitch4
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch4
.
FalseTextColr
=
System
.
Drawing
.
Color
.
White
;
this
.
ucSwitch4
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
71
);
this
.
ucSwitch4
.
Name
=
"ucSwitch4"
;
this
.
ucSwitch4
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch4
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch4
.
TabIndex
=
15
;
this
.
ucSwitch4
.
Texts
=
new
string
[
0
];
this
.
ucSwitch4
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch4
.
TrueTextColr
=
System
.
Drawing
.
Color
.
White
;
//
// ucSwitch7
//
this
.
ucSwitch7
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch7
.
Checked
=
true
;
this
.
ucSwitch7
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch7
.
FalseTextColr
=
System
.
Drawing
.
Color
.
Green
;
this
.
ucSwitch7
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
122
);
this
.
ucSwitch7
.
Name
=
"ucSwitch7"
;
this
.
ucSwitch7
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch7
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch7
.
TabIndex
=
14
;
this
.
ucSwitch7
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch7
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucSwitch7
.
TrueTextColr
=
System
.
Drawing
.
Color
.
Black
;
//
// ucNumTextBox2
//
this
.
ucNumTextBox2
.
Increment
=
new
decimal
(
new
int
[]
{
1
,
0
,
0
,
65536
});
this
.
ucNumTextBox2
.
InputType
=
HZH_Controls
.
TextInputType
.
Number
;
this
.
ucNumTextBox2
.
IsNumCanInput
=
true
;
this
.
ucNumTextBox2
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderNum
;
this
.
ucNumTextBox2
.
Location
=
new
System
.
Drawing
.
Point
(
40
,
90
);
this
.
ucNumTextBox2
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucNumTextBox2
.
MinValue
=
new
decimal
(
new
int
[]
{
0
,
0
,
0
,
0
});
this
.
ucNumTextBox2
.
Name
=
"ucNumTextBox2"
;
this
.
ucNumTextBox2
.
Num
=
new
decimal
(
new
int
[]
{
1
,
0
,
0
,
65536
});
this
.
ucNumTextBox2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
2
);
this
.
ucNumTextBox2
.
Size
=
new
System
.
Drawing
.
Size
(
152
,
44
);
this
.
ucNumTextBox2
.
TabIndex
=
1
;
//
// ucNumTextBox1
//
this
.
ucNumTextBox1
.
Increment
=
new
decimal
(
new
int
[]
{
1
,
...
...
@@ -282,150 +438,7 @@
this
.
ucNumTextBox1
.
Size
=
new
System
.
Drawing
.
Size
(
152
,
44
);
this
.
ucNumTextBox1
.
TabIndex
=
1
;
//
// textBoxTransparent1
//
this
.
textBoxTransparent1
.
BackAlpha
=
10
;
this
.
textBoxTransparent1
.
BackColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
255
)))));
this
.
textBoxTransparent1
.
BorderStyle
=
System
.
Windows
.
Forms
.
BorderStyle
.
None
;
this
.
textBoxTransparent1
.
DecLength
=
2
;
this
.
textBoxTransparent1
.
Font
=
new
System
.
Drawing
.
Font
(
"宋体"
,
13F
);
this
.
textBoxTransparent1
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
textBoxTransparent1
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
30
);
this
.
textBoxTransparent1
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
textBoxTransparent1
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
textBoxTransparent1
.
MyRectangle
=
new
System
.
Drawing
.
Rectangle
(
0
,
0
,
0
,
0
);
this
.
textBoxTransparent1
.
Name
=
"textBoxTransparent1"
;
this
.
textBoxTransparent1
.
OldText
=
null
;
this
.
textBoxTransparent1
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
textBoxTransparent1
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
13F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
textBoxTransparent1
.
PromptText
=
""
;
this
.
textBoxTransparent1
.
RegexPattern
=
""
;
this
.
textBoxTransparent1
.
Size
=
new
System
.
Drawing
.
Size
(
164
,
20
);
this
.
textBoxTransparent1
.
TabIndex
=
0
;
this
.
textBoxTransparent1
.
Text
=
"这是一个透明文本框"
;
//
// groupBox3
//
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox4
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox3
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox2
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucCheckBox1
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton4
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton3
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton2
);
this
.
groupBox3
.
Controls
.
Add
(
this
.
ucRadioButton1
);
this
.
groupBox3
.
Location
=
new
System
.
Drawing
.
Point
(
3
,
3
);
this
.
groupBox3
.
Name
=
"groupBox3"
;
this
.
groupBox3
.
Size
=
new
System
.
Drawing
.
Size
(
149
,
327
);
this
.
groupBox3
.
TabIndex
=
3
;
this
.
groupBox3
.
TabStop
=
false
;
this
.
groupBox3
.
Text
=
"单选/复选"
;
//
// ucCheckBox4
//
this
.
ucCheckBox4
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox4
.
Checked
=
false
;
this
.
ucCheckBox4
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
279
);
this
.
ucCheckBox4
.
Name
=
"ucCheckBox4"
;
this
.
ucCheckBox4
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox4
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox4
.
TabIndex
=
1
;
this
.
ucCheckBox4
.
TextValue
=
"复选框4"
;
//
// ucCheckBox3
//
this
.
ucCheckBox3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox3
.
Checked
=
false
;
this
.
ucCheckBox3
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
242
);
this
.
ucCheckBox3
.
Name
=
"ucCheckBox3"
;
this
.
ucCheckBox3
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox3
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox3
.
TabIndex
=
1
;
this
.
ucCheckBox3
.
TextValue
=
"复选框3"
;
//
// ucCheckBox2
//
this
.
ucCheckBox2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox2
.
Checked
=
true
;
this
.
ucCheckBox2
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
205
);
this
.
ucCheckBox2
.
Name
=
"ucCheckBox2"
;
this
.
ucCheckBox2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox2
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox2
.
TabIndex
=
1
;
this
.
ucCheckBox2
.
TextValue
=
"复选框2"
;
//
// ucCheckBox1
//
this
.
ucCheckBox1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox1
.
Checked
=
true
;
this
.
ucCheckBox1
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
168
);
this
.
ucCheckBox1
.
Name
=
"ucCheckBox1"
;
this
.
ucCheckBox1
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox1
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox1
.
TabIndex
=
1
;
this
.
ucCheckBox1
.
TextValue
=
"复选框1"
;
//
// ucRadioButton4
//
this
.
ucRadioButton4
.
Checked
=
false
;
this
.
ucRadioButton4
.
GroupName
=
null
;
this
.
ucRadioButton4
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
131
);
this
.
ucRadioButton4
.
Name
=
"ucRadioButton4"
;
this
.
ucRadioButton4
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton4
.
TabIndex
=
0
;
this
.
ucRadioButton4
.
TextValue
=
"单选按钮4"
;
//
// ucRadioButton3
//
this
.
ucRadioButton3
.
Checked
=
false
;
this
.
ucRadioButton3
.
GroupName
=
null
;
this
.
ucRadioButton3
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
94
);
this
.
ucRadioButton3
.
Name
=
"ucRadioButton3"
;
this
.
ucRadioButton3
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton3
.
TabIndex
=
0
;
this
.
ucRadioButton3
.
TextValue
=
"单选按钮3"
;
//
// ucRadioButton2
//
this
.
ucRadioButton2
.
Checked
=
false
;
this
.
ucRadioButton2
.
GroupName
=
null
;
this
.
ucRadioButton2
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
57
);
this
.
ucRadioButton2
.
Name
=
"ucRadioButton2"
;
this
.
ucRadioButton2
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton2
.
TabIndex
=
0
;
this
.
ucRadioButton2
.
TextValue
=
"单选按钮2"
;
//
// ucRadioButton1
//
this
.
ucRadioButton1
.
Checked
=
true
;
this
.
ucRadioButton1
.
GroupName
=
null
;
this
.
ucRadioButton1
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
20
);
this
.
ucRadioButton1
.
Name
=
"ucRadioButton1"
;
this
.
ucRadioButton1
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton1
.
TabIndex
=
0
;
this
.
ucRadioButton1
.
TextValue
=
"单选按钮1"
;
//
// groupBox6
//
this
.
groupBox6
.
Controls
.
Add
(
this
.
ucComboxGrid1
);
this
.
groupBox6
.
Controls
.
Add
(
this
.
ucComboBox2
);
this
.
groupBox6
.
Controls
.
Add
(
this
.
ucComboBox1
);
this
.
groupBox6
.
Location
=
new
System
.
Drawing
.
Point
(
3
,
461
);
this
.
groupBox6
.
Name
=
"groupBox6"
;
this
.
groupBox6
.
Size
=
new
System
.
Drawing
.
Size
(
618
,
81
);
this
.
groupBox6
.
TabIndex
=
7
;
this
.
groupBox6
.
TabStop
=
false
;
this
.
groupBox6
.
Text
=
"下拉列表"
;
//
// ucComboxGrid1
// ucComboxGrid1
//
this
.
ucComboxGrid1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucComboxGrid1
.
BackColorExt
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
240
)))),
((
int
)(((
byte
)(
240
)))),
((
int
)(((
byte
)(
240
)))));
...
...
@@ -505,276 +518,283 @@
this
.
ucComboBox1
.
TextValue
=
null
;
this
.
ucComboBox1
.
TriangleColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
//
// groupBox7
//
this
.
groupBox7
.
Controls
.
Add
(
this
.
ucDatePickerExt3
);
this
.
groupBox7
.
Controls
.
Add
(
this
.
ucDatePickerExt2
);
this
.
groupBox7
.
Controls
.
Add
(
this
.
ucDatePickerExt1
);
this
.
groupBox7
.
Location
=
new
System
.
Drawing
.
Point
(
3
,
336
);
this
.
groupBox7
.
Name
=
"groupBox7"
;
this
.
groupBox7
.
Size
=
new
System
.
Drawing
.
Size
(
374
,
119
);
this
.
groupBox7
.
TabIndex
=
8
;
this
.
groupBox7
.
TabStop
=
false
;
this
.
groupBox7
.
Text
=
"日历"
;
// ucTextBoxEx4
//
// ucDatePickerExt3
this
.
ucTextBoxEx4
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx4
.
ConerRadius
=
5
;
this
.
ucTextBoxEx4
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx4
.
DecLength
=
2
;
this
.
ucTextBoxEx4
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx4
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx4
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx4
.
InputText
=
""
;
this
.
ucTextBoxEx4
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx4
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx4
.
IsRadius
=
true
;
this
.
ucTextBoxEx4
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx4
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx4
.
IsShowRect
=
true
;
this
.
ucTextBoxEx4
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx4
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderAll_EN
;
this
.
ucTextBoxEx4
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
273
);
this
.
ucTextBoxEx4
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx4
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx4
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx4
.
Name
=
"ucTextBoxEx4"
;
this
.
ucTextBoxEx4
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx4
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx4
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx4
.
PromptText
=
"水印文字"
;
this
.
ucTextBoxEx4
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx4
.
RectWidth
=
1
;
this
.
ucTextBoxEx4
.
RegexPattern
=
""
;
this
.
ucTextBoxEx4
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx4
.
TabIndex
=
2
;
//
this
.
ucDatePickerExt3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt3
.
ConerRadius
=
5
;
this
.
ucDatePickerExt3
.
CurrentTime
=
new
System
.
DateTime
(
2019
,
8
,
8
,
15
,
17
,
11
,
0
);
this
.
ucDatePickerExt3
.
FillColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt3
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucDatePickerExt3
.
IsRadius
=
true
;
this
.
ucDatePickerExt3
.
IsShowRect
=
true
;
this
.
ucDatePickerExt3
.
Location
=
new
System
.
Drawing
.
Point
(
224
,
62
);
this
.
ucDatePickerExt3
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucDatePickerExt3
.
Name
=
"ucDatePickerExt3"
;
this
.
ucDatePickerExt3
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
0
,
10
,
0
,
0
);
this
.
ucDatePickerExt3
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucDatePickerExt3
.
RectWidth
=
1
;
this
.
ucDatePickerExt3
.
Size
=
new
System
.
Drawing
.
Size
(
128
,
39
);
this
.
ucDatePickerExt3
.
TabIndex
=
0
;
this
.
ucDatePickerExt3
.
TimeFontSize
=
20
;
this
.
ucDatePickerExt3
.
TimeType
=
HZH_Controls
.
Controls
.
DateTimePickerType
.
Time
;
// ucTextBoxEx3
//
// ucDatePickerExt2
this
.
ucTextBoxEx3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx3
.
ConerRadius
=
5
;
this
.
ucTextBoxEx3
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx3
.
DecLength
=
2
;
this
.
ucTextBoxEx3
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx3
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx3
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx3
.
InputText
=
"手写键盘"
;
this
.
ucTextBoxEx3
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx3
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx3
.
IsRadius
=
true
;
this
.
ucTextBoxEx3
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx3
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx3
.
IsShowRect
=
true
;
this
.
ucTextBoxEx3
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx3
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderHand
;
this
.
ucTextBoxEx3
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
206
);
this
.
ucTextBoxEx3
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx3
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx3
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx3
.
Name
=
"ucTextBoxEx3"
;
this
.
ucTextBoxEx3
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx3
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx3
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx3
.
PromptText
=
""
;
this
.
ucTextBoxEx3
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx3
.
RectWidth
=
1
;
this
.
ucTextBoxEx3
.
RegexPattern
=
""
;
this
.
ucTextBoxEx3
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx3
.
TabIndex
=
2
;
//
this
.
ucDatePickerExt2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt2
.
ConerRadius
=
5
;
this
.
ucDatePickerExt2
.
CurrentTime
=
new
System
.
DateTime
(
2019
,
8
,
8
,
15
,
17
,
11
,
0
);
this
.
ucDatePickerExt2
.
FillColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt2
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucDatePickerExt2
.
IsRadius
=
true
;
this
.
ucDatePickerExt2
.
IsShowRect
=
true
;
this
.
ucDatePickerExt2
.
Location
=
new
System
.
Drawing
.
Point
(
7
,
62
);
this
.
ucDatePickerExt2
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucDatePickerExt2
.
Name
=
"ucDatePickerExt2"
;
this
.
ucDatePickerExt2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
0
,
10
,
0
,
0
);
this
.
ucDatePickerExt2
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucDatePickerExt2
.
RectWidth
=
1
;
this
.
ucDatePickerExt2
.
Size
=
new
System
.
Drawing
.
Size
(
210
,
39
);
this
.
ucDatePickerExt2
.
TabIndex
=
0
;
this
.
ucDatePickerExt2
.
TimeFontSize
=
20
;
this
.
ucDatePickerExt2
.
TimeType
=
HZH_Controls
.
Controls
.
DateTimePickerType
.
Date
;
// ucTextBoxEx2
//
// ucDatePickerExt1
//
this
.
ucDatePickerExt1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt1
.
ConerRadius
=
5
;
this
.
ucDatePickerExt1
.
CurrentTime
=
new
System
.
DateTime
(
2019
,
8
,
8
,
15
,
17
,
11
,
0
);
this
.
ucDatePickerExt1
.
FillColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucDatePickerExt1
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucDatePickerExt1
.
IsRadius
=
true
;
this
.
ucDatePickerExt1
.
IsShowRect
=
true
;
this
.
ucDatePickerExt1
.
Location
=
new
System
.
Drawing
.
Point
(
7
,
17
);
this
.
ucDatePickerExt1
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucDatePickerExt1
.
Name
=
"ucDatePickerExt1"
;
this
.
ucDatePickerExt1
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
0
,
10
,
0
,
0
);
this
.
ucDatePickerExt1
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucDatePickerExt1
.
RectWidth
=
1
;
this
.
ucDatePickerExt1
.
Size
=
new
System
.
Drawing
.
Size
(
335
,
39
);
this
.
ucDatePickerExt1
.
TabIndex
=
0
;
this
.
ucDatePickerExt1
.
TimeFontSize
=
20
;
this
.
ucDatePickerExt1
.
TimeType
=
HZH_Controls
.
Controls
.
DateTimePickerType
.
DateTime
;
//
// ucSwitch10
//
this
.
ucSwitch10
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch10
.
Checked
=
false
;
this
.
ucSwitch10
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch10
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
173
);
this
.
ucSwitch10
.
Name
=
"ucSwitch10"
;
this
.
ucSwitch10
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch10
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch10
.
TabIndex
=
9
;
this
.
ucSwitch10
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch10
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
//
// ucSwitch9
//
this
.
ucSwitch9
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch9
.
Checked
=
true
;
this
.
ucSwitch9
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch9
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
122
);
this
.
ucSwitch9
.
Name
=
"ucSwitch9"
;
this
.
ucSwitch9
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch9
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch9
.
TabIndex
=
10
;
this
.
ucSwitch9
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch9
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
//
// ucSwitch6
//
this
.
ucSwitch6
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch6
.
Checked
=
false
;
this
.
ucSwitch6
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch6
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
71
);
this
.
ucSwitch6
.
Name
=
"ucSwitch6"
;
this
.
ucSwitch6
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch6
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch6
.
TabIndex
=
11
;
this
.
ucSwitch6
.
Texts
=
new
string
[
0
];
this
.
ucSwitch6
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx2
.
ConerRadius
=
5
;
this
.
ucTextBoxEx2
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx2
.
DecLength
=
2
;
this
.
ucTextBoxEx2
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx2
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx2
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx2
.
InputText
=
"英文键盘"
;
this
.
ucTextBoxEx2
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx2
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx2
.
IsRadius
=
true
;
this
.
ucTextBoxEx2
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx2
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx2
.
IsShowRect
=
true
;
this
.
ucTextBoxEx2
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx2
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderAll_EN
;
this
.
ucTextBoxEx2
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
139
);
this
.
ucTextBoxEx2
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx2
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx2
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx2
.
Name
=
"ucTextBoxEx2"
;
this
.
ucTextBoxEx2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx2
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx2
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx2
.
PromptText
=
""
;
this
.
ucTextBoxEx2
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx2
.
RectWidth
=
1
;
this
.
ucTextBoxEx2
.
RegexPattern
=
""
;
this
.
ucTextBoxEx2
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx2
.
TabIndex
=
2
;
//
// uc
Switch8
// uc
TextBoxEx1
//
this
.
ucSwitch8
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch8
.
Checked
=
false
;
this
.
ucSwitch8
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch8
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
173
);
this
.
ucSwitch8
.
Name
=
"ucSwitch8"
;
this
.
ucSwitch8
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch8
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch8
.
TabIndex
=
12
;
this
.
ucSwitch8
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch8
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucTextBoxEx1
.
ConerRadius
=
5
;
this
.
ucTextBoxEx1
.
Cursor
=
System
.
Windows
.
Forms
.
Cursors
.
IBeam
;
this
.
ucTextBoxEx1
.
DecLength
=
2
;
this
.
ucTextBoxEx1
.
FillColor
=
System
.
Drawing
.
Color
.
Empty
;
this
.
ucTextBoxEx1
.
FocusBorderColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucTextBoxEx1
.
Font
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
18F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx1
.
InputText
=
"数字键盘"
;
this
.
ucTextBoxEx1
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
ucTextBoxEx1
.
IsFocusColor
=
true
;
this
.
ucTextBoxEx1
.
IsRadius
=
true
;
this
.
ucTextBoxEx1
.
IsShowClearBtn
=
true
;
this
.
ucTextBoxEx1
.
IsShowKeyboard
=
true
;
this
.
ucTextBoxEx1
.
IsShowRect
=
true
;
this
.
ucTextBoxEx1
.
IsShowSearchBtn
=
false
;
this
.
ucTextBoxEx1
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderNum
;
this
.
ucTextBoxEx1
.
Location
=
new
System
.
Drawing
.
Point
(
7
,
72
);
this
.
ucTextBoxEx1
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
,
5
,
4
,
5
);
this
.
ucTextBoxEx1
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucTextBoxEx1
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
ucTextBoxEx1
.
Name
=
"ucTextBoxEx1"
;
this
.
ucTextBoxEx1
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
5
);
this
.
ucTextBoxEx1
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
ucTextBoxEx1
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
15F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
ucTextBoxEx1
.
PromptText
=
""
;
this
.
ucTextBoxEx1
.
RectColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))),
((
int
)(((
byte
)(
220
)))));
this
.
ucTextBoxEx1
.
RectWidth
=
1
;
this
.
ucTextBoxEx1
.
RegexPattern
=
""
;
this
.
ucTextBoxEx1
.
Size
=
new
System
.
Drawing
.
Size
(
195
,
42
);
this
.
ucTextBoxEx1
.
TabIndex
=
2
;
//
//
ucSwitch5
//
textBoxTransparent1
//
this
.
ucSwitch5
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch5
.
Checked
=
true
;
this
.
ucSwitch5
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch5
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
20
);
this
.
ucSwitch5
.
Name
=
"ucSwitch5"
;
this
.
ucSwitch5
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch5
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Quadrilateral
;
this
.
ucSwitch5
.
TabIndex
=
13
;
this
.
ucSwitch5
.
Texts
=
new
string
[
0
];
this
.
ucSwitch5
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
textBoxTransparent1
.
BackAlpha
=
10
;
this
.
textBoxTransparent1
.
BackColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
255
)))));
this
.
textBoxTransparent1
.
BorderStyle
=
System
.
Windows
.
Forms
.
BorderStyle
.
None
;
this
.
textBoxTransparent1
.
DecLength
=
2
;
this
.
textBoxTransparent1
.
Font
=
new
System
.
Drawing
.
Font
(
"宋体"
,
13F
);
this
.
textBoxTransparent1
.
InputType
=
HZH_Controls
.
TextInputType
.
NotControl
;
this
.
textBoxTransparent1
.
Location
=
new
System
.
Drawing
.
Point
(
6
,
30
);
this
.
textBoxTransparent1
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
textBoxTransparent1
.
MinValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
-
2147483648
});
this
.
textBoxTransparent1
.
MyRectangle
=
new
System
.
Drawing
.
Rectangle
(
0
,
0
,
0
,
0
);
this
.
textBoxTransparent1
.
Name
=
"textBoxTransparent1"
;
this
.
textBoxTransparent1
.
OldText
=
null
;
this
.
textBoxTransparent1
.
PromptColor
=
System
.
Drawing
.
Color
.
Gray
;
this
.
textBoxTransparent1
.
PromptFont
=
new
System
.
Drawing
.
Font
(
"微软雅黑"
,
13F
,
System
.
Drawing
.
FontStyle
.
Regular
,
System
.
Drawing
.
GraphicsUnit
.
Pixel
);
this
.
textBoxTransparent1
.
PromptText
=
""
;
this
.
textBoxTransparent1
.
RegexPattern
=
""
;
this
.
textBoxTransparent1
.
Size
=
new
System
.
Drawing
.
Size
(
164
,
20
);
this
.
textBoxTransparent1
.
TabIndex
=
0
;
this
.
textBoxTransparent1
.
Text
=
"这是一个透明文本框"
;
//
// uc
Switch7
// uc
CheckBox4
//
this
.
ucSwitch7
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch7
.
Checked
=
true
;
this
.
ucSwitch7
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch7
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
122
);
this
.
ucSwitch7
.
Name
=
"ucSwitch7"
;
this
.
ucSwitch7
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch7
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch7
.
TabIndex
=
14
;
this
.
ucSwitch7
.
Texts
=
new
string
[]
{
"确定"
,
"取消"
};
this
.
ucSwitch7
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucCheckBox4
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox4
.
Checked
=
false
;
this
.
ucCheckBox4
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
279
);
this
.
ucCheckBox4
.
Name
=
"ucCheckBox4"
;
this
.
ucCheckBox4
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox4
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox4
.
TabIndex
=
1
;
this
.
ucCheckBox4
.
TextValue
=
"复选框4"
;
//
// uc
Switch4
// uc
CheckBox3
//
this
.
ucSwitch4
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch4
.
Checked
=
false
;
this
.
ucSwitch4
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch4
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
71
);
this
.
ucSwitch4
.
Name
=
"ucSwitch4"
;
this
.
ucSwitch4
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch4
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch4
.
TabIndex
=
15
;
this
.
ucSwitch4
.
Texts
=
new
string
[
0
];
this
.
ucSwitch4
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucCheckBox3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox3
.
Checked
=
false
;
this
.
ucCheckBox3
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
242
);
this
.
ucCheckBox3
.
Name
=
"ucCheckBox3"
;
this
.
ucCheckBox3
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox3
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox3
.
TabIndex
=
1
;
this
.
ucCheckBox3
.
TextValue
=
"复选框3"
;
//
// uc
Switch3
// uc
CheckBox2
//
this
.
ucSwitch3
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch3
.
Checked
=
true
;
this
.
ucSwitch3
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch3
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
20
);
this
.
ucSwitch3
.
Name
=
"ucSwitch3"
;
this
.
ucSwitch3
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch3
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Ellipse
;
this
.
ucSwitch3
.
TabIndex
=
16
;
this
.
ucSwitch3
.
Texts
=
new
string
[
0
];
this
.
ucSwitch3
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucCheckBox2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox2
.
Checked
=
true
;
this
.
ucCheckBox2
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
205
);
this
.
ucCheckBox2
.
Name
=
"ucCheckBox2"
;
this
.
ucCheckBox2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox2
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox2
.
TabIndex
=
1
;
this
.
ucCheckBox2
.
TextValue
=
"复选框2"
;
//
// uc
Switch2
// uc
CheckBox1
//
this
.
ucSwitch2
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch2
.
Checked
=
false
;
this
.
ucSwitch2
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch2
.
Location
=
new
System
.
Drawing
.
Point
(
136
,
224
);
this
.
ucSwitch2
.
Name
=
"ucSwitch2"
;
this
.
ucSwitch2
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch2
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Line
;
this
.
ucSwitch2
.
TabIndex
=
17
;
this
.
ucSwitch2
.
Texts
=
new
string
[
0
];
this
.
ucSwitch2
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucCheckBox1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucCheckBox1
.
Checked
=
true
;
this
.
ucCheckBox1
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
168
);
this
.
ucCheckBox1
.
Name
=
"ucCheckBox1"
;
this
.
ucCheckBox1
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
1
);
this
.
ucCheckBox1
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucCheckBox1
.
TabIndex
=
1
;
this
.
ucCheckBox1
.
TextValue
=
"复选框1"
;
//
// uc
Switch1
// uc
RadioButton4
//
this
.
ucSwitch1
.
BackColor
=
System
.
Drawing
.
Color
.
Transparent
;
this
.
ucSwitch1
.
Checked
=
true
;
this
.
ucSwitch1
.
FalseColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))),
((
int
)(((
byte
)(
189
)))));
this
.
ucSwitch1
.
Location
=
new
System
.
Drawing
.
Point
(
22
,
224
);
this
.
ucSwitch1
.
Name
=
"ucSwitch1"
;
this
.
ucSwitch1
.
Size
=
new
System
.
Drawing
.
Size
(
86
,
34
);
this
.
ucSwitch1
.
SwitchType
=
HZH_Controls
.
Controls
.
SwitchType
.
Line
;
this
.
ucSwitch1
.
TabIndex
=
18
;
this
.
ucSwitch1
.
Texts
=
new
string
[
0
];
this
.
ucSwitch1
.
TrueColor
=
System
.
Drawing
.
Color
.
FromArgb
(((
int
)(((
byte
)(
255
)))),
((
int
)(((
byte
)(
77
)))),
((
int
)(((
byte
)(
59
)))));
this
.
ucRadioButton4
.
Checked
=
false
;
this
.
ucRadioButton4
.
GroupName
=
null
;
this
.
ucRadioButton4
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
131
);
this
.
ucRadioButton4
.
Name
=
"ucRadioButton4"
;
this
.
ucRadioButton4
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton4
.
TabIndex
=
0
;
this
.
ucRadioButton4
.
TextValue
=
"单选按钮4"
;
//
//
groupBox1
//
ucRadioButton3
//
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch10
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch5
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch9
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch1
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch6
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch2
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch8
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch3
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch4
);
this
.
groupBox1
.
Controls
.
Add
(
this
.
ucSwitch7
);
this
.
groupBox1
.
Location
=
new
System
.
Drawing
.
Point
(
383
,
174
);
this
.
groupBox1
.
Name
=
"groupBox1"
;
this
.
groupBox1
.
Size
=
new
System
.
Drawing
.
Size
(
238
,
281
);
this
.
groupBox1
.
TabIndex
=
7
;
this
.
groupBox1
.
TabStop
=
false
;
this
.
groupBox1
.
Text
=
"下拉列表"
;
this
.
ucRadioButton3
.
Checked
=
false
;
this
.
ucRadioButton3
.
GroupName
=
null
;
this
.
ucRadioButton3
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
94
);
this
.
ucRadioButton3
.
Name
=
"ucRadioButton3"
;
this
.
ucRadioButton3
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton3
.
TabIndex
=
0
;
this
.
ucRadioButton3
.
TextValue
=
"单选按钮3"
;
//
//
groupBox
2
//
ucRadioButton
2
//
this
.
groupBox2
.
Controls
.
Add
(
this
.
ucNumTextBox2
);
this
.
groupBox2
.
Controls
.
Add
(
this
.
ucNumTextBox1
);
this
.
groupBox2
.
Location
=
new
System
.
Drawing
.
Point
(
383
,
3
);
this
.
groupBox2
.
Name
=
"groupBox2"
;
this
.
groupBox2
.
Size
=
new
System
.
Drawing
.
Size
(
238
,
165
);
this
.
groupBox2
.
TabIndex
=
7
;
this
.
groupBox2
.
TabStop
=
false
;
this
.
groupBox2
.
Text
=
"下拉列表"
;
this
.
ucRadioButton2
.
Checked
=
false
;
this
.
ucRadioButton2
.
GroupName
=
null
;
this
.
ucRadioButton2
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
57
);
this
.
ucRadioButton2
.
Name
=
"ucRadioButton2"
;
this
.
ucRadioButton2
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton2
.
TabIndex
=
0
;
this
.
ucRadioButton2
.
TextValue
=
"单选按钮2"
;
//
// uc
NumTextBox2
// uc
RadioButton1
//
this
.
ucNumTextBox2
.
Increment
=
new
decimal
(
new
int
[]
{
1
,
0
,
0
,
65536
});
this
.
ucNumTextBox2
.
InputType
=
HZH_Controls
.
TextInputType
.
Number
;
this
.
ucNumTextBox2
.
IsNumCanInput
=
true
;
this
.
ucNumTextBox2
.
KeyBoardType
=
HZH_Controls
.
Controls
.
KeyBoardType
.
UCKeyBorderNum
;
this
.
ucNumTextBox2
.
Location
=
new
System
.
Drawing
.
Point
(
40
,
90
);
this
.
ucNumTextBox2
.
MaxValue
=
new
decimal
(
new
int
[]
{
1000000
,
0
,
0
,
0
});
this
.
ucNumTextBox2
.
MinValue
=
new
decimal
(
new
int
[]
{
0
,
0
,
0
,
0
});
this
.
ucNumTextBox2
.
Name
=
"ucNumTextBox2"
;
this
.
ucNumTextBox2
.
Num
=
new
decimal
(
new
int
[]
{
1
,
0
,
0
,
65536
});
this
.
ucNumTextBox2
.
Padding
=
new
System
.
Windows
.
Forms
.
Padding
(
2
);
this
.
ucNumTextBox2
.
Size
=
new
System
.
Drawing
.
Size
(
152
,
44
);
this
.
ucNumTextBox2
.
TabIndex
=
1
;
this
.
ucRadioButton1
.
Checked
=
true
;
this
.
ucRadioButton1
.
GroupName
=
null
;
this
.
ucRadioButton1
.
Location
=
new
System
.
Drawing
.
Point
(
17
,
20
);
this
.
ucRadioButton1
.
Name
=
"ucRadioButton1"
;
this
.
ucRadioButton1
.
Size
=
new
System
.
Drawing
.
Size
(
126
,
30
);
this
.
ucRadioButton1
.
TabIndex
=
0
;
this
.
ucRadioButton1
.
TextValue
=
"单选按钮1"
;
//
// UCTestForms
//
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论