本文介绍了DrawCaption()的DC_BUTTONS标志不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用0x1000也不起作用,
有关DrawCaption的DC_BUTTONS标志的MSDN文档说:Windows XP:如果设置,该函数将在标题栏中绘制按钮(以最小化,还原或关闭应用程序).
我的平台只是Windows XP,我的代码是:
Using 0x1000 dosen''t work either,
MSDN documentation about DC_BUTTONS flag for DrawCaption said: Windows XP: If set, the function draws the buttons in the caption bar (to minimize, restore, or close an application).
my platform is just Windows XP and my code:
::DrawCaption(m_hWnd,hdc,&rtTitle,DC_ACTIVE|DC_ICON|DC_TEXT|0x1000);
除了这些按钮以外,还可以绘制其他项目.
Other Items can be drawn except these buttons
推荐答案
这篇关于DrawCaption()的DC_BUTTONS标志不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!