- 积分
- 1
- 在线时间
- 5 小时
- 主题
- 0
- 注册时间
- 2014-12-5
- 帖子
- 9
- 最后登录
- 2015-6-25
- 帖子
- 9
- 软币
- 109
- 在线时间
- 5 小时
- 注册时间
- 2014-12-5
|
发表于 2014-12-5 15:23:28
|
显示全部楼层
本帖最后由 47082919 于 2014-12-5 15:25 编辑
mdi主窗体,放一个panel,dock设为left,panel上放outlook bar
把窗体的类名称加载到outlook bar中,点击的时候动态创建窗体,并设置parent为mdi的主窗体
创建窗体:
string classname = 你窗体的类名称;
Type t = Type.GetType(classname);
if (t == null) throw new Exception(@"ClassName错误!");
object obj = t.InvokeMember(null, BindingFlags.CreateInstance, null, null, null);
From childrenWindow = obj as Form;
childrenWindow.MdiParent = this;
childrenWindow.Show();
|
评分
-
查看全部评分
|