I have a WPF window, I want to know if I can start it from a console programmatically?
WPF
Use the Application class:
new Application().Run(new SomeWindow());