在VB6中创建MDI窗体的方法如下:
(1)添加MDI主窗体
新建一个VB6工程。在“工程资源管理器”中点鼠标右键调出菜单,添加-->添加MDI窗体
(2)添加MDI子窗体
将Form1的MDIChild属性设置为True
(3)运行效果
(4)添加窗体Form2,Form3,将这些窗体的属性MDIChild属性设置为True
(5)修改MDIForm1窗体代码
Option ExplicitPrivate Sub MDIForm_Load()
'显示子窗体Form2和Form3
Form2.Show
Form3.Show
End Sub
用代码向窗体添加控件步骤如下
(1)实例化一个控件;
(2)设置控件实例属性;
(3)将控件实例添加到窗体的Controls集合中
【示例】用代码向窗体添加一个命令按钮,单击这个按钮关闭窗口并退出
(1)在Visual Studio中新建一个“Windos 窗体应用程序”
(2)窗体代码Form1.cs如下:
using Systemusing System.Collections.Generic
using System.Windows.Forms
using System.Drawing
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent()
//实例化一个命令按钮
Button btn = new Button()
//设置命令按钮的属性
btn.Location = new Point(50, 50)
btn.Size = new Size(80, 25)
btn.Text = "退出"
btn.Click += btn_Click
//添加到窗口的Controls集合中
this.Controls.Add(btn)
}
void btn_Click(object sender, EventArgs e)
{
this.Close()
}
}
}
(3)运行效果
窗体启动后
点击“退出”按钮后,窗口关闭。
点击Form2 窗体 右侧有属性栏,可以编辑 窗口标题 是Text属性或者再Form2Load中写,this.Text = "你所需要的标题"
在form2的代码中this就是form2窗体 点后面的东西就是属性
Form2 frm2 = new Form2()
this.Hide()
frm2.Text = "所需要的标题"
frm2.Show()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)