■ UWP 프로세스/윈도우 리스트를 구하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Text; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Import ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 윈도우 찾기 (확장) - FindWindowEx(parentWindowHandle, childAfterWindowHandle, className, windowText) /// <summary> /// 윈도우 찾기 (확장) /// </summary> /// <param name="parentWindowHandle">부모 윈도우 핸들</param> /// <param name="childAfterWindowHandle">찾기 이후 자식 윈도우 핸들</param> /// <param name="className">클래스명</param> /// <param name="windowText">윈도우 텍스트</param> /// <returns>윈도우 핸들</returns> [DllImport("user32.dll")] private static extern IntPtr FindWindowEx(IntPtr parentWindowHandle, IntPtr childAfterWindowHandle, string className, string windowText); #endregion #region 윈도우 스레드 프로세스 ID 구하기 - GetWindowThreadProcessId(windowHandle, processID) /// <summary> /// 윈도우 스레드 프로세스 ID 구하기 /// </summary> /// <param name="windowHandle">윈도우 핸들</param> /// <param name="processID">프로세스 ID</param> /// <returns>스레드 ID</returns> [DllImport("user32")] private static extern uint GetWindowThreadProcessId(IntPtr windowHandle, out IntPtr processID); #endregion #region UWP 프로세스 여부 구하기 - IsImmersiveProcess(processHandle) /// <summary> /// UWP 프로세스 여부 구하기 /// </summary> /// <param name="processHandle">프로세스 핸들</param> /// <returns>UWP 프로세스 여부</returns> [DllImport("user32")] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool IsImmersiveProcess(IntPtr processHandle); #endregion #region 윈도우 텍스트 구하기 - GetWindowText(windowHandle, stringBuilder, maximumCount) /// <summary> /// 윈도우 텍스트 구하기 /// </summary> /// <param name="windowHandle">윈도우 핸들</param> /// <param name="stringBuilder">문자열 빌더</param> /// <param name="maximumCount">최대 카운트</param> /// <returns>윈도우 텍스트</returns> [DllImport("user32.dll")] private static extern int GetWindowText(IntPtr windowHandle, StringBuilder stringBuilder, int maximumCount); #endregion #region 윈도우 표시 여부 구하기 - IsWindowVisible(windowHandle) /// <summary> /// 윈도우 표시 여부 구하기 /// </summary> /// <param name="windowHandle">윈도우 핸들</param> /// <returns>윈도우 표시 여부</returns> [DllImport("user32.dll")] private static extern bool IsWindowVisible(IntPtr windowHandle); #endregion #region 윈도우 최소화 여부 구하기 - IsIconic(windowHandle) /// <summary> /// 윈도우 최소화 여부 구하기 /// </summary> /// <param name="windowHandle">윈도우 핸들</param> /// <returns>윈도우 최소화 여부</returns> [DllImport("user32.dll")] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool IsIconic(IntPtr windowHandle); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { IntPtr windowHandle = IntPtr.Zero; do { windowHandle = FindWindowEx(IntPtr.Zero, windowHandle, "ApplicationFrameWindow", null); if(windowHandle == IntPtr.Zero) { break; } IntPtr processID; GetWindowThreadProcessId(windowHandle, out processID); Process process = Process.GetProcessById((int)processID); try { if(!IsImmersiveProcess(process.Handle)) { continue; } } catch { continue; } StringBuilder windowTextStringBuilder = new StringBuilder(1024); GetWindowText(windowHandle, windowTextStringBuilder, 1024); string windowText = windowTextStringBuilder.ToString(); if(string.IsNullOrEmpty(windowText)) { continue; } bool windowVisible = IsWindowVisible(windowHandle); bool isIconic = IsIconic(windowHandle); Console.WriteLine($"{process.ProcessName}:{process.Id}:{windowHandle}:{windowTextStringBuilder.ToString()}:{windowVisible}:{isIconic}"); } while(true); } #endregion } } |