I have a WPF window, I want to know if I can start it from a console programmatically?
WPF
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());
Use the Application class:
new Application().Run(new SomeWindow());