Guest User

Untitled

a guest
Feb 17th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. int Width = SystemInformation.PrimaryMonitorSize.Width;
  2. int Height = SystemInformation.PrimaryMonitorSize.Height;
  3.  
  4. protected override void OnStartup(StartupEventArgs e)
  5. {
  6. base.OnStartup(e);
  7. ...
  8. }
  9.  
  10. Window window = (условие) ? new Window1() : new Window2();
  11. window.Show();
Add Comment
Please, Sign In to add comment