MFC对话框添加背景图片 一点一点教我,C++已经学过,但这个MFC不是很懂
我希望在我做的计算器中添加一个背景图,http://zhidao.baidu.com/question/80239964.html里面的“Bitmap资源”我也没找到,能...
我希望在我做的计算器中添加一个背景图,http://zhidao.baidu.com/question/80239964.html 里面的“Bitmap资源”我也没找到,能把那个仔细告诉我或者其他的方法也行,但要仔细一点,可能还要在百度Hi上说。谢谢了!如果好的话我还会加分的!
麻烦说详细点,图片放在哪个位置,还有哪些变量,函数在哪个文件中定义,感激不尽!
可以先做一下发过来么?会做的话应该很简单的。现在是这样子的,不用加按键之类的 展开
麻烦说详细点,图片放在哪个位置,还有哪些变量,函数在哪个文件中定义,感激不尽!
可以先做一下发过来么?会做的话应该很简单的。现在是这样子的,不用加按键之类的 展开
5个回答
展开全部
CPaintDC dc(this);
CRect rect;
GetClientRect(&rect);
CDC dcMem;
dcMem.CreateCompatibleDC(&dc);
CBitmap bmpBackground;
bmpBackground.LoadBitmap(IDB_BITMAP1);
BITMAP bitmap;
bmpBackground.GetBitmap(&bitmap);
CBitmap *pbmpOld=dcMem.SelectObject(&bmpBackground);
dc.StretchBlt(0,0,rect.Width(),rect.Height(),&dcMem,0,0,
bitmap.bmWidth,bitmap.bmHeight,SRCCOPY);
放在 onpaint里面
CRect rect;
GetClientRect(&rect);
CDC dcMem;
dcMem.CreateCompatibleDC(&dc);
CBitmap bmpBackground;
bmpBackground.LoadBitmap(IDB_BITMAP1);
BITMAP bitmap;
bmpBackground.GetBitmap(&bitmap);
CBitmap *pbmpOld=dcMem.SelectObject(&bmpBackground);
dc.StretchBlt(0,0,rect.Width(),rect.Height(),&dcMem,0,0,
bitmap.bmWidth,bitmap.bmHeight,SRCCOPY);
放在 onpaint里面
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//贴图
HBITMAP startpic;
CStatic startPics;
startpic=(HBITMAP) ::LoadImage(NULL,"snakeNet.bmp",IMAGE_BITMAP,110,50,LR_LOADFROMFILE|LR_DEFAULTSIZE);
startPics.Create(NULL,WS_CHILD|WS_VISIBLE|SS_BITMAP|SS_CENTERIMAGE,CRect(200,457,200+110,457+50),this,NULL);
startPics.SetBitmap(startpic);
HBITMAP startpic;
CStatic startPics;
startpic=(HBITMAP) ::LoadImage(NULL,"snakeNet.bmp",IMAGE_BITMAP,110,50,LR_LOADFROMFILE|LR_DEFAULTSIZE);
startPics.Create(NULL,WS_CHILD|WS_VISIBLE|SS_BITMAP|SS_CENTERIMAGE,CRect(200,457,200+110,457+50),this,NULL);
startPics.SetBitmap(startpic);
参考资料: http://zhidao.baidu.com/question/129068038.html?fr=qrl&cid=93&index=1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#endif
COpenDatDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed, return FALSE so that we exit the
// application, rather than start the application's message pump.
return FALSE;
在.cpp中把COpenDatDlg dlg换成你自己的对话框类就可以了
你的串号我已经记下,采纳后我会帮你制作
我可以帮助你,你先设置我最佳答案后,我百度Hii教你。
COpenDatDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed, return FALSE so that we exit the
// application, rather than start the application's message pump.
return FALSE;
在.cpp中把COpenDatDlg dlg换成你自己的对话框类就可以了
你的串号我已经记下,采纳后我会帮你制作
我可以帮助你,你先设置我最佳答案后,我百度Hii教你。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询