动态创建cursor

void CbobDlg::OnBnClickedOk()
{
 int* pCursorBuffer = (int *)malloc(132*132*4);
 //memset(pCursorBuffer,0x0Aff0000,32*32*4);

 for (int i=0;i<132*132; i++)
 {
  pCursorBuffer[i] = 0x80ff0000;
 }

 

 //HCURSOR pCursor = CreateCursor(NULL,0,0,38,38,pCursorBuffer,pCursorBuffer);
 //::SetCursor(pCursor);

 
 BITMAP bmp;
 bmp.bmType = 0;
 bmp.bmWidth = 132;
 bmp.bmHeight = 132;
 bmp.bmWidthBytes = 4*bmp.bmWidth;
 bmp.bmPlanes = 1;
 bmp.bmBitsPixel = 32;
 bmp.bmBits = pCursorBuffer;

 HBITMAP pBmp = CreateBitmapIndirect(&bmp);

 if (pBmp)
 {
  ICONINFO icon;
  icon.fIcon = false;
  icon.xHotspot = 10;
  icon.yHotspot = 10;
  icon.hbmColor = pBmp;
  icon.hbmMask = pBmp;

  HICON pIcon = CreateIconIndirect(&icon);

  if (pIcon)
  {
   //::SetClassLong(NULL,GCL_HCURSOR,(long)pIcon);
   ::SetCursor(pIcon);
  }
 }

 free(pCursorBuffer);

 

// OnOK();
}

BOOL CbobDlg::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
{
 /*
 // TODO: Add your message handler code here and/or call default

 return CDialog::OnSetCursor(pWnd, nHitTest, message);
 */

 return true;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值