Exemplo n.º 1
0
 public EventManagerTest()
 {
     window = new Window(new WindowSettings()
     {
         IsVisible = false
     });
     queue = EventManager.CreateQueueFor(window);
 }
Exemplo n.º 2
0
 public EventsTest()
 {
     window = new Window(new WindowSettings()
     {
         WindowWidth  = 100,
         WindowHeight = 100
     });
     eventQueue = EventManager.CreateQueueFor(window);
     Window.OverrideCurrentWith(window);
 }