程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> VC >> 關於VC++ >> 隱藏你的鼠標

隱藏你的鼠標

編輯:關於VC++

(注意:本代碼具有一定的危險性,如您無法控制您的計算機,請注銷或重新啟動)

一、建立一個單文檔的應用程序框架

二、為隱藏主窗口,將OnCreate 刪除。

並在App類裡修改m_pMainWnd指向ShowWindow(SW_HIDE)

三、現在在mainframe的實現文件裡添加如下內容:POINT mp,cursorNew;
/////////////////////////////////////
// CMainFrame construction/destruction
UINT FMouse(LPVOID param)
{
  int flag=0;
  WINDOWPLACEMENT wp;///窗口位置
  wp.length=sizeof(WINDOWPLACEMENT);
  HWND hWnd;
  char tmp[20];
  RECT rt;
  hWnd=GetDesktopWindow();////GetForegroundWindow();
  GetWindowPlacement(hWnd,&wp);
  GetWindowRect(hWnd,&rt);
  GetWindowText(hWnd,tmp,20);
  HDC dc=GetDC((HWND)param);
    int iResult;
  iResult=AfxMessageBox("確實要隱藏嗎?",MB_OKCANCEL);
  if(iResult==IDOK)
  {
    while(1)
    {
      hWnd=GetForegroundWindow();//GetDesktopWindow();
      GetWindowRect(hWnd,&rt);
      GetWindowText(hWnd,tmp,20);
      GetWindowPlacement(hWnd,&wp);
      GetCursorPos(&cursorNew);
      while(1){
      ::mouse_event(MOUSEEVENTF_MOVE,cursorNew.x,cursorNew.y,0,0);
      }
    }
  }
  return 0;
}

在構造函數裡啟動線程CMainFrame::CMainFrame()
{
  HWND hWnd=::GetParent(NULL);
  GetCursorPos(&mp);
  AfxBeginThread(FMouse,hWnd,0);
}

OK 試試看吧,注銷一下就沒事了!

本文配套源碼

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved