posts - 131, comments - 12, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

OnPaint里面贴图

Posted on 2012-12-21 16:33 盛胜 阅读(313) 评论(0)  编辑 收藏 引用
//欢迎界面背景
  CRect ctrlRect;
  GetClientRect(&ctrlRect);
  //this->GetWindowRect(ctrlRect);
  CRect rec(0, 93,ctrlRect.right,ctrlRect.bottom-25);
  CDC *pdc = GetDC();
  CPoint OldPoint; 
  OldPoint=pdc->GetBrushOrg();
  CBrush myBrush;
  CBitmap bmpbk;
  bmpbk.LoadBitmap(IDB_BK_WELCOME);
  pdc->SetBrushOrg(CPoint(0,0));
  myBrush.CreatePatternBrush( &bmpbk);
  pdc->FillRect(&rec, &myBrush);
  bmpbk.DeleteObject();

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理