frmAddItem.Designer.cs
上传用户:jiupin
上传日期:2022-04-21
资源大小:1525k
文件大小:5k
源码类别:

ListView/ListBox

开发平台:

C#

  1. namespace WinListViewQQ
  2. {
  3.     partial class frmAddItem
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.btnSelectPath = new System.Windows.Forms.Button();
  29.             this.txtPath = new System.Windows.Forms.TextBox();
  30.             this.txtInfo = new System.Windows.Forms.TextBox();
  31.             this.btnAddItem = new System.Windows.Forms.Button();
  32.             this.label1 = new System.Windows.Forms.Label();
  33.             this.btnCancel = new System.Windows.Forms.Button();
  34.             this.SuspendLayout();
  35.             // 
  36.             // btnSelectPath
  37.             // 
  38.             this.btnSelectPath.Location = new System.Drawing.Point(273, 12);
  39.             this.btnSelectPath.Name = "btnSelectPath";
  40.             this.btnSelectPath.Size = new System.Drawing.Size(28, 23);
  41.             this.btnSelectPath.TabIndex = 0;
  42.             this.btnSelectPath.Text = "...";
  43.             this.btnSelectPath.UseVisualStyleBackColor = true;
  44.             this.btnSelectPath.Click += new System.EventHandler(this.btnSelectPath_Click);
  45.             // 
  46.             // txtPath
  47.             // 
  48.             this.txtPath.Location = new System.Drawing.Point(2, 11);
  49.             this.txtPath.Name = "txtPath";
  50.             this.txtPath.Size = new System.Drawing.Size(267, 21);
  51.             this.txtPath.TabIndex = 1;
  52.             // 
  53.             // txtInfo
  54.             // 
  55.             this.txtInfo.Location = new System.Drawing.Point(107, 41);
  56.             this.txtInfo.Name = "txtInfo";
  57.             this.txtInfo.Size = new System.Drawing.Size(160, 21);
  58.             this.txtInfo.TabIndex = 1;
  59.             // 
  60.             // btnAddItem
  61.             // 
  62.             this.btnAddItem.Location = new System.Drawing.Point(23, 79);
  63.             this.btnAddItem.Name = "btnAddItem";
  64.             this.btnAddItem.Size = new System.Drawing.Size(100, 23);
  65.             this.btnAddItem.TabIndex = 0;
  66.             this.btnAddItem.Text = "添加";
  67.             this.btnAddItem.UseVisualStyleBackColor = true;
  68.             this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
  69.             // 
  70.             // label1
  71.             // 
  72.             this.label1.AutoSize = true;
  73.             this.label1.Location = new System.Drawing.Point(0, 44);
  74.             this.label1.Name = "label1";
  75.             this.label1.Size = new System.Drawing.Size(77, 12);
  76.             this.label1.TabIndex = 2;
  77.             this.label1.Text = "对该项的描述";
  78.             // 
  79.             // btnCancel
  80.             // 
  81.             this.btnCancel.Location = new System.Drawing.Point(167, 79);
  82.             this.btnCancel.Name = "btnCancel";
  83.             this.btnCancel.Size = new System.Drawing.Size(100, 23);
  84.             this.btnCancel.TabIndex = 3;
  85.             this.btnCancel.Text = "取消";
  86.             this.btnCancel.UseVisualStyleBackColor = true;
  87.             this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  88.             // 
  89.             // frmAddItem
  90.             // 
  91.             this.AcceptButton = this.btnAddItem;
  92.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  93.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94.             this.ClientSize = new System.Drawing.Size(322, 117);
  95.             this.Controls.Add(this.btnCancel);
  96.             this.Controls.Add(this.label1);
  97.             this.Controls.Add(this.txtInfo);
  98.             this.Controls.Add(this.txtPath);
  99.             this.Controls.Add(this.btnAddItem);
  100.             this.Controls.Add(this.btnSelectPath);
  101.             this.Name = "frmAddItem";
  102.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  103.             this.Text = "添加程序";
  104.             this.ResumeLayout(false);
  105.             this.PerformLayout();
  106.         }
  107.         #endregion
  108.         private System.Windows.Forms.Button btnSelectPath;
  109.         private System.Windows.Forms.TextBox txtPath;
  110.         private System.Windows.Forms.TextBox txtInfo;
  111.         private System.Windows.Forms.Button btnAddItem;
  112.         private System.Windows.Forms.Label label1;
  113.         private System.Windows.Forms.Button btnCancel;
  114.     }
  115. }