标签:winform style blog color os strong for ar
首先将父窗体的属性中 IsMdiContainer 设置为 True , 就是将窗体设置为 MDI窗体。子窗体和父窗体都是继承自RibbonForm的。
代码如下 :
1 MainList main = new MainList(); 2 main.MdiParent = this; 3 main.Show();
2:设置窗体加载框.
1 : 添加 SplashScreenManager ,
2 : 设置 SplashScreenManager 的 Active Splash Form 引用的窗体 winformwait1.
3 : 编写代码
1 public void SqlToResult(string sql) 2 { 3 splashScreenManager1.ShowWaitForm(); 4 DataTable dt = SQLiteHelper.ExecuteTable(sql); 5 gridControl1.DataSource = dt; 6 GetModifyGridView(dt); 7 splashScreenManager1.CloseWaitForm(); 8 }
未完。。。。待续。
DevExpress Form那些事儿,布布扣,bubuko.com
标签:winform style blog color os strong for ar
原文地址:http://www.cnblogs.com/DeepLearing/p/3887604.html