How to Access the Default Panel of a SplashControl

9 Dec 20191 minute to read

The default panel of a SplashControl can be accessed through the SplashControlPanel property.
The example given below illustrates how the background color of a SplashControl’s internal panel can be changed.

this.splashControl1.SplashControlPanel.BackgroundColor = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.RosyBrown, System.Drawing.SystemColors.ControlLight);
Me.splashControl1.SplashControlPanel.BackgroundColor = New Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.RosyBrown, System.Drawing.SystemColors.ControlLight)