下面是填充按钮的代码:
为什么点击填充按钮后 没变化呢?
下面是填充按钮的代码:
为什么点击填充按钮后 没变化呢?
void CSetting::OnButton1()
{
// TODO: Add your control notification handler code here
CRect rect;
GetDlgItem(IDC_PICTURE)->GetWindowRect(rect);
ScreenToClient(&rect); //屏幕坐标转客户区坐标
CBrush brush(RGB(255,0,0));
CDC *pDC=GetDC();
pDC->SelectObject(&brush);
pDC->Rectangle(rect);
}