| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- namespace Pur.Pop_upWindow
- {
- partial class frmDeleteTask
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.txt_bz = new System.Windows.Forms.TextBox();
- this.benCancel = new System.Windows.Forms.Button();
- this.btnConfirm = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(12, 14);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(29, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "备注";
- //
- // txt_bz
- //
- this.txt_bz.Location = new System.Drawing.Point(42, 11);
- this.txt_bz.MaxLength = 200;
- this.txt_bz.Multiline = true;
- this.txt_bz.Name = "txt_bz";
- this.txt_bz.Size = new System.Drawing.Size(315, 98);
- this.txt_bz.TabIndex = 1;
- //
- // benCancel
- //
- this.benCancel.Location = new System.Drawing.Point(93, 118);
- this.benCancel.Name = "benCancel";
- this.benCancel.Size = new System.Drawing.Size(75, 23);
- this.benCancel.TabIndex = 2;
- this.benCancel.Text = "取 消";
- this.benCancel.UseVisualStyleBackColor = true;
- this.benCancel.Click += new System.EventHandler(this.benCancel_Click);
- //
- // btnConfirm
- //
- this.btnConfirm.Location = new System.Drawing.Point(197, 118);
- this.btnConfirm.Name = "btnConfirm";
- this.btnConfirm.Size = new System.Drawing.Size(75, 23);
- this.btnConfirm.TabIndex = 3;
- this.btnConfirm.Text = "确 定";
- this.btnConfirm.UseVisualStyleBackColor = true;
- this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
- //
- // frmDeleteTask
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(381, 149);
- this.Controls.Add(this.btnConfirm);
- this.Controls.Add(this.benCancel);
- this.Controls.Add(this.txt_bz);
- this.Controls.Add(this.label1);
- this.Name = "frmDeleteTask";
- this.Text = "废标";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox txt_bz;
- private System.Windows.Forms.Button benCancel;
- private System.Windows.Forms.Button btnConfirm;
- }
- }
|