up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question

68% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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|improve this answer
Just implemented your soln. Thanks a million Fredrik!!! This code seemed MAGIC to me :) – Rashmi Pandit May 19 '09 at 4:55
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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