|
@@ -32,6 +32,8 @@ namespace project
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
|
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
|
+ this.button1 = new System.Windows.Forms.Button();
|
|
|
+ this.button2 = new System.Windows.Forms.Button();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
|
this.SuspendLayout();
|
|
@@ -58,11 +60,37 @@ namespace project
|
|
|
this.pictureBox1.TabStop = false;
|
|
|
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
|
|
|
//
|
|
|
+ // button1
|
|
|
+ //
|
|
|
+ this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
|
+ this.button1.Location = new System.Drawing.Point(12, 10);
|
|
|
+ this.button1.Name = "button1";
|
|
|
+ this.button1.Size = new System.Drawing.Size(123, 34);
|
|
|
+ this.button1.TabIndex = 13;
|
|
|
+ this.button1.Text = "Изменить";
|
|
|
+ this.button1.UseVisualStyleBackColor = true;
|
|
|
+ this.button1.Visible = false;
|
|
|
+ this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
|
+ //
|
|
|
+ // button2
|
|
|
+ //
|
|
|
+ this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
|
+ this.button2.Location = new System.Drawing.Point(151, 10);
|
|
|
+ this.button2.Name = "button2";
|
|
|
+ this.button2.Size = new System.Drawing.Size(123, 34);
|
|
|
+ this.button2.TabIndex = 14;
|
|
|
+ this.button2.Text = "Удалить";
|
|
|
+ this.button2.UseVisualStyleBackColor = true;
|
|
|
+ this.button2.Visible = false;
|
|
|
+ this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
|
+ //
|
|
|
// Main
|
|
|
//
|
|
|
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.button2);
|
|
|
+ this.Controls.Add(this.button1);
|
|
|
this.Controls.Add(this.pictureBox1);
|
|
|
this.Controls.Add(this.dataGridView1);
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
@@ -81,5 +109,7 @@ namespace project
|
|
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
|
+ private System.Windows.Forms.Button button1;
|
|
|
+ private System.Windows.Forms.Button button2;
|
|
|
}
|
|
|
}
|