码迷,mamicode.com
首页 > 其他好文 > 详细

DevExpress Form那些事儿

时间:2014-08-15 09:28:07      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:winform   style   blog   color   os   strong   for   ar   

1:设置子窗体依附父窗体

 首先将父窗体的属性中  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 :  编写代码 

bubuko.com,布布扣
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  }
bubuko.com,布布扣

 

未完。。。。待续。

DevExpress Form那些事儿,布布扣,bubuko.com

DevExpress Form那些事儿

标签:winform   style   blog   color   os   strong   for   ar   

原文地址:http://www.cnblogs.com/DeepLearing/p/3887604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!