115 lines
4.9 KiB
C#
115 lines
4.9 KiB
C#
|
namespace AssistClient
|
|||
|
{
|
|||
|
partial class FrmRepairInfo
|
|||
|
{
|
|||
|
/// <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.label2 = new System.Windows.Forms.Label();
|
|||
|
this.tbInfo = new System.Windows.Forms.TextBox();
|
|||
|
this.btnSave = new System.Windows.Forms.Button();
|
|||
|
this.btnCancel = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(51, 86);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(77, 12);
|
|||
|
this.label1.TabIndex = 0;
|
|||
|
this.label1.Text = "异常情况描述";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
this.label2.Location = new System.Drawing.Point(159, 9);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(201, 28);
|
|||
|
this.label2.TabIndex = 1;
|
|||
|
this.label2.Text = "修复台修复情况汇总";
|
|||
|
//
|
|||
|
// tbInfo
|
|||
|
//
|
|||
|
this.tbInfo.Location = new System.Drawing.Point(164, 66);
|
|||
|
this.tbInfo.Multiline = true;
|
|||
|
this.tbInfo.Name = "tbInfo";
|
|||
|
this.tbInfo.Size = new System.Drawing.Size(398, 60);
|
|||
|
this.tbInfo.TabIndex = 2;
|
|||
|
this.tbInfo.Text = "断线,破洞";
|
|||
|
//
|
|||
|
// btnSave
|
|||
|
//
|
|||
|
this.btnSave.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
this.btnSave.Location = new System.Drawing.Point(165, 155);
|
|||
|
this.btnSave.Name = "btnSave";
|
|||
|
this.btnSave.Size = new System.Drawing.Size(110, 40);
|
|||
|
this.btnSave.TabIndex = 7;
|
|||
|
this.btnSave.Text = "异常确认";
|
|||
|
this.btnSave.UseVisualStyleBackColor = true;
|
|||
|
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
|||
|
//
|
|||
|
// btnCancel
|
|||
|
//
|
|||
|
this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
this.btnCancel.Location = new System.Drawing.Point(342, 155);
|
|||
|
this.btnCancel.Name = "btnCancel";
|
|||
|
this.btnCancel.Size = new System.Drawing.Size(110, 40);
|
|||
|
this.btnCancel.TabIndex = 8;
|
|||
|
this.btnCancel.Text = "无异常";
|
|||
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|||
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|||
|
//
|
|||
|
// FrmRepairInfo
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.BackColor = System.Drawing.SystemColors.ActiveCaption;
|
|||
|
this.ClientSize = new System.Drawing.Size(613, 228);
|
|||
|
this.Controls.Add(this.btnCancel);
|
|||
|
this.Controls.Add(this.btnSave);
|
|||
|
this.Controls.Add(this.tbInfo);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Name = "FrmRepairInfo";
|
|||
|
this.Text = "情况汇总";
|
|||
|
this.Load += new System.EventHandler(this.FrmRepairInfo_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.TextBox tbInfo;
|
|||
|
private System.Windows.Forms.Button btnSave;
|
|||
|
private System.Windows.Forms.Button btnCancel;
|
|||
|
}
|
|||
|
}
|