Having trouble getting help?
Contact Support
Contact Support
Alignment Settings in Windows Forms Splash Screen (Splash)
29 Apr 20211 minute to read
This section discusses the alignment settings available in SplashControl.
SplashControl 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