I am using combobox with dynamic content, i.e. I repopulate the combobox on other user actions.I have trouble with the performance of AddItem operations. It is extremely CPU expensive. Some of my comboboxes have over 100 elements (bad UX, I know :-)).Is there a solution to this, other than to limit the number of items?Sample test code:
ctrl.Clear();
for (var i = 0; i < 500; i++) {
ctrl.AddItem("desc" + i, "val" + i);
}