예제 #1
0
파일: Windows.cs 프로젝트: labeuze/source
 public static WindowInfo[] GetChildWindowsInfoList(IntPtr hwndParent)
 {
     EnumWindows enumWindows = new EnumWindows();
     return (from hWnd in enumWindows.GetChildWindowsList(hwndParent) select GetWindowInfo(hWnd)).ToArray();
 }
예제 #2
0
파일: Windows.cs 프로젝트: 24/source_04
        public static WindowInfo[] GetChildWindowsInfoList(IntPtr hwndParent)
        {
            EnumWindows enumWindows = new EnumWindows();

            return((from hWnd in enumWindows.GetChildWindowsList(hwndParent) select GetWindowInfo(hWnd)).ToArray());
        }
예제 #3
0
파일: Windows.cs 프로젝트: labeuze/source
 public static IntPtr[] GetChildWindowsList(IntPtr hwndParent)
 {
     EnumWindows enumWindows = new EnumWindows();
     return enumWindows.GetChildWindowsList(hwndParent).ToArray();
 }
예제 #4
0
파일: Windows.cs 프로젝트: 24/source_04
        public static IntPtr[] GetChildWindowsList(IntPtr hwndParent)
        {
            EnumWindows enumWindows = new EnumWindows();

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