general overhaul & add presets

This commit is contained in:
Vincent BOUQUET
2024-03-03 00:39:13 +01:00
parent ff57991f2d
commit ac1a6cf8d3
6 changed files with 569 additions and 33 deletions

25
MainForm.Designer.cs generated
View File

@@ -30,6 +30,9 @@
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
lbMain = new ListBox();
statusStripMain = new StatusStrip();
toolStripStatusLabel = new ToolStripStatusLabel();
statusStripMain.SuspendLayout();
SuspendLayout();
//
// lbMain
@@ -39,25 +42,45 @@
lbMain.ItemHeight = 15;
lbMain.Location = new Point(12, 23);
lbMain.Name = "lbMain";
lbMain.Size = new Size(776, 409);
lbMain.Size = new Size(776, 394);
lbMain.TabIndex = 0;
lbMain.MouseDoubleClick += lbMain_MouseDoubleClick;
//
// statusStripMain
//
statusStripMain.Items.AddRange(new ToolStripItem[] { toolStripStatusLabel });
statusStripMain.Location = new Point(0, 428);
statusStripMain.Name = "statusStripMain";
statusStripMain.Size = new Size(800, 22);
statusStripMain.TabIndex = 1;
statusStripMain.Text = "statusStrip1";
//
// toolStripStatusLabel
//
toolStripStatusLabel.Name = "toolStripStatusLabel";
toolStripStatusLabel.Size = new Size(0, 17);
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(statusStripMain);
Controls.Add(lbMain);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "MainForm";
Text = "RoboSpot MotionCamera finder";
FormClosing += MainForm_FormClosing;
statusStripMain.ResumeLayout(false);
statusStripMain.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private ListBox lbMain;
private StatusStrip statusStripMain;
private ToolStripStatusLabel toolStripStatusLabel;
}
}