// *********************************************************************** // 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 UCListItemExt. /// Implements the /// /// partial class UCListItemExt { /// /// 必需的设计器变量。 /// 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.label1 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.splitLine_H1 = new HZH_Controls.Controls.UCSplitLine_H(); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.Dock = System.Windows.Forms.DockStyle.Fill; this.label1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0); this.label1.Size = new System.Drawing.Size(173, 48); this.label1.TabIndex = 0; this.label1.Text = "label1"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.label1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.item_MouseDown); // // label3 // this.label3.Dock = System.Windows.Forms.DockStyle.Right; this.label3.Font = new System.Drawing.Font("微软雅黑", 14F); this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(73)))), ((int)(((byte)(119)))), ((int)(((byte)(232))))); this.label3.Location = new System.Drawing.Point(173, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(139, 48); this.label3.TabIndex = 2; this.label3.Text = "label3"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.item_MouseDown); // // splitLine_H1 // this.splitLine_H1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(238)))), ((int)(((byte)(238))))); this.splitLine_H1.Dock = System.Windows.Forms.DockStyle.Bottom; this.splitLine_H1.Location = new System.Drawing.Point(0, 48); this.splitLine_H1.MaximumSize = new System.Drawing.Size(0, 1); this.splitLine_H1.Name = "splitLine_H1"; this.splitLine_H1.Size = new System.Drawing.Size(355, 1); this.splitLine_H1.TabIndex = 3; this.splitLine_H1.TabStop = false; // // label2 // this.label2.Dock = System.Windows.Forms.DockStyle.Right; this.label2.Image = global::HZH_Controls.Properties.Resources.more1; this.label2.Location = new System.Drawing.Point(312, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(43, 48); this.label2.TabIndex = 1; this.label2.Visible = false; this.label2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.item_MouseDown); // // UCListItemExt // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.label1); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.splitLine_H1); this.Name = "UCListItemExt"; this.Size = new System.Drawing.Size(355, 49); this.ResumeLayout(false); } #endregion /// /// The label1 /// private System.Windows.Forms.Label label1; /// /// The label2 /// private System.Windows.Forms.Label label2; /// /// The label3 /// private System.Windows.Forms.Label label3; /// /// The split line h1 /// private UCSplitLine_H splitLine_H1; } }