I have a custom descendant DataGridViewComboBoxColumn with the following property value Itemsset in design mode:
Itema
Itemb
Itemc
At runtime, I change this property Itemsas follows (example):
for (int i = 0; i < Items.Count; i++) {
Items(i) = Convert.ToString(Items(i)) + " CHANGED";
}
After I close the form and return to development mode, I can see the property value set to
ItemA CHANGED
ItemB CHANGED
ItemC CHANGED
I would not believe that this is possible, but this is what I get. After 5 starts, I see that each element has a suffix CHANGED CHANGED CHANGED CHANGED CHANGED.
, , Paint DataGridViewComboBoxCell. ( , , Items.Count = 0).