I have a console app, where I want to show wpf window:
ths = new ThreadStart(() =>
  {
     window = new wpf_lib.Container();
     System.Windows.Application app = new Application();
     app.Run(window);
  });
 th = new Thread(ths);
 th.TrySetApartmentState(ApartmentState.STA);
 th.Start();
But, how I can get access for wpf window methods and properties from any method in the console app?
 
     
    