Esempio n. 1
0
        public ArrayList getEnumChildWindows(IntPtr myhwnd)
        {
            list = new ArrayList();
            ChildCallBack myCallBack = new ChildCallBack(ChildReport);

            EnumChildWindows(myhwnd, myCallBack, 0);
            return(list);
        }
Esempio n. 2
0
 public static extern int EnumChildWindows(int hWndParent, ChildCallBack lpfn, int lParam);
Esempio n. 3
0
 public static extern bool EnumChildWindows(IntPtr hwndParent, ChildCallBack x, int lParam);