文檔首頁>>DevExpress使用教程>>DevExpress使用教程:Form窗體經(jīng)驗小結(jié)
DevExpress使用教程:Form窗體經(jīng)驗小結(jié)
本文總結(jié)了 DevExpress Form 窗體的一些使用心得:
1、設(shè)置子窗體依附父窗體
首先將父窗體的屬性中 IsMdiContainer 設(shè)置為 True , 就是將窗體設(shè)置為 MDI窗體。子窗體和父窗體都是繼承自RibbonForm的。
代碼如下:
1 MainList main = new MainList(); 2 main.MdiParent = this; 3 main.Show();
2、設(shè)置窗體加載框.
1 .添加 SplashScreenManager ,
2 .設(shè)置 SplashScreenManager 的 Active Splash Form 引用的窗體 winformwait1.
3 .編寫代碼
public void SqlToResult(string sql) { splashScreenManager1.ShowWaitForm(); DataTable dt = SQLiteHelper.ExecuteTable(sql); gridControl1.DataSource = dt; GetModifyGridView(dt); splashScreenManager1.CloseWaitForm(); }
3、當(dāng)父窗體的IsMdiContainer設(shè)置為True時,子窗體自適應(yīng)父窗體的大小
將子窗體的WindowState 設(shè)置為Maximized .
4、RibbonForm 去除左上角的三角
屬性 —> ShowToolbarCustomizeItem : False
代碼 :
RibbonControl.ShowToolbarCustomizeItem = False
5 、DevExpress 去除DX圖標(biāo)或更換為自己的圖標(biāo)
RibbonFrom - > 屬性 -> ApplicationIcon : 設(shè)置為自己的即可.或者為None