Is there a way to bind a nullable Enum property to a combo box?
When choosing a value, and then leaving the combo box, the value reverts
back to the original value. It seems the databinding doesn' accept the
new value.
To populate the combo box:
cboPageMode.Dat aSource = Enum.GetValues( typeof(PageMode ));
And for the data binding:
cboPageMode.Dat aBindings.Add(" SelectedItem", _itemsDBS, "Mode");
When choosing a value, and then leaving the combo box, the value reverts
back to the original value. It seems the databinding doesn' accept the
new value.
To populate the combo box:
cboPageMode.Dat aSource = Enum.GetValues( typeof(PageMode ));
And for the data binding:
cboPageMode.Dat aBindings.Add(" SelectedItem", _itemsDBS, "Mode");
Comment