工控编程吧
标题:
上位机MFC如何设置背景模式
[打印本页]
作者:
qq263946146
时间:
2019-7-31 10:15
标题:
上位机MFC如何设置背景模式
地直接使用设备上下文输出内容时,我们可以调用函数SetBkMode为设置背景的框。
void CGkbc8Dlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // device context for painting
SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
// Center icon in client rectangle
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;
// Draw the icon
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CPaintDC dc(this);
//设置灰色背景
dc.SelectStockObject(GRAY_BRUSH);
CRect rect;
GetClientRect(rect);
dc.Rectangle(rect);
//设置不透明背景
dc.SetBkMode(OPAQUE);
dc.TextOut(10, 10, _T("Hello World!"));
//设置透明背景
dc.SetBkMode(TRANSPARENT);
dc.TextOut(10, 50, _T("Hello World!"));
CDialog::OnPaint();
}
}
复制代码
上面代码我们可以看到
dc.SetBkMode(TRANSPARENT);
模式还有一些可以选择,我们可以查阅MSDN手册。
[MFC408]1[/MFC408]
[weixinlianxi]1[/weixinlianxi]
欢迎光临 工控编程吧 (https://www.gkbc8.com/)
Powered by Discuz! X3.4