DialogButton.cs 198 B

1234567891011121314151617
  1. using System;
  2. namespace OpenSEMI.ClientBase
  3. {
  4. [Flags]
  5. public enum DialogButton
  6. {
  7. Yes = 0x1,
  8. OK = 0x2,
  9. Continue = 0x4,
  10. Transfer = 0x8,
  11. Restart = 0x10,
  12. No = 0x20,
  13. Cancel = 0x40
  14. }
  15. }