toolStripComboBox设置字体样式?

时间:2011-03-01 13:21:15

标签: c# .net toolstrip

我用comboBox阅读了这个主题http://technicalsol.blogspot.com/2009/03/combobox-set-font-style.html但是在toolstripComboBox中不存在事件draw_item 我需要你的帮助。我正在用C#编写简单的wordpad。

1 个答案:

答案 0 :(得分:5)

这是因为ToolStripComboBox派生自ToolStripControlHost,而不是ComboBox。您需要使用其Control属性来到组合框。像这样:

public partial class Form1 : Form {
    public Form1() {
        InitializeComponent();
        ComboBox box = (ComboBox)toolStripComboBox1.Control;
        box.DrawMode = DrawMode.OwnerDrawVariable;
        box.MeasureItem += new MeasureItemEventHandler(box_MeasureItem);
        box.DrawItem += new DrawItemEventHandler(box_DrawItem);
    }

    void box_DrawItem(object sender, DrawItemEventArgs e) {
        // etc..
    }

    void box_MeasureItem(object sender, MeasureItemEventArgs e) {
        // etc..

    }
}

使用您需要测量的代码填写事件处理程序,并以自己的字体样式绘制字体名称。