|
@@ -44,6 +44,7 @@ namespace Lab1_
|
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
|
this.button3 = new System.Windows.Forms.Button();
|
|
|
+ this.name = new System.Windows.Forms.TextBox();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.aero03DataSet)).BeginInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.tripBindingSource)).BeginInit();
|
|
@@ -132,6 +133,7 @@ namespace Lab1_
|
|
|
this.button1.TabIndex = 1;
|
|
|
this.button1.Text = "Авиакомпании";
|
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
|
+ this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
|
//
|
|
|
// button2
|
|
|
//
|
|
@@ -141,6 +143,7 @@ namespace Lab1_
|
|
|
this.button2.TabIndex = 2;
|
|
|
this.button2.Text = "Добавить";
|
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
|
+ this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
|
//
|
|
|
// button3
|
|
|
//
|
|
@@ -150,12 +153,22 @@ namespace Lab1_
|
|
|
this.button3.TabIndex = 3;
|
|
|
this.button3.Text = "Удалить изменения";
|
|
|
this.button3.UseVisualStyleBackColor = true;
|
|
|
+ this.button3.Click += new System.EventHandler(this.button3_Click);
|
|
|
+ //
|
|
|
+ // name
|
|
|
+ //
|
|
|
+ this.name.Location = new System.Drawing.Point(466, 565);
|
|
|
+ this.name.MaxLength = 10;
|
|
|
+ this.name.Name = "name";
|
|
|
+ this.name.Size = new System.Drawing.Size(100, 20);
|
|
|
+ this.name.TabIndex = 4;
|
|
|
//
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.ClientSize = new System.Drawing.Size(786, 606);
|
|
|
+ this.Controls.Add(this.name);
|
|
|
this.Controls.Add(this.button3);
|
|
|
this.Controls.Add(this.button2);
|
|
|
this.Controls.Add(this.button1);
|
|
@@ -167,6 +180,7 @@ namespace Lab1_
|
|
|
((System.ComponentModel.ISupportInitialize)(this.aero03DataSet)).EndInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.tripBindingSource)).EndInit();
|
|
|
this.ResumeLayout(false);
|
|
|
+ this.PerformLayout();
|
|
|
|
|
|
}
|
|
|
|
|
@@ -186,6 +200,7 @@ namespace Lab1_
|
|
|
private System.Windows.Forms.Button button1;
|
|
|
private System.Windows.Forms.Button button2;
|
|
|
private System.Windows.Forms.Button button3;
|
|
|
+ private System.Windows.Forms.TextBox name;
|
|
|
}
|
|
|
}
|
|
|
|