is anybody know of a way to make the combobox's content's width to autosize
i do not mean to combobox itself, just the opened content
|
|
You can't use it directly. Do a trick First iterate through all items of your combobox, check for the width of every items by assigning the text to a label. Then, check width every time, if width of current item gets greater than previous items then change the maximum width.
OR As suggested by stakx, you can use
|
|||||||||||||||
|
|
Here is very elegant solution. Just subscribe your combobox to this event handler:
This code was taken from the codeproject: Adjust combo box drop down list width to longest string width. But I have modified it to work with comboboxes filled with any data (not only strings). |
||||
|
|
Mostly the same code as in Javed Akram's second suggestion, but the width of the vertical scroll bar is added:
Use the code like this (on a form with a combobox with the name myComboBox):
|
||||
|
|
|
obj.ToString() doesn't work for me, I suggest to use myCombo.GetItemText(obj). This works for me:
|
|||
|
|