UCHorizontalList.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-08-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCHorizontalList.Designer.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. namespace HZH_Controls.Controls
  17. {
  18. /// <summary>
  19. /// Class UCHorizontalList.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCHorizontalList
  24. {
  25. /// <summary>
  26. /// 必需的设计器变量。
  27. /// </summary>
  28. private System.ComponentModel.IContainer components = null;
  29. /// <summary>
  30. /// 清理所有正在使用的资源。
  31. /// </summary>
  32. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  33. protected override void Dispose(bool disposing)
  34. {
  35. if (disposing && (components != null))
  36. {
  37. components.Dispose();
  38. }
  39. base.Dispose(disposing);
  40. }
  41. #region 组件设计器生成的代码
  42. /// <summary>
  43. /// 设计器支持所需的方法 - 不要
  44. /// 使用代码编辑器修改此方法的内容。
  45. /// </summary>
  46. private void InitializeComponent()
  47. {
  48. this.panMain = new System.Windows.Forms.Panel();
  49. this.panList = new System.Windows.Forms.Panel();
  50. this.panRight = new System.Windows.Forms.Panel();
  51. this.panLeft = new System.Windows.Forms.Panel();
  52. this.panMain.SuspendLayout();
  53. this.SuspendLayout();
  54. //
  55. // panMain
  56. //
  57. this.panMain.Controls.Add(this.panList);
  58. this.panMain.Dock = System.Windows.Forms.DockStyle.Fill;
  59. this.panMain.Location = new System.Drawing.Point(46, 0);
  60. this.panMain.Name = "panMain";
  61. this.panMain.Size = new System.Drawing.Size(422, 53);
  62. this.panMain.TabIndex = 3;
  63. //
  64. // panList
  65. //
  66. this.panList.Anchor = System.Windows.Forms.AnchorStyles.Left;
  67. this.panList.BackColor = System.Drawing.Color.Transparent;
  68. this.panList.Location = new System.Drawing.Point(0, 0);
  69. this.panList.Name = "panList";
  70. this.panList.Size = new System.Drawing.Size(401, 53);
  71. this.panList.TabIndex = 0;
  72. //
  73. // panRight
  74. //
  75. this.panRight.BackgroundImage = global::HZH_Controls.Properties.Resources.chevron_right;
  76. this.panRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  77. this.panRight.Dock = System.Windows.Forms.DockStyle.Right;
  78. this.panRight.Location = new System.Drawing.Point(468, 0);
  79. this.panRight.Name = "panRight";
  80. this.panRight.Size = new System.Drawing.Size(46, 53);
  81. this.panRight.TabIndex = 2;
  82. this.panRight.Visible = false;
  83. this.panRight.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panRight_MouseDown);
  84. //
  85. // panLeft
  86. //
  87. this.panLeft.BackgroundImage = global::HZH_Controls.Properties.Resources.chevron_left;
  88. this.panLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  89. this.panLeft.Dock = System.Windows.Forms.DockStyle.Left;
  90. this.panLeft.Location = new System.Drawing.Point(0, 0);
  91. this.panLeft.Name = "panLeft";
  92. this.panLeft.Size = new System.Drawing.Size(46, 53);
  93. this.panLeft.TabIndex = 1;
  94. this.panLeft.Visible = false;
  95. this.panLeft.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panLeft_MouseDown);
  96. //
  97. // UCHorizontalList
  98. //
  99. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  100. this.Controls.Add(this.panMain);
  101. this.Controls.Add(this.panRight);
  102. this.Controls.Add(this.panLeft);
  103. this.Name = "UCHorizontalList";
  104. this.Size = new System.Drawing.Size(514, 53);
  105. this.panMain.ResumeLayout(false);
  106. this.ResumeLayout(false);
  107. }
  108. #endregion
  109. /// <summary>
  110. /// The pan left
  111. /// </summary>
  112. private System.Windows.Forms.Panel panLeft;
  113. /// <summary>
  114. /// The pan right
  115. /// </summary>
  116. private System.Windows.Forms.Panel panRight;
  117. /// <summary>
  118. /// The pan main
  119. /// </summary>
  120. private System.Windows.Forms.Panel panMain;
  121. /// <summary>
  122. /// The pan list
  123. /// </summary>
  124. private System.Windows.Forms.Panel panList;
  125. }
  126. }