Move all projects from Source/ to repository root for simpler navigation. - Remove External/ dependency DLLs (will use NuGet packages) - Remove Installer/ NSIS script - Replace PartCollection/PlateCollection with ObservableList - Add packages.config for NuGet dependencies 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
127 lines
6.3 KiB
C#
127 lines
6.3 KiB
C#
namespace OpenNest.Forms
|
|
{
|
|
partial class AutoNestForm
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.bottomPanel1 = new OpenNest.Controls.BottomPanel();
|
|
this.acceptButton = new System.Windows.Forms.Button();
|
|
this.createNewPlatesAsNeededBox = new System.Windows.Forms.CheckBox();
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.bottomPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
|
this.dataGridView1.AllowUserToOrderColumns = true;
|
|
this.dataGridView1.AllowUserToResizeRows = false;
|
|
this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowHeadersVisible = false;
|
|
this.dataGridView1.Size = new System.Drawing.Size(545, 385);
|
|
this.dataGridView1.TabIndex = 0;
|
|
//
|
|
// bottomPanel1
|
|
//
|
|
this.bottomPanel1.Controls.Add(this.acceptButton);
|
|
this.bottomPanel1.Controls.Add(this.createNewPlatesAsNeededBox);
|
|
this.bottomPanel1.Controls.Add(this.cancelButton);
|
|
this.bottomPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.bottomPanel1.Location = new System.Drawing.Point(0, 335);
|
|
this.bottomPanel1.Name = "bottomPanel1";
|
|
this.bottomPanel1.Size = new System.Drawing.Size(545, 50);
|
|
this.bottomPanel1.TabIndex = 9;
|
|
//
|
|
// acceptButton
|
|
//
|
|
this.acceptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.acceptButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.acceptButton.Location = new System.Drawing.Point(344, 9);
|
|
this.acceptButton.Margin = new System.Windows.Forms.Padding(4);
|
|
this.acceptButton.Name = "acceptButton";
|
|
this.acceptButton.Size = new System.Drawing.Size(90, 28);
|
|
this.acceptButton.TabIndex = 6;
|
|
this.acceptButton.Text = "Accept";
|
|
this.acceptButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// createNewPlatesAsNeededBox
|
|
//
|
|
this.createNewPlatesAsNeededBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.createNewPlatesAsNeededBox.AutoSize = true;
|
|
this.createNewPlatesAsNeededBox.Location = new System.Drawing.Point(12, 15);
|
|
this.createNewPlatesAsNeededBox.Name = "createNewPlatesAsNeededBox";
|
|
this.createNewPlatesAsNeededBox.Size = new System.Drawing.Size(202, 20);
|
|
this.createNewPlatesAsNeededBox.TabIndex = 8;
|
|
this.createNewPlatesAsNeededBox.Text = "Create new plates as needed";
|
|
this.createNewPlatesAsNeededBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.cancelButton.Location = new System.Drawing.Point(442, 9);
|
|
this.cancelButton.Margin = new System.Windows.Forms.Padding(4);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(90, 28);
|
|
this.cancelButton.TabIndex = 7;
|
|
this.cancelButton.Text = "Cancel";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// AutoNestForm
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.ClientSize = new System.Drawing.Size(545, 385);
|
|
this.Controls.Add(this.bottomPanel1);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Name = "AutoNestForm";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "AutoNest";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.bottomPanel1.ResumeLayout(false);
|
|
this.bottomPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.Button acceptButton;
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.CheckBox createNewPlatesAsNeededBox;
|
|
private Controls.BottomPanel bottomPanel1;
|
|
}
|
|
} |