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>
268 lines
14 KiB
C#
268 lines
14 KiB
C#
namespace OpenNest.Forms
|
|
{
|
|
partial class EditDrawingForm
|
|
{
|
|
/// <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.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.nameBox = new System.Windows.Forms.TextBox();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.qtyBox = new OpenNest.Controls.NumericUpDown();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.customerBox = new System.Windows.Forms.TextBox();
|
|
this.priorityBox = new OpenNest.Controls.NumericUpDown();
|
|
this.applyButton = new System.Windows.Forms.Button();
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|
this.bottomPanel1 = new OpenNest.Controls.BottomPanel();
|
|
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
|
|
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.qtyBox)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.priorityBox)).BeginInit();
|
|
this.bottomPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.pictureBox1.BackColor = System.Drawing.Color.White;
|
|
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.pictureBox1.Location = new System.Drawing.Point(412, 12);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(289, 257);
|
|
this.pictureBox1.TabIndex = 1;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(3, 12);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(71, 16);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Name :";
|
|
//
|
|
// nameBox
|
|
//
|
|
this.nameBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.nameBox.Location = new System.Drawing.Point(80, 9);
|
|
this.nameBox.Name = "nameBox";
|
|
this.nameBox.Size = new System.Drawing.Size(311, 22);
|
|
this.nameBox.TabIndex = 3;
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.tableLayoutPanel1.ColumnCount = 2;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.Controls.Add(this.nameBox, 1, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.qtyBox, 1, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.label3, 0, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.label4, 0, 3);
|
|
this.tableLayoutPanel1.Controls.Add(this.customerBox, 1, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.priorityBox, 1, 3);
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 4;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(394, 160);
|
|
this.tableLayoutPanel1.TabIndex = 4;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(3, 52);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(71, 16);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "Quantity :";
|
|
//
|
|
// qtyBox
|
|
//
|
|
this.qtyBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.qtyBox.Location = new System.Drawing.Point(80, 49);
|
|
this.qtyBox.Maximum = new decimal(new int[] {
|
|
999999,
|
|
0,
|
|
0,
|
|
0});
|
|
this.qtyBox.Name = "qtyBox";
|
|
this.qtyBox.Size = new System.Drawing.Size(311, 22);
|
|
this.qtyBox.Suffix = "";
|
|
this.qtyBox.TabIndex = 4;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(3, 92);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(71, 16);
|
|
this.label3.TabIndex = 2;
|
|
this.label3.Text = "Customer :";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(3, 132);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(71, 16);
|
|
this.label4.TabIndex = 2;
|
|
this.label4.Text = "Priority :";
|
|
//
|
|
// customerBox
|
|
//
|
|
this.customerBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.customerBox.Location = new System.Drawing.Point(80, 89);
|
|
this.customerBox.Name = "customerBox";
|
|
this.customerBox.Size = new System.Drawing.Size(311, 22);
|
|
this.customerBox.TabIndex = 3;
|
|
//
|
|
// priorityBox
|
|
//
|
|
this.priorityBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.priorityBox.Location = new System.Drawing.Point(80, 129);
|
|
this.priorityBox.Maximum = new decimal(new int[] {
|
|
999999,
|
|
0,
|
|
0,
|
|
0});
|
|
this.priorityBox.Name = "priorityBox";
|
|
this.priorityBox.Size = new System.Drawing.Size(311, 22);
|
|
this.priorityBox.Suffix = "";
|
|
this.priorityBox.TabIndex = 4;
|
|
//
|
|
// applyButton
|
|
//
|
|
this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.applyButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.applyButton.Location = new System.Drawing.Point(515, 10);
|
|
this.applyButton.Name = "applyButton";
|
|
this.applyButton.Size = new System.Drawing.Size(90, 28);
|
|
this.applyButton.TabIndex = 5;
|
|
this.applyButton.Text = "Done";
|
|
this.applyButton.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(611, 10);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(90, 28);
|
|
this.cancelButton.TabIndex = 6;
|
|
this.cancelButton.Text = "Cancel";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// bottomPanel1
|
|
//
|
|
this.bottomPanel1.Controls.Add(this.applyButton);
|
|
this.bottomPanel1.Controls.Add(this.cancelButton);
|
|
this.bottomPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.bottomPanel1.Location = new System.Drawing.Point(0, 298);
|
|
this.bottomPanel1.Name = "bottomPanel1";
|
|
this.bottomPanel1.Size = new System.Drawing.Size(713, 50);
|
|
this.bottomPanel1.TabIndex = 0;
|
|
//
|
|
// colorDialog1
|
|
//
|
|
this.colorDialog1.AnyColor = true;
|
|
//
|
|
// linkLabel1
|
|
//
|
|
this.linkLabel1.AutoSize = true;
|
|
this.linkLabel1.Location = new System.Drawing.Point(409, 272);
|
|
this.linkLabel1.Name = "linkLabel1";
|
|
this.linkLabel1.Size = new System.Drawing.Size(90, 16);
|
|
this.linkLabel1.TabIndex = 5;
|
|
this.linkLabel1.TabStop = true;
|
|
this.linkLabel1.Text = "Change Color";
|
|
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
|
|
//
|
|
// EditDrawingForm
|
|
//
|
|
this.AcceptButton = this.applyButton;
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.CancelButton = this.cancelButton;
|
|
this.ClientSize = new System.Drawing.Size(713, 348);
|
|
this.Controls.Add(this.linkLabel1);
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.bottomPanel1);
|
|
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "EditDrawingForm";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Edit Drawing";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.qtyBox)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.priorityBox)).EndInit();
|
|
this.bottomPanel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Controls.BottomPanel bottomPanel1;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox nameBox;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label label2;
|
|
private Controls.NumericUpDown qtyBox;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.TextBox customerBox;
|
|
private Controls.NumericUpDown priorityBox;
|
|
private System.Windows.Forms.Button applyButton;
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.ColorDialog colorDialog1;
|
|
private System.Windows.Forms.LinkLabel linkLabel1;
|
|
}
|
|
} |