예제 #1
0
파일: Win32.cs 프로젝트: minskowl/MY
        public static IntPtr GetChildWindowHwnd(IntPtr parentHwnd, string className)
        {
            var hWnd = IntPtr.Zero;

            enumChildWindowClassName = className;

            // Go throught the child windows of the dialog window
            EnumChildWindowProc childWindowProc = EnumChildWindows;

            EnumChildWindows(parentHwnd, childWindowProc, ref hWnd);

            return(hWnd);
        }
예제 #2
0
파일: Win32.cs 프로젝트: koshdim/KoWatIn
 internal static extern bool EnumChildWindows(IntPtr hWndParent, EnumChildWindowProc lpEnumFunc, IntPtr lParam);
예제 #3
0
 public static extern bool EnumChildWindows(IntPtr hWndParent, EnumChildWindowProc lpEnumFunc, IntPtr lParam);
예제 #4
0
파일: Win32.cs 프로젝트: minskowl/MY
 internal static extern Int32 EnumChildWindows(IntPtr hWndParent, EnumChildWindowProc lpEnumFunc, ref IntPtr lParam);
예제 #5
0
 public static extern int EnumWindows(EnumChildWindowProc lpEnumFunc, IntPtr lParam);