DevExpress 中 WaitForm 使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DevExpress 中 WaitForm 使用相关的知识,希望对你有一定的参考价值。
step1:
在程序中拖入: splashScreenManager1 控件
在需要处理的地方 使用以下语句来打开 WaitForm窗体(当然需要在 splashScreenManager1控件中绑定一个 WaitForm窗体(自己添加或者直接在这个控件属性里就可以添加))
step2:
splashScreenManager1.ShowWaitForm();
step3:
在过程可以通过以下语句来更改运行过程中的 WaitForm的 Caption 和 Msg
splashScreenManager1.SetWaitFormCaption("请稍后,正在加载中...."); // 标题 splashScreenManager1.SetWaitFormDescription("正在初始化....."); // 信息
step4:
最后通过以下语句来关闭 WaitForm
splashScreenManager1.CloseWaitForm();
注意: 第三步最好开启另一个线程来操作. 或者添加 Application.DoEvents(); 来保证 WaitForm界面 刷新流畅
以上是关于DevExpress 中 WaitForm 使用的主要内容,如果未能解决你的问题,请参考以下文章
Devexpress中DXValidationProvider的基本使用方法