Loading [MathJax]/extensions/tex2jax.js

2014年5月28日水曜日

C# Enumwindow

やりたいこと
c#でwin32apiのEnumwindowを呼び出して、ウィンドウの一覧を作成する。
こういうものを作りたい。

参考にしたサイト
(1)C# で ウィンドウを列挙する方法1
http://code.msdn.microsoft.com/windowsdesktop/Enumerate-top-level-9aa9d7c1
(2)C# で ウィンドウを列挙する方法2
http://dobon.net/vb/dotnet/process/enumwindows.html
(3)LPARAMで情報やり取りする方法
http://stackoverflow.com/questions/8949652/do-windows-api-enumwindows-and-enumchildwindows-functions-behave-differently-in

どうやるの?
(1) 参考にしたサイト(1)のサイトからサンプルコードをダウンロードして、コピペする。
(2) Win32を別のclassにした。 (必須ではないです。)
※適宜protected -> publicに置き換え
(3) IntPtr lParam を Arraylist に置き換え。
というような感じでできた。
このような感じになる。
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Linq;  
  7. using System.Text;  
  8. using System.Threading.Tasks;  
  9. using System.Windows.Forms;  
  10.   
  11. //add  
  12. using System.Runtime.InteropServices;  
  13. using System.Collections;  
  14.   
  15. namespace AutoTest2  
  16. {  
  17.     public partial class Form1 : Form  
  18.     {  
  19.         public Form1()  
  20.         {  
  21.             InitializeComponent();  
  22.   
  23.             ArrayList alist = new ArrayList();  
  24.   
  25.             Win32.EnumWindows(new Win32.EnumWindowsProc(Win32.EnumTheWindows), ref alist);  
  26.   
  27.            foreach (string str in alist)  
  28.            {  
  29.                label1.Text += str + Environment.NewLine;  
  30.            }  
  31.         }  
  32.     }  
  33.   
  34.     public class Win32  
  35.     {  
  36.         public delegate bool EnumWindowsProc(IntPtr hWnd, ref ArrayList data);  
  37.         [DllImport("user32.dll", CharSet = CharSet.Unicode)]  
  38.         protected static extern int GetWindowText(IntPtr hWnd, StringBuilder strText, int maxCount);  
  39.         [DllImport("user32.dll", CharSet = CharSet.Unicode)]  
  40.         protected static extern int GetWindowTextLength(IntPtr hWnd);  
  41.         [DllImport("user32.dll")]  
  42.         public static extern bool EnumWindows(EnumWindowsProc enumProc, ref ArrayList data);  
  43.         [DllImport("user32.dll")]  
  44.         protected static extern bool IsWindowVisible(IntPtr hWnd);  
  45.         public static bool EnumTheWindows(IntPtr hWnd, ref ArrayList alist)  
  46.         {  
  47.             int size = GetWindowTextLength(hWnd);  
  48.             if (size++ > 0 && IsWindowVisible(hWnd))  
  49.             {  
  50.                 StringBuilder sb = new StringBuilder(size);  
  51.                 GetWindowText(hWnd, sb, size);  
  52.                 alist.Add(sb.ToString());  
  53.             }  
  54.             return true;  
  55.         }  
  56.     }  
  57.   
  58. }  


苦労した点
Win32APIで取得ウィンドウの一覧をForm側に戻す方法がよくわからず、苦戦した。
マーシャリング / アンマネージとかがよく分かってないためと思ってます。


注意事項
ひとまず、動作してますが、マーシャリングをよくわかっていいので、本当にこれでよいのか不安です。