プログラミング-Win32API
//HWND FindWindow( // LPCTSTR lpClassName, // クラス名 // LPCTSTR lpWindowName // ウィンドウ名 //); [System.Runtime.InteropServices.DllImport("user32.dll",CharSet = System.Runtime.InteropServices.CharSet.Auto)] static extern IntPtr FindWin…
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…