文檔首頁>>DevExpress WinForm中文手冊>>初始表單位置
初始表單位置
默認(rèn)情況下,初始表單的起始位置指定如下:
- SplashScreens顯示在屏幕中央。
- WaitForms以其父表單為中心,啟動界面管理器嘗試自動找到父表單。
- 通過靜態(tài)SplashScreenManager.ShowImage方法調(diào)用的Splash圖像的顯示方式與WaitForms相同。
您可以覆蓋默認(rèn)的起始位置,如下所示:
- 若要為啟動界面(即“啟動界面管理器”的“激活初始表單”)指定手動開始位置(請參閱SplashScreenManager.ActiveSplashFormTypeInfo),請將SplashScreenManager.SplashFormStartPosition屬性設(shè)置為Manual,然后通過SplashScreenManager.SplashFormLocation屬性指定起點。
- 要為不是“啟動界面管理器”的“激活初始表單”的初始表單指定手動開始位置,請使用SplashScreenManager.ShowForm和SplashScreenManager.ShowImage方法重載提供的最后兩個參數(shù):
C# :
public static void ShowForm(Form parentForm, Type splashFormType, bool useFadeIn, bool useFadeOut, SplashFormStartPosition startPos, Point loc) public static void ShowImage(Image image, bool useFadeIn, bool useFadeOut, SplashFormStartPosition startPos, Point loc)