Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class EnumComboBox : ComboBox
  2. {
  3. public EnumComboBox() : base()
  4. {
  5. foreach (MyEnum p in Enum.GetValues(typeof(MyEnum)) {
  6. base.Items.Add(p);
  7. }
  8. SelectedIndex = 0;
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement