This commit is contained in:
2022-07-09 23:37:24 +00:00
parent 059546b868
commit ce9278b146
6 changed files with 17 additions and 12 deletions

View File

@@ -32,7 +32,7 @@
this.btnOK = new System.Windows.Forms.Button();
this.Object = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Fix = new System.Windows.Forms.DataGridViewButtonColumn();
this.Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ObjectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Problem = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ObjectId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.AyaPrice = new System.Windows.Forms.DataGridViewTextBoxColumn();
@@ -51,7 +51,7 @@
this.grid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Object,
this.Fix,
this.Name,
this.ObjectName,
this.Problem,
this.ObjectId,
this.AyaPrice,
@@ -82,15 +82,16 @@
//
// Fix
//
this.Fix.DataPropertyName = "Fix";
this.Fix.HeaderText = "Fix";
this.Fix.Name = "Fix";
this.Fix.ReadOnly = true;
//
// Name
// ObjectName
//
this.Name.HeaderText = "Name";
this.Name.Name = "Name";
this.Name.ReadOnly = true;
this.ObjectName.HeaderText = "Name";
this.ObjectName.Name = "ObjectName";
this.ObjectName.ReadOnly = true;
//
// Problem
//
@@ -153,7 +154,7 @@
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.DataGridViewTextBoxColumn Object;
private System.Windows.Forms.DataGridViewButtonColumn Fix;
private System.Windows.Forms.DataGridViewTextBoxColumn Name;
private System.Windows.Forms.DataGridViewTextBoxColumn ObjectName;
private System.Windows.Forms.DataGridViewTextBoxColumn Problem;
private System.Windows.Forms.DataGridViewTextBoxColumn ObjectId;
private System.Windows.Forms.DataGridViewTextBoxColumn AyaPrice;