元SE。田舎の公務員

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

プログラミング-Win32API

C#で【FindWindow】

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

【C#】【ShowWindow】

ShowWindow() :ウィンドウの表示状態を設定します。 //BOOL ShowWindow( // HWND hWnd, // ウィンドウのハンドル // int nCmdShow // 表示状態 //); const int SW_HIDE = 0; const int SW_SHOWNORMAL = 1; const int SW_NORMAL = 1; const int SW_SHOWMINIM…