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.
|
|
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 I have populated the combobox with Template objects, defined like this:
...and the DrawItem event is implemented like this:
That should get you going in the right direction, I hope. |
||
|
|
|
Why don't you just select the default value so that it is displayed? |
||
|
|
|
|
Set combo box's DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable. And, Override Combobox_MeasureItem() and Combobox_DrawItem() methods, to achieve this. |
||
|
|
