|
|
@@ -32,6 +32,7 @@
|
|
|
pictureBox1 = new PictureBox();
|
|
|
butFormBatch = new Button();
|
|
|
butProductEdit = new Button();
|
|
|
+ butResetCfg = new Button();
|
|
|
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
|
|
|
SuspendLayout();
|
|
|
//
|
|
|
@@ -66,11 +67,22 @@
|
|
|
butProductEdit.UseVisualStyleBackColor = true;
|
|
|
butProductEdit.Click += butProductEdit_Click;
|
|
|
//
|
|
|
+ // butResetCfg
|
|
|
+ //
|
|
|
+ butResetCfg.Location = new Point(390, 75);
|
|
|
+ butResetCfg.Name = "butResetCfg";
|
|
|
+ butResetCfg.Size = new Size(72, 25);
|
|
|
+ butResetCfg.TabIndex = 4;
|
|
|
+ butResetCfg.Text = "Reset CFG";
|
|
|
+ butResetCfg.UseVisualStyleBackColor = true;
|
|
|
+ butResetCfg.Click += butResetCfg_Click;
|
|
|
+ //
|
|
|
// FormLauncher
|
|
|
//
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
- ClientSize = new Size(478, 104);
|
|
|
+ ClientSize = new Size(478, 109);
|
|
|
+ Controls.Add(butResetCfg);
|
|
|
Controls.Add(butProductEdit);
|
|
|
Controls.Add(butFormBatch);
|
|
|
Controls.Add(pictureBox1);
|
|
|
@@ -91,5 +103,6 @@
|
|
|
private PictureBox pictureBox1;
|
|
|
private Button butFormBatch;
|
|
|
private Button butProductEdit;
|
|
|
+ private Button butResetCfg;
|
|
|
}
|
|
|
}
|