您好,登錄后才能下訂單哦!
這篇文章主要講解了“DevExpress WinForms初始屏幕管理器序列化的細節有哪些”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“DevExpress WinForms初始屏幕管理器序列化的細節有哪些”吧!
激活啟動表單是Splash Screen或None
SplashScreenManager類的實例在主窗體的InitializeComponent方法中聲明為局部變量,這種序列化方法可確保在所有其他組件之前初始化啟動畫面管理器,并在您的表單開始的第一刻啟動選定的啟動畫面。 但是請注意,您將無法處理在InitializeComponent方法中聲明SplashScreenManager組件的本地實例。
這里是在這種情況下可以使用的方法。
若要手動打開和關閉啟動窗體,請使用SplashScreenManager類提供的靜態方法。
要與當前顯示的初始窗體交互,請使用SplashScreenManager.Default對象提供的非靜態方法。
C#
// Display a Wait Form SplashScreenManager.ShowForm(typeof(WaitForm2)); //... //Change its caption SplashScreenManager.Default.SetWaitFormCaption("new caption"); //... //Close the Wait Form SplashScreenManager.CloseForm();
VB.NET
' Display a Wait Form SplashScreenManager.ShowForm(GetType(WaitForm2)) '... 'Change its caption SplashScreenManager.Default.SetWaitFormCaption("new caption") '... 'Close the Wait Form SplashScreenManager.CloseForm()
激活啟動表單是一個等待表單
SplashScreenManager類的實例被聲明為表單的局部變量,而不是InitializeComponent方法。 在這種情況下,您可以使用SplashScreenManager的非靜態方法(可通過SplashScreenManager實例訪問)打開,關閉所選的等待表單并與之交互。 這些方法是:SplashScreenManager.ShowWaitForm, SplashScreenManager.CloseWaitForm, SplashScreenManager.SetWaitFormCaption, SplashScreenManager.SetWaitFormDescription and SplashScreenManager.SendCommand。
感謝各位的閱讀,以上就是“DevExpress WinForms初始屏幕管理器序列化的細節有哪些”的內容了,經過本文的學習后,相信大家對DevExpress WinForms初始屏幕管理器序列化的細節有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。