Exemplo n.º 1
0
Arquivo: Form1.cs Projeto: guytp/guy3
 private void OnWindowAdded(object sender, NativeWindowEventArgs e)
 {
     Log("New: " + e.Window.Handle + "   Title: " + e.Window.Title);
     _displayItems.Add(new DisplayItem(new Win32WindowContainer(e.Window)));
     _isInvalidated = true;
 }
Exemplo n.º 2
0
Arquivo: Form1.cs Projeto: guytp/guy3
 private void OnWindowUpdated(object sender, NativeWindowEventArgs e)
 {
     Log("Upd: " + e.Window.Handle + "   Title: " + e.Window.Title);
     _isInvalidated = true;
 }