Common.cs 773 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.UI.Control
  6. {
  7. public enum ValveDirection
  8. {
  9. ToLeft = 1,
  10. ToRight = 2,
  11. ToTop = 3,
  12. ToBottom = 4
  13. }
  14. public enum LineOrientation
  15. {
  16. Horizontal=1,
  17. Vertical,
  18. }
  19. /// <summary>
  20. /// which valve should be turn on
  21. /// </summary>
  22. public enum SwithType
  23. {
  24. Left = 1,
  25. Right = 2
  26. }
  27. public enum CoupleValveInOutDirection
  28. {
  29. ToOut = 1,
  30. ToInner = 2
  31. }
  32. public enum MessageType
  33. {
  34. Info,
  35. /// <summary>
  36. /// notice for update or insert result
  37. /// </summary>
  38. Success,
  39. Warning,
  40. Erro
  41. }
  42. }