摘要: 主窗体: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Text... 阅读全文
posted @ 2018-01-06 20:33 (时光)光阴飞逝 阅读(8511) 评论(0) 推荐(0)
摘要: Form2 form = new Form2(); //实例化要添加的窗体 form.Show();//显示 form.TopLevel = false; //要将这个顶级窗口设置false panel1.Controls.Add(form);//添加到Pannel中 pannel在主窗体中 阅读全文
posted @ 2018-01-06 13:45 (时光)光阴飞逝 阅读(740) 评论(0) 推荐(0)