我想这样: 写一个程序去控制这个窗口, 把这个窗口从全屏幕状态变回到窗口化. 各位大哥,请指教...

解决方案 »

  1.   

    BOOL COneT32App::FirstInstance()
          {
             CWnd *pWndPrev, *pWndChild;         // Determine if a window with the class name exists...
             if (pWndPrev = CWnd::FindWindow(_T("MyNewClass"),NULL))
             {
                // If so, does it have any popups?
                pWndChild = pWndPrev->GetLastActivePopup();            // If iconic, restore the main window
                if (pWndPrev->IsIconic())
                   pWndPrev->ShowWindow(SW_RESTORE);            // Bring the main window or its popup to the foreground
                pWndChild->SetForegroundWindow();            // and you are done activating the other application
                return FALSE;
             }
          }
    FindWindow("类名","标题");