123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- // ***********************************************************************
- // Assembly : HZH_Controls
- // Created : 08-08-2019
- //
- // ***********************************************************************
- // <copyright file="UCListItemExt.Designer.cs">
- // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
- // </copyright>
- //
- // 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
- {
- /// <summary>
- /// Class UCListItemExt.
- /// Implements the <see cref="System.Windows.Forms.UserControl" />
- /// </summary>
- /// <seealso cref="System.Windows.Forms.UserControl" />
- partial class UCListItemExt
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region 组件设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- 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
- /// <summary>
- /// The label1
- /// </summary>
- private System.Windows.Forms.Label label1;
- /// <summary>
- /// The label2
- /// </summary>
- private System.Windows.Forms.Label label2;
- /// <summary>
- /// The label3
- /// </summary>
- private System.Windows.Forms.Label label3;
- /// <summary>
- /// The split line h1
- /// </summary>
- private UCSplitLine_H splitLine_H1;
- }
- }
|