OwnerDraw C按钮mfc焦点

OwnerDraw CButton mfc focus

本文关键字:焦点 mfc 按钮 OwnerDraw      更新时间:2023-10-16

使用标准按钮,如果我有"确定"answers"取消",默认情况下为"确定",然后我按下右箭头,"取消"将聚焦,并按键盘上的enter键,则调用"取消"按钮功能。

ownerdraw按钮不会发生这种情况。如果我按下向右箭头,取消按钮会聚焦,但按下键盘上的回车键,则会调用OK按钮功能。

我怎样才能拥有一个行为规范的ownerdraw按钮?

这是我的课。

BEGIN_MESSAGE_MAP(CFlatButton, CButton)
    //{{AFX_MSG_MAP(CMyClass)
        // NOTE - the ClassWizard will add and remove mapping macros here.
    //}}AFX_MSG_MAP
END_MESSAGE_MAP()
void CFlatButton::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
{
    // TODO: Add your code to draw the specified item
    CDC dc;
    dc.Attach(lpDrawItemStruct->hDC);       //Get device context object
    CRect rt;
    rt = lpDrawItemStruct->rcItem;      //Get button rect
    UINT state = lpDrawItemStruct->itemState;   //Get state of the button
    if ( (state & ODS_SELECTED) )
        dc.FillSolidRect(rt, RGB(255, 0, 0));
    else
    {
        if ((state & ODS_DISABLED))
        {
            dc.FillSolidRect(rt, RGB(0, 255, 0));
        }
        else
        {
            if ((state & ODS_FOCUS))       // If the button is focused
            {
                // Draw a focus rect which indicates the user 
                // that the button is focused
                dc.FillSolidRect(rt, RGB(0, 0, 255));
            }
            else
            {
                dc.FillSolidRect(rt, RGB(255, 255, 0));
            }
        }
    }
    dc.SetTextColor(RGB(255,255,255));      // Set the color of the caption to be yellow
    CString strTemp;
    GetWindowText(strTemp);     // Get the caption which have been set
    dc.DrawText(strTemp,rt,DT_CENTER|DT_VCENTER|DT_SINGLELINE);     // Draw out the caption

    dc.Detach();
}

主要原因是对话框通常使用BS_DEFPUSHBUTTON和BS_PUSHBUTON来表示这一点,但ownerdraw标志与此互斥。

查看这篇文章:它解释了完整的背景:http://www.codeproject.com/Articles/1318/COddButton