元SE。田舎の公務員

通勤快足な生活をしながら、開発技術とウェイトコントロールについてつらつらと。。。

C#で【FindWindow】

//HWND FindWindow(
// LPCTSTR lpClassName, // クラス名
// LPCTSTR lpWindowName // ウィンドウ名
//);
[System.Runtime.InteropServices.DllImport("user32.dll",CharSet = System.Runtime.InteropServices.CharSet.Auto)]
static extern IntPtr FindWindow(string hWnd, string lpWindowName);