// *********************************************************************** // Assembly : HZH_Controls // Created : 08-08-2019 // // *********************************************************************** // // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com // // // Blog: https://www.cnblogs.com/bfyx // GitHub:https://github.com/kwwwvagaa/NetWinformControl // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git // // If you use this code, please keep this note. // *********************************************************************** namespace HZH_Controls.Controls { /// /// Class UCTimePanel. /// Implements the /// /// partial class UCTimePanel { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.panMain = new System.Windows.Forms.TableLayoutPanel(); this.ucSplitLine_V1 = new HZH_Controls.Controls.UCSplitLine_V(); this.ucSplitLine_V2 = new HZH_Controls.Controls.UCSplitLine_V(); this.ucSplitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H(); this.ucSplitLine_H2 = new HZH_Controls.Controls.UCSplitLine_H(); this.SuspendLayout(); // // panMain // this.panMain.ColumnCount = 1; this.panMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.panMain.Dock = System.Windows.Forms.DockStyle.Fill; this.panMain.Location = new System.Drawing.Point(1, 1); this.panMain.Name = "panMain"; this.panMain.RowCount = 1; this.panMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.panMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.panMain.Size = new System.Drawing.Size(99, 228); this.panMain.TabIndex = 0; // // ucSplitLine_V1 // this.ucSplitLine_V1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238))))); this.ucSplitLine_V1.Dock = System.Windows.Forms.DockStyle.Left; this.ucSplitLine_V1.Location = new System.Drawing.Point(0, 0); this.ucSplitLine_V1.Name = "ucSplitLine_V1"; this.ucSplitLine_V1.Size = new System.Drawing.Size(1, 230); this.ucSplitLine_V1.TabIndex = 0; this.ucSplitLine_V1.TabStop = false; this.ucSplitLine_V1.Visible = false; // // ucSplitLine_V2 // this.ucSplitLine_V2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238))))); this.ucSplitLine_V2.Dock = System.Windows.Forms.DockStyle.Right; this.ucSplitLine_V2.Location = new System.Drawing.Point(100, 0); this.ucSplitLine_V2.Name = "ucSplitLine_V2"; this.ucSplitLine_V2.Size = new System.Drawing.Size(1, 230); this.ucSplitLine_V2.TabIndex = 1; this.ucSplitLine_V2.TabStop = false; this.ucSplitLine_V2.Visible = false; // // ucSplitLine_H1 // this.ucSplitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238))))); this.ucSplitLine_H1.Dock = System.Windows.Forms.DockStyle.Top; this.ucSplitLine_H1.Location = new System.Drawing.Point(1, 0); this.ucSplitLine_H1.Name = "ucSplitLine_H1"; this.ucSplitLine_H1.Size = new System.Drawing.Size(99, 1); this.ucSplitLine_H1.TabIndex = 0; this.ucSplitLine_H1.TabStop = false; this.ucSplitLine_H1.Visible = false; // // ucSplitLine_H2 // this.ucSplitLine_H2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238))))); this.ucSplitLine_H2.Dock = System.Windows.Forms.DockStyle.Bottom; this.ucSplitLine_H2.Location = new System.Drawing.Point(1, 229); this.ucSplitLine_H2.Name = "ucSplitLine_H2"; this.ucSplitLine_H2.Size = new System.Drawing.Size(99, 1); this.ucSplitLine_H2.TabIndex = 2; this.ucSplitLine_H2.TabStop = false; this.ucSplitLine_H2.Visible = false; // // UCTimePanel // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.panMain); this.Controls.Add(this.ucSplitLine_H2); this.Controls.Add(this.ucSplitLine_H1); this.Controls.Add(this.ucSplitLine_V2); this.Controls.Add(this.ucSplitLine_V1); this.Name = "UCTimePanel"; this.Size = new System.Drawing.Size(101, 230); this.Load += new System.EventHandler(this.UCTimePanel_Load); this.ResumeLayout(false); } #endregion /// /// The pan main /// private System.Windows.Forms.TableLayoutPanel panMain; /// /// The uc split line v1 /// private UCSplitLine_V ucSplitLine_V1; /// /// The uc split line v2 /// private UCSplitLine_V ucSplitLine_V2; /// /// The uc split line h1 /// private UCSplitLine_H ucSplitLine_H1; /// /// The uc split line h2 /// private UCSplitLine_H ucSplitLine_H2; } }