1.#MDI(多文檔界面)
創(chuàng)建新項目form1修改屬性IsMdiContainer修改為true
(1)Mdi多文檔界面創(chuàng)建
(2)添加控件
menustrip1
toolstrip1
statusStrip1
2.在解決資源方案管理器中
WindowsFormsApplication3
新建Form2
3.點擊form1編寫下列代碼 創(chuàng)建子窗口
private void Form1_Load(object sender, EventArgs e)
{
Form2 frmManin = new Form2();
frmManin.MdiParent = this;
frmManin.Show();
}
子窗口創(chuàng)建完成圖
并可以在你所創(chuàng)建的子窗口toolstrip1控件中輸入你想要的菜單名
4.menustrip1點擊屬性text文件(&f)設置快捷鍵
5.menustrip1點擊屬性DropDownitems集合就會出現(xiàn)
在集合當中添加Text文本下劃線
添加完成
通過menustrip文件新建打開多個子窗口
雙擊form1嗡髓,menustrip文件新建窗口添加以下代碼
private void 新建ToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 frmManin = new Form2();
frmManin.MdiParent = this;
frmManin.Show();
}
完善
(1)Form1背景圖
屬性backgroundlmage添加背景圖
(2)窗口中間顯示form1 form2屬性startposition 修改為 centerparent
(3)修改toolstrip圖標大小點擊右鍵屬性選擇imagescalingsize修改值