第4章 Windows窗体

4.1 创建 Windows 应用程序


第4章 Windows窗体_第1张图片



4.2 使用 Form 窗体

第4章 Windows窗体_第2张图片

窗口常用属性

name:窗体对象的名字,用以在代码中进行标识

backcolor:窗体的背景色

icon:指示窗体的图标。这在窗体的系统菜单框中显示,以及当窗体最小化时显示

backgroundimage:窗体的背景图像

formborderstyle:窗体显示的边框样式,有7个可选的值,默认为sizable

maximizebox:确定窗体标题栏的右上角释放有最大化框,默认为true


事件:

load:加载事件

text=“”;可以修改窗体的标题



4.3 消息框介绍 

第4章 Windows窗体_第3张图片

message.box.show(要显示的字符串(中间的),消息框的标题,消息框按钮messag.box.button.okcancel,

消息框的图标message.box.icon.information)


第4章 Windows窗体_第4张图片
message.box.icon


formclosing 事件 就是点右上角×的时候自动弹出来的东西

弹出自定义对话框 dialogresult


4.4 多窗体应用 



第4章 Windows窗体_第5张图片

窗体的相互调用:


Form1 form1=new From1();

form1.show();<显示窗体,非模式窗体>


Form2 form2=new From2();

form2.showdialog();<显示窗体,模式窗体   :窗体显示时,不能操作系统中的其他窗体>

hide()隐藏窗体

close()关闭窗体  ←只会关闭当前窗体 

application.exit()关闭整个应用程序

第4章 Windows窗体_第6张图片
第4章 Windows窗体_第7张图片
第4章 Windows窗体_第8张图片
第4章 Windows窗体_第9张图片
第4章 Windows窗体_第10张图片

mess

你可能感兴趣的:(第4章 Windows窗体)