- Transition settings
- Slide transitions
- Marquee transition
Contact Support
Slide Direction in Windows Forms Splash Panel
29 Apr 20216 minutes to read
Transition settings
The splash panel supports the following transitions over the screen:
- Slide transition
- Marquee transition
Slide transitions
The splash panel supports the following slide transitions:
- Default
- Right to left
- Left to right
Default
If the animation direction is set as Default, the transition of the panel occurs from the bottom to the top for the LeftBottom or RightBottom DesktopAlignment.
Property Table
Property | Description |
---|---|
AnimationDirection | Gets or sets the slide animation direction. |
//Set panel slide style.
this.splashPanel1.SlideStyle == SlideStyle.Slide;
//Set panel location.
this.splashPanel1.DesktopAlignment = SplashAlignment.LeftBottom;
//Set animation direction.
this.splashPanel1.AnimationDirection = AnimationDirection.Default;
//Show panel.
this.splashPanel1.ShowSplash();
'Set panel slide style.
Me.splashPanel1.SlideStyle = SlideStyle.Slide
'Set panel location.
Me.splashPanel1.DesktopAlignment = SplashAlignment.LeftBottom
'Set animation direction.
Me.splashPanel1.AnimationDirection = AnimationDirection.Default
'Show panel.
Me.splashPanel1.ShowSplash()
Left to right
If the splash panel DesktopAlignment is set to BottomLeft or TopLeft, support can also be enabled for a left-to-right slide transition using the sample code that follows.
Property Table
Property | Description |
---|---|
AnimationDirection | Gets or sets the slide animation direction. |
//Set panel slide style.
this.splashPanel1.SlideStyle == SlideStyle.Slide;
//Set panel location.
this.splashPanel1.DesktopAlignment = SplashAlignment.LeftBottom;
//Set animation direction.
this.splashPanel1.AnimationDirection = AnimationDirection.LeftToRight;
//Show panel.
this.splashPanel1.ShowSplash();
'Set panel slide style.
Me.splashPanel1.SlideStyle = SlideStyle.Slide
'Set panel location.
Me.splashPanel1.DesktopAlignment = SplashAlignment.LeftBottom
'Set animation direction.
Me.splashPanel1.AnimationDirection = AnimationDirection.LeftToRight
'Show panel.
Me.splashPanel1.ShowSplash()
Right to left
If the splash panel DesktopAlignment is set to BottomRight or TopRight, support can also be enabled for a right-to-left slide transition using the sample code that follows.
Property Table
Property | Description |
---|---|
AnimationDirection | Gets or sets the slide animation direction. |
//Set panel slide style.
this.splashPanel1.SlideStyle == SlideStyle.Slide;
//Set panel location.
this.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom;
//Set animation direction.
this.splashPanel1.AnimationDirection = AnimationDirection.RightToLeft;
//Show panel.
this.splashPanel1.ShowSplash();
'Set panel slide style.
Me.splashPanel1.SlideStyle = SlideStyle.Slide
'Set panel location.
Me.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom
'Set animation direction.
Me.splashPanel1.AnimationDirection = AnimationDirection.RightToLeft
'Show panel.
Me.splashPanel1.ShowSplash()
Marquee transition
The splash panel supports the following marquee transitions:
- Left to right
- Right to left
- Top to bottom
- Bottom to top
Left to right
If the splash panel SlideStyle is set as marquee and the MarqueeDirection is set as LeftToRight, the marquee will traverse the screen from left to right.
Property Table
Property | Description |
---|---|
MarqueeDirection | Gets or sets the marquee direction. |
//Set panel slide style.
this.splashPanel1.SlideStyle == SlideStyle.marquee;
//Set panel location.
this.splashPanel1.DesktopAlignment = SplashAlignment.LeftBottom;
//Set animation direction.
this.splashPanel1.MarqueeDirection = MarqueeDirection.LeftToRight;
//Show panel.
this.splashPanel1.ShowSplash();
'Set panel slide style.
Me.splashPanel1.SlideStyle = SlideStyle.marquee
'Set panel location.
Me.splashPanel1.DesktopAlignment = SplashAlignment.LeftBottom
'Set animation direction.
Me.splashPanel1.MarqueeDirection = MarqueeDirection.LeftToRight
'Show panel.
Me.splashPanel1.ShowSplash()
Right to left
If the splash panel SlideStyle is set as marquee and the MarqueeDirection is set as RightToLeft, the marquee will traverse the screen from right to left.
Property Table
Property | Description |
---|---|
MarqueeDirection | Gets or sets the marquee direction. |
//Set panel slide style.
this.splashPanel1.SlideStyle == SlideStyle.marquee;
//Set panel location.
this.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom;
//Set animation direction.
this.splashPanel1.MarqueeDirection = MarqueeDirection.RightToLeft;
//Show panel.
this.splashPanel1.ShowSplash();
'Set panel slide style.
Me.splashPanel1.SlideStyle = SlideStyle.marquee
'Set panel location.
Me.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom
'Set animation direction.
Me.splashPanel1.MarqueeDirection = MarqueeDirection.RightToLeft
'Show panel.
Me.splashPanel1.ShowSplash()
Bottom to top
If the splash panel SlideStyle is set as marquee and the MarqueeDirection is set as BottomToTop, the marquee will traverse the screen from the bottom to the top.
//Set panel slide style.
this.splashPanel1.SlideStyle == SlideStyle.marquee;
//Set panel location.
this.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom;
//Set animation direction.
this.splashPanel1.MarqueeDirection = MarqueDirection.BottomToTop;
//Show panel.
this.splashPanel1.ShowSplash();
'Set panel slide style.
Me.splashPanel1.SlideStyle = SlideStyle.marquee
'Set panel location.
Me.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom
'Set animation direction.
Me.splashPanel1.MarqueeDirection = MarqueeDirection.BottomToTop
'Show panel.
Me.splashPanel1.ShowSplash()
Top to bottom
If the splash panel SlideStyle is set as marquee and the MarqueeDirection is set as TopToBottom, the marquee will traverse the screen from the top to the bottom.
//Set panel slide style.
this.splashPanel1.SlideStyle == SlideStyle.marquee;
//Set panel location.
this.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom;
//Set animation direction.
this.splashPanel1.MarqueeDirection = MarqueeDirection.TopToBottom;
//Show panel.
this.splashPanel1.ShowSplash();
'Set panel slide style.
Me.splashPanel1.SlideStyle = SlideStyle.marquee
'Set panel location.
Me.splashPanel1.DesktopAlignment = SplashAlignment.RightBottom
'Set animation direction.
Me.splashPanel1.MarqueeDirection = MarqueeDirection.TopToBottom
'Show panel.
Me.splashPanel1.ShowSplash()