I actually try to add a Splash Screen to my WPF application. It is quite easy:
SplashScreen s = new SplashScreen("/Images/Agrar.png");
s.Show(true);
My problem is, that I want the Splash Screen to show about 10sec, but my Application doesn´t need so long to load.
So I thought about the Timer class and tried a bit, but I don´t know how to combine it with a Splash Screen. Is there a better solution? How does it work with Timer? Because I didn´t find a option to say, what should happen while the Timer is running.