Alignment Settings in Windows Forms Splash Screen
18 Nov 20181 minute to read
This section discusses the alignment settings available in Splash Screen.
Splash Screen provides options to customize the alignment of the splash image in the desktop. The property that is related to this feature is given below.
Property Table
| SplashControl Property | Description |
|---|---|
| DesktopAlignment | Specifies the desktop alignment of the splash image. It includes the following options.SystemTray,Center,LeftTop,LeftBottom,RightTop,RightBottom andCustom. |
This can be done through code using the code snippet below.
this.splashControl1.DesktopAlignment = Syncfusion.Windows.Forms.Tools.SplashAlignment.SystemTray;Me.SplashControl1.DesktopAlignment = Syncfusion.Windows.Forms.Tools.SplashAlignment.SystemTray