16,551
社区成员
发帖
与我相关
我的任务
分享
void CXXButton::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
{
// TODO: Add your message handler code here and/or call default
......
UINT state;
state = lpDrawItemStruct->itemState;
if (state & ODS_DISABLED)
{
...在这画就可以了
}
......
}