1

我创建了一个自定义控件,其类CStatic作为基类。WM_PAINT目前我使用事件处理绘图。但是有一个奇怪的行为。当我使用函数禁用它后重新启用窗口时CWnd::EnableWindow,它拒绝绘制我在OnPaint函数中编写的内容。它改为绘制静态控件。

我同意有这种覆盖DrawItem和使用SS_OWNERDRAW样式的标准方法。但是有什么问题WM_PAINT呢?

void XXControl::OnPaint()
{
    CPaintDC PaintDC( this );
    // ** draw the control to PaintDC**
}
4

2 回答 2

6

这正是我所写的:

class CMyStatic : public CStatic
{
    DECLARE_MESSAGE_MAP()
public:
    void OnPaint(void);
};

BEGIN_MESSAGE_MAP(CMyStatic, CStatic)
    ON_WM_PAINT()
END_MESSAGE_MAP()

void CMyStatic::OnPaint(void)
{
    CPaintDC dc(this);
    CRect rect;
    GetClientRect(&rect);

    dc.FillSolidRect(&rect, RGB(120,255,0));
}

并细分:

class CMyDlg : public CDialog
{
// Construction
    CMyStatic my_static;
...
};


BOOL CCMyDlg::OnInitDialog()
{
   CDialog::OnInitDialog();

   my_static.SubclassDlgItem(IDC_DRAW, this);

   return true;
}

IDC_DRAW此对话框的资源静态控制在哪里。我写了两个按钮处理程序:

void CMyDlg::OnBnClickedOk()
{
    my_static.EnableWindow(FALSE);
    my_static.Invalidate();
}

void CMyDlg::OnBnClickedOk2()
{
    my_static.EnableWindow();
    my_static.Invalidate();
}

它完美无瑕!删除Invalidate呼叫,它会失败。

于 2011-08-25T14:55:11.867 回答
1

Try turning off Aero. I'm having a similiar problem where I'm drawing a static control and when it goes from disabled to enabled the WM_PAINT message is never received, but if I turn Aero off it works fine.

于 2012-12-05T16:37:36.533 回答