UCListView.Designer.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // ***********************************************************************
  2. // Assembly : HZH_Controls
  3. // Created : 08-22-2019
  4. //
  5. // ***********************************************************************
  6. // <copyright file="UCListView.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 UCListView.
  20. /// Implements the <see cref="System.Windows.Forms.UserControl" />
  21. /// </summary>
  22. /// <seealso cref="System.Windows.Forms.UserControl" />
  23. partial class UCListView
  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.FlowLayoutPanel();
  49. this.panPage = new System.Windows.Forms.Panel();
  50. this.SuspendLayout();
  51. //
  52. // panMain
  53. //
  54. this.panMain.AutoScroll = true;
  55. this.panMain.Dock = System.Windows.Forms.DockStyle.Fill;
  56. this.panMain.Location = new System.Drawing.Point(0, 0);
  57. this.panMain.Margin = new System.Windows.Forms.Padding(0);
  58. this.panMain.Name = "panMain";
  59. this.panMain.Padding = new System.Windows.Forms.Padding(5);
  60. this.panMain.Size = new System.Drawing.Size(462, 319);
  61. this.panMain.TabIndex = 1;
  62. this.panMain.Resize += new System.EventHandler(this.panMain_Resize);
  63. //
  64. // panPage
  65. //
  66. this.panPage.Dock = System.Windows.Forms.DockStyle.Bottom;
  67. this.panPage.Location = new System.Drawing.Point(0, 319);
  68. this.panPage.Name = "panPage";
  69. this.panPage.Size = new System.Drawing.Size(462, 44);
  70. this.panPage.TabIndex = 0;
  71. this.panPage.Visible = false;
  72. //
  73. // UCListView
  74. //
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  76. this.BackColor = System.Drawing.Color.White;
  77. this.Controls.Add(this.panMain);
  78. this.Controls.Add(this.panPage);
  79. this.Margin = new System.Windows.Forms.Padding(0);
  80. this.Name = "UCListView";
  81. this.Size = new System.Drawing.Size(462, 363);
  82. this.Load += new System.EventHandler(this.UCListView_Load);
  83. this.ResumeLayout(false);
  84. }
  85. #endregion
  86. /// <summary>
  87. /// The pan main
  88. /// </summary>
  89. private System.Windows.Forms.FlowLayoutPanel panMain;
  90. /// <summary>
  91. /// The pan page
  92. /// </summary>
  93. private System.Windows.Forms.Panel panPage;
  94. }
  95. }