如何绘制CComboBox的下拉按钮?
我怎样才能让所有者绘制CComboBox的下拉按钮?
谢谢。
How can I do owner draw CComboBox's drop button?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能让所有者绘制CComboBox的下拉按钮?
谢谢。
How can I do owner draw CComboBox's drop button?
Thanks.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以右键单击组合框并检查其属性,您会注意到会有一个“所有者绘制”按钮。双击它使其可见,以便它成为用户定义的并且可以根据您的输入进行更改。
如果您使用字符串,则可以从属性菜单中启用“Has Strings”部分。除此之外,如果您需要将用户定义的字符串数据添加到组合框,您可以使用“Insertstring”或“AddString”字符串命令来让组合框按您的方式工作。
希望这有帮助。
You can right click on the Combo Box and check its properties, you will notice there will be a Owner Draw button. Double click on it to make it visible so that it becomes user-defined and can be changed according to your input.
If you are using strings, you can enable the 'Has Strings' part from the properties menu. Along with that if you need to add user-defined string data to your combo box, you can use 'Insertstring' or 'AddString' string commands to get your combo box working your way.
Hope this helps.