How I could remove in this code the blue header separator of a RadDesktopAlert?
http://www.telerik.com/help/winforms/media/desktopalert-overview005.png
Thanks in advance.
http://www.telerik.com/help/winforms/media/desktopalert-overview005.png
With
RadDesktopAlert1
.CaptionText =
"Caption Text"
.ContentText =
"Content Text"
.FixedSize =
New
Size(width:=200, height:=100)
.ScreenPosition = AlertScreenPosition.BottomRight
.Opacity = 0.8F
.PlaySound =
True
.SoundToPlay = Media.SystemSounds.Exclamation
.CanMove =
False
.IsPinned =
False
.ShowCloseButton =
True
.ShowOptionsButton =
False
.ShowPinButton =
False
.AutoClose =
True
.AutoCloseDelay = 5
' Seconds
.FadeAnimationFrames = 80
.FadeAnimationSpeed = 5
.FadeAnimationType = FadeAnimationType.FadeIn
Or
FadeAnimationType.FadeOut
.PopupAnimation =
True
.PopupAnimationDirection = RadDirection.Down
.PopupAnimationEasing = RadEasingType.
Default
.PopupAnimationFrames = 50
End
With
RadDesktopAlert1.Show()
Thanks in advance.