Skip to main content
All docs
V25.1
  • SplashScreenManagerService.SplashScreenType Property

    Specifies the splash screen window type. This is a dependency property.

    Namespace: DevExpress.Xpf.Core

    Assembly: DevExpress.Xpf.Core.v25.1.dll

    NuGet Package: DevExpress.Wpf.Core

    Declaration

    public Type SplashScreenType { get; set; }

    Property Value

    Type Description
    Type

    The splash screen window type.

    Remarks

    You can implement your own splash screen view based on a SplashScreenWindow. Refer to the How to: Create a Custom Splash Screen tutorial for details. In this scenario, set the SplashScreenType property to the custom splash screen view type.

    <dxmvvm:Interaction.Behaviors>
        <dx:SplashScreenManagerService SplashScreenType="View:ThemedSplashScreen" />
    </dxmvvm:Interaction.Behaviors>
    

    To specify a predefined splash screen, use the PredefinedSplashScreenType property

    See Also