How would you inherit from System.Windows.SplashScreen, this class should enrich this class with the ability to create itself when loading an image on a specific path.
By definition, System.Windows.SplashScreen offers only these two constructors:
public SplashScreen(string resourceName);
public SplashScreen(Assembly resourceAssembly, string resourceName);
As I still feel awkward with WPF, I don’t have a single idea where to start the modifications?
Or do I need to completely change my own SplashScreen class?
source
share