What problem does it solve? Choosing and wiring the right loading indicator in a WPF application is error-prone: some indicators freeze when the main UI thread blocks, others lock the wrong part of the window, and the legacy DXSplashScreen API is deprecated. This Skill guides correct selection and implementation of the three DevExpress WPF loading indicators. ## Core Features & Use Cases - SplashScreenManager: Show a startup or long-operation splash screen that runs on a separate UI thread, with themed, Fluent, or wait-indicator styles and runtime progress updates via DXSplashScreenViewModel. - LoadingDecorator: Wrap any slow-loading region (grid, chart, panel) so an indicator appears while content loads, with OwnerLock modes controlling what input is blocked. - WaitIndicator: Toggle a simple inline busy indicator with bindable DeferedVisibility for quick async operations. - Use Case: A developer needs a startup splash that keeps animating while the app loads 10 million rows on the main thread; the Skill directs them to SplashScreenManager.CreateThemed(...).ShowOnStartup() with the theme applied first. ## Quick Start Ask the AI to add a themed startup splash screen to your WPF app using DevExpress SplashScreenManager with ShowOnStartup.