void CADlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // 用于绘制的设备上下文 SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0); // 使图标在工作区矩形中居中
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; // 绘制图标
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialogEx::OnPaint();
//////////////////////////////////////////////////////////////////////////
CPaintDC dc(this);
CRect rect;
GetClientRect(&rect);
rect.DeflateRect(100,100);
dc.DrawEdge(&rect,BDR_RAISEDINNER,BF_BOTTOM);
DrawText(dc,TEXT("ASD"),3,&rect,DT_CENTER);
}
}为什么我在上面进行的绘制都无效呢?