What else I have to do in order to show ReadAccess
enum members in this DatagridViewComboBox?
ReadDataGridViewComboBoxColumn.Items.Clear();
ReadDa
Adding to the answer Bradly Smith provided: One can get all Enum values (instead of naming each individually) easily using this code:
ReadDataGridViewComboBoxColumn.DataSource =
new List((ReadAccess[]) Enum.GetValues(typeof(ReadAccess)))
.Select(value => new { Display=value.ToString(), Value=(int)value })
.ToList();