Exemplo n.º 1
0
 public Window GetChild(string clname, string title)
 {
     return(new Window()
     {
         Handle = WinAPI.FindWindowEx(Handle, NULL, clname, title)
     });
 }
Exemplo n.º 2
0
 public static Window Find(IntPtr parent, IntPtr child, string clname, string title)
 {
     return(new Window()
     {
         Handle = WinAPI.FindWindowEx(parent, child, clname, title)
     });
 }