How to Display the SplashPanel along with the Mouse Pointer

18 Nov 20181 minute to read

Set the DesktopAlignment property of the SplashPanel to Custom, and call the ShowSplash method, by passing the pointer position as the parameter as follows.

Point pt = Point.Empty;
if( SplashPanel1.DesktopAlignment == SplashAlignment.Custom)
pt = Control.MousePosition;
SplashPanel1 .ShowSplash(pt, this, true);
Private pt As Point = Point.Empty
If SplashPanel1.DesktopAlignment = SplashAlignment.Custom Then
pt = Control.MousePosition
SplashPanel1.ShowSplash(pt, Me, True)
End If