How to start the WPF window from console programmatically?

Hi You can use Application Class, with the help of this class,we can start wpf window programmatically,

Application app = new Application ();
app.Run(new Window1());

Leave a Comment