|
@@ -31,7 +31,6 @@ namespace test111
|
|
|
{
|
|
|
this.components = new System.ComponentModel.Container();
|
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
|
- this.textBox1 = new System.Windows.Forms.TextBox();
|
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
|
this.test111DataSet = new test111.test111DataSet();
|
|
|
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
|
@@ -39,6 +38,7 @@ namespace test111
|
|
|
this.gggDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
this.rfdDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
this.sdgdsgDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
|
+ this.checkBox1 = new System.Windows.Forms.CheckBox();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.test111DataSet)).BeginInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
|
@@ -53,13 +53,6 @@ namespace test111
|
|
|
this.button1.Text = "button1";
|
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
|
//
|
|
|
- // textBox1
|
|
|
- //
|
|
|
- this.textBox1.Location = new System.Drawing.Point(257, 162);
|
|
|
- this.textBox1.Name = "textBox1";
|
|
|
- this.textBox1.Size = new System.Drawing.Size(100, 20);
|
|
|
- this.textBox1.TabIndex = 1;
|
|
|
- //
|
|
|
// dataGridView1
|
|
|
//
|
|
|
this.dataGridView1.AutoGenerateColumns = false;
|
|
@@ -106,13 +99,23 @@ namespace test111
|
|
|
this.sdgdsgDataGridViewTextBoxColumn.HeaderText = "sdgdsg";
|
|
|
this.sdgdsgDataGridViewTextBoxColumn.Name = "sdgdsgDataGridViewTextBoxColumn";
|
|
|
//
|
|
|
+ // checkBox1
|
|
|
+ //
|
|
|
+ this.checkBox1.AutoSize = true;
|
|
|
+ this.checkBox1.Location = new System.Drawing.Point(173, 204);
|
|
|
+ this.checkBox1.Name = "checkBox1";
|
|
|
+ this.checkBox1.Size = new System.Drawing.Size(80, 17);
|
|
|
+ this.checkBox1.TabIndex = 3;
|
|
|
+ this.checkBox1.Text = "checkBox1";
|
|
|
+ this.checkBox1.UseVisualStyleBackColor = true;
|
|
|
+ //
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
|
+ this.Controls.Add(this.checkBox1);
|
|
|
this.Controls.Add(this.dataGridView1);
|
|
|
- this.Controls.Add(this.textBox1);
|
|
|
this.Controls.Add(this.button1);
|
|
|
this.Name = "Form1";
|
|
|
this.Text = "Form1";
|
|
@@ -128,7 +131,6 @@ namespace test111
|
|
|
#endregion
|
|
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
|
- private System.Windows.Forms.TextBox textBox1;
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
|
private test111DataSet test111DataSet;
|
|
|
private System.Windows.Forms.BindingSource bindingSource1;
|
|
@@ -136,6 +138,7 @@ namespace test111
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn gggDataGridViewTextBoxColumn;
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn rfdDataGridViewTextBoxColumn;
|
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn sdgdsgDataGridViewTextBoxColumn;
|
|
|
+ private System.Windows.Forms.CheckBox checkBox1;
|
|
|
}
|
|
|
}
|
|
|
|