GraphDirection.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 2019-09-17
  4. //
  5. // ***********************************************************************
  6. // <copyright file="GraphDirection.cs">
  7. // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
  8. // </copyright>
  9. //
  10. // Blog: https://www.cnblogs.com/bfyx
  11. // GitHub:https://github.com/kwwwvagaa/NetWinformControl
  12. // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
  13. //
  14. // If you use this code, please keep this note.
  15. // ***********************************************************************
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Linq;
  19. using System.Text;
  20. namespace HZH_Controls
  21. {
  22. /// <summary>
  23. /// Enum GraphDirection
  24. /// </summary>
  25. public enum GraphDirection
  26. {
  27. /// <summary>
  28. /// The upward
  29. /// </summary>
  30. Upward = 1,
  31. /// <summary>
  32. /// The downward
  33. /// </summary>
  34. Downward,
  35. /// <summary>
  36. /// The leftward
  37. /// </summary>
  38. Leftward,
  39. /// <summary>
  40. /// The rightward
  41. /// </summary>
  42. Rightward
  43. }
  44. }