📄 form_repair_price.designer.cs
字号:
namespace RepairCRM
{
partial class Form_repair_price
{
/// <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 Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.value = new System.Windows.Forms.TextBox();
this.name = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.cancal = new System.Windows.Forms.Button();
this.findsome = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// value
//
this.value.Location = new System.Drawing.Point(321, 26);
this.value.Name = "value";
this.value.Size = new System.Drawing.Size(100, 21);
this.value.TabIndex = 1;
//
// name
//
this.name.AutoSize = true;
this.name.Location = new System.Drawing.Point(250, 30);
this.name.Name = "name";
this.name.Size = new System.Drawing.Size(65, 12);
this.name.TabIndex = 0;
this.name.Text = "故障现象:";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.name);
this.groupBox1.Controls.Add(this.value);
this.groupBox1.Location = new System.Drawing.Point(49, 17);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(688, 63);
this.groupBox1.TabIndex = 46;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "维修价格估计";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.cancal);
this.groupBox2.Controls.Add(this.findsome);
this.groupBox2.Location = new System.Drawing.Point(301, 81);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(200, 46);
this.groupBox2.TabIndex = 74;
this.groupBox2.TabStop = false;
//
// cancal
//
this.cancal.Location = new System.Drawing.Point(105, 15);
this.cancal.Name = "cancal";
this.cancal.Size = new System.Drawing.Size(75, 23);
this.cancal.TabIndex = 9;
this.cancal.Text = "退出";
this.cancal.UseVisualStyleBackColor = true;
this.cancal.Click += new System.EventHandler(this.cancal_Click);
//
// findsome
//
this.findsome.Location = new System.Drawing.Point(24, 15);
this.findsome.Name = "findsome";
this.findsome.Size = new System.Drawing.Size(75, 23);
this.findsome.TabIndex = 8;
this.findsome.Text = "查询";
this.findsome.UseVisualStyleBackColor = true;
this.findsome.Click += new System.EventHandler(this.findsome_Click);
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.Column2,
this.Column3,
this.Column4,
this.Column5});
this.dataGridView1.Location = new System.Drawing.Point(2, 140);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(790, 321);
this.dataGridView1.TabIndex = 75;
this.dataGridView1.Visible = false;
//
// Column1
//
this.Column1.HeaderText = "序号";
this.Column1.Name = "Column1";
this.Column1.ReadOnly = true;
//
// Column2
//
this.Column2.HeaderText = "故障描述";
this.Column2.Name = "Column2";
this.Column2.ReadOnly = true;
this.Column2.Width = 350;
//
// Column3
//
this.Column3.HeaderText = "工时费总价";
this.Column3.Name = "Column3";
this.Column3.ReadOnly = true;
this.Column3.Width = 130;
//
// Column4
//
this.Column4.HeaderText = "材料费总价";
this.Column4.Name = "Column4";
this.Column4.ReadOnly = true;
this.Column4.Width = 130;
//
// Column5
//
this.Column5.HeaderText = "维修总价";
this.Column5.Name = "Column5";
this.Column5.ReadOnly = true;
this.Column5.Width = 120;
//
// Form_repair_price
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.ClientSize = new System.Drawing.Size(792, 473);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Location = new System.Drawing.Point(0, 0);
this.Name = "Form_repair_price";
this.Text = "维修价格估计";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox value;
private System.Windows.Forms.Label name;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button cancal;
private System.Windows.Forms.Button findsome;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -