This commit is contained in:
2022-07-03 21:05:40 +00:00
parent 604a12bb1b
commit 0a54013ee4
3 changed files with 65 additions and 13 deletions

View File

@@ -32,6 +32,7 @@
this.cbQBItems = new System.Windows.Forms.ComboBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.ckNothing = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// label1
@@ -74,12 +75,24 @@
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// ckNothing
//
this.ckNothing.AutoSize = true;
this.ckNothing.Location = new System.Drawing.Point(16, 56);
this.ckNothing.Name = "ckNothing";
this.ckNothing.Size = new System.Drawing.Size(80, 17);
this.ckNothing.TabIndex = 15;
this.ckNothing.Text = "checkBox1";
this.ckNothing.UseVisualStyleBackColor = true;
this.ckNothing.CheckedChanged += new System.EventHandler(this.ckNothing_CheckedChanged);
//
// MapSelectQBItem
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(747, 150);
this.Controls.Add(this.ckNothing);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.cbQBItems);
@@ -91,6 +104,7 @@
this.Text = "QB Items";
this.Load += new System.EventHandler(this.MapSelectQBItem_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
@@ -100,5 +114,6 @@
private System.Windows.Forms.ComboBox cbQBItems;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckBox ckNothing;
}
}