toolStripComboBox设置字体样式?
我读了这个主题 http://technicalsol.blogspot.com/2009 /03/combobox-set-font-style.html 带有comboBox,但在toolstripComboBox中不存在事件draw_item 我需要你的帮助。我正在用 C# 编写简单的写字板。
I read this topic http://technicalsol.blogspot.com/2009/03/combobox-set-font-style.html with comboBox but in toolstripComboBox not exist event draw_item
I need your help. I am writing simple wordpad by C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为 ToolStripComboBox 派生自 ToolStripControlHost,而不是 ComboBox。您需要使用其 Control 属性来访问组合框。像这样:
用您需要测量的代码填充事件处理程序,并以自己的字体样式绘制字体名称。
This is because ToolStripComboBox derives from ToolStripControlHost, not ComboBox. You need to use its Control property to get to the combo box. Like this:
Fill in the event handlers with the code you need to measure and draw the font names in their own font style.