Esempio n. 1
0
 public void GetWindows(IntPtr hWndParent)
 {
     this.Items = new EnumWindowsCollection();
     UnManagedMethods.EnumChildWindows(
         hWndParent,
         new EnumWindowsProc(this.WindowEnum), 0);
 }
Esempio n. 2
0
 public void GetWindows()
 {
     this.Items = new EnumWindowsCollection();
     UnManagedMethods.EnumWindows(
         new EnumWindowsProc(this.WindowEnum), 0);
 }