feat(ui): add Auto Nest button to toolstrip next to engine selector

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 22:36:54 -04:00
parent 4e747a8e6c
commit 5c79fbe73d
+12 -1
View File
@@ -148,6 +148,7 @@
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.engineLabel = new System.Windows.Forms.ToolStripLabel(); this.engineLabel = new System.Windows.Forms.ToolStripLabel();
this.engineComboBox = new System.Windows.Forms.ToolStripComboBox(); this.engineComboBox = new System.Windows.Forms.ToolStripComboBox();
this.btnAutoNest = new System.Windows.Forms.ToolStripButton();
this.pEPToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.pEPToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openNestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openNestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout();
@@ -1002,7 +1003,8 @@
this.btnZoomToFit, this.btnZoomToFit,
this.toolStripSeparator4, this.toolStripSeparator4,
this.engineLabel, this.engineLabel,
this.engineComboBox}); this.engineComboBox,
this.btnAutoNest});
this.toolStrip1.Location = new System.Drawing.Point(0, 24); this.toolStrip1.Location = new System.Drawing.Point(0, 24);
this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(1098, 35); this.toolStrip1.Size = new System.Drawing.Size(1098, 35);
@@ -1173,6 +1175,14 @@
this.engineComboBox.Name = "engineComboBox"; this.engineComboBox.Name = "engineComboBox";
this.engineComboBox.Size = new System.Drawing.Size(100, 35); this.engineComboBox.Size = new System.Drawing.Size(100, 35);
// //
// btnAutoNest
//
this.btnAutoNest.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnAutoNest.Name = "btnAutoNest";
this.btnAutoNest.Size = new System.Drawing.Size(64, 32);
this.btnAutoNest.Text = "Auto Nest";
this.btnAutoNest.Click += new System.EventHandler(this.RunAutoNest_Click);
//
// pEPToolStripMenuItem // pEPToolStripMenuItem
// //
this.pEPToolStripMenuItem.Name = "pEPToolStripMenuItem"; this.pEPToolStripMenuItem.Name = "pEPToolStripMenuItem";
@@ -1335,5 +1345,6 @@
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4; private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripLabel engineLabel; private System.Windows.Forms.ToolStripLabel engineLabel;
private System.Windows.Forms.ToolStripComboBox engineComboBox; private System.Windows.Forms.ToolStripComboBox engineComboBox;
private System.Windows.Forms.ToolStripButton btnAutoNest;
} }
} }