MDI窗体容器 权限 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using WindowsFormsApplication1.App_Code; namespace Win
一.MDI窗体容器 MDi窗体是装Form的容器.平常Form(窗体)就是平常展示的最高级别,但是MDI比Form还高级.它可以让其它窗体在它的内部打开,无法超出它的范围 1 创建:将某个窗体的属性:IsMdiContainer设置为true 2 将Form放入MdI:窗体对象名.MdiParent = this; //此Form1是MDI容器.点击Form1,出现Form2 using System; using System.Collections.Generic; using System