本文介绍了将CButton放在CListbox项内的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将CButton放在CListBox项内并处理按钮上的onclick事件.

提前thanx

How to place the CButton inside a CListBox Item and handle the onclick event on the button.

thanx in advance

推荐答案

pDC->DrawFrameControl(&rect, DFC_BUTTON, DFCS_BUTTONRADIO | (sel?DFCS_CHECKED:0));



只需将其更改为



just change this to

pDC->DrawFrameControl(&rect, DFC_BUTTON, DFCS_BUTTONPUSH | (sel?DFCS_CHECKED:0));


这篇关于将CButton放在CListbox项内的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 02:50