Ejemplo n.º 1
0
 public static WindowInfo[] GetChildWindowsInfoList(IntPtr hwndParent)
 {
     EnumWindows enumWindows = new EnumWindows();
     return (from hWnd in enumWindows.GetChildWindowsList(hwndParent) select GetWindowInfo(hWnd)).ToArray();
 }
Ejemplo n.º 2
0
        public static WindowInfo[] GetChildWindowsInfoList(IntPtr hwndParent)
        {
            EnumWindows enumWindows = new EnumWindows();

            return((from hWnd in enumWindows.GetChildWindowsList(hwndParent) select GetWindowInfo(hWnd)).ToArray());
        }
Ejemplo n.º 3
0
 public static IntPtr[] GetChildWindowsList(IntPtr hwndParent)
 {
     EnumWindows enumWindows = new EnumWindows();
     return enumWindows.GetChildWindowsList(hwndParent).ToArray();
 }
Ejemplo n.º 4
0
        public static IntPtr[] GetChildWindowsList(IntPtr hwndParent)
        {
            EnumWindows enumWindows = new EnumWindows();

            return(enumWindows.GetChildWindowsList(hwndParent).ToArray());
        }