1、文本控件
(1)标签Label
(2)按钮Button
(3)文本框TextBox
(4)有格式文本RichTextBox
2、Label
System.Windows.Forms.Label
设置:属性面板,代码
Size指整个窗体外边框的大小
ClientSize指窗体内边框大小
Random(min,max)能取下界,不能取上界
3、Button
System.Windows.Forms.Button
要想关闭所有的窗体,我们只需要关闭主窗体即可
Form1 fm = new Form1();
fm.Close();
此处我们又新建了一个form实例,并非已经打开的form1
解决问题:获取当前打开的实例
实现方法:静态存储,全局共享
4、TextBox
System.Windows.Forms.TextBox
Multiline多行显示
CharacterCasing字母大小写
MaxLength最大字符长度,单位char
AcceptsReturn接受回车,默认True,False多行显示配合AcceptButton
PassWordChar密码掩盖符
ReadOnly只读
ScrollBars滚动条
WordWrap控制换行,默认True
Text文本内容
6、RichTextBox
具有格式特征