vote up 1 vote down star

Hi, I have a scenario where I am populating a combo box with the template names. Amongst the templates one would be a default template. I want to highlight the default template name when I populate the combo box (so that the user knows which one among the items is the default). Is it possible to do so? If yes how? I am using a Windows Form in C# 2.0.

flag

67% accept rate

3 Answers

vote up 1 vote down check

It depends a bit on how you want to hightlight the item. If you want to render the text of the default item in bold, you can achieve that like this (for this to work you need to set the DrawMode of the ComboBox to OwnerDrawFixed, and of course hook up the DrawItem event to the event handler):

I have populated the combobox with Template objects, defined like this:

private class Template
{
    public string Name { get; set; }
    public bool IsDefault { get; set; }

    public override string ToString()
    {
        return this.Name;
    }
}

...and the DrawItem event is implemented like this:

private void ComboBox_DrawItem(object sender, DrawItemEventArgs e)
{
    if (e.Index < 0)
    {
        return;
    }
    Template template = comboBox1.Items[e.Index] as Template;
    if (template != null)
    {

        Font font = comboBox1.Font;
        Brush backgroundColor;
        Brush textColor;

        if ((e.State & DrawItemState.Selected) == DrawItemState.Selected)
        {
            backgroundColor = SystemBrushes.Highlight;
            textColor = SystemBrushes.HighlightText;
        }
        else
        {
            backgroundColor = SystemBrushes.Window;
            textColor = SystemBrushes.WindowText;
        }
        if (template.IsDefault)
        {
            font = new Font(font, FontStyle.Bold);
        }
        e.Graphics.FillRectangle(backgroundColor, e.Bounds);
        e.Graphics.DrawString(template.Name, font, textColor, e.Bounds);

    }
}

That should get you going in the right direction, I hope.

link|flag
Just implemented your soln. Thanks a million Fredrik!!! This code seemed MAGIC to me :) – Rashmi Pandit May 19 at 4:55
vote up 0 vote down

Why don't you just select the default value so that it is displayed?

link|flag
vote up 0 vote down

Set combo box's DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable. And, Override Combobox_MeasureItem() and Combobox_DrawItem() methods, to achieve this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.