This is a migrated thread and some comments may be shown as answers.

Configure splashscreen

1 Answer 414 Views
SplashScreen
This is a migrated thread and some comments may be shown as answers.
Bracco
Top achievements
Rank 1
Veteran
Bracco asked on 19 Apr 2021, 02:09 PM

Hi,

 

I am using the RadSplashScreen and I would like to allow the following actions:

- Set splashscreen as not topmost

- Allow to move the splashscreen (no resize, or close, just move)

 

Thank you for your help

1 Answer, 1 is accepted

Sort by
0
Martin Ivanov
Telerik team
answered on 22 Apr 2021, 09:38 AM

Hello Bracco,

The splashscreen is designed so it is topmost and non-draggable so it can only display relevant information while the application is loading. In your case I would recommend you to use RadWindow instead of the splashscreen manager. Note that in this case you can still use RadSplashScreen since this is just the visual element hosted in a custom window.

 Here is an example in code:

<telerik:RadWindow  xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" x:Class="WpfApp25.SplashScreen"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp25"
        mc:Ignorable="d" Height="450" Width="800"
                    CanClose="False"
                    ResizeMode="NoResize"
                    Header="">
    <telerik:RadSplashScreen/>
</telerik:RadWindow>

To open the window, call its Show() method.

I hope this helps.

Regards,
Martin Ivanov
Progress Telerik

Тhe web is about to get a bit better! 

The Progress Hack-For-Good Challenge has started. Learn how to enter and make the web a worthier place: https://progress-worthyweb.devpost.com.

Tags
SplashScreen
Asked by
Bracco
Top achievements
Rank 1
Veteran
Answers by
Martin Ivanov
Telerik team
Share this question
or