NHSE/NHSE.WinForms/Subforms/InventoryEditor.Designer.cs
2020-03-27 17:54:17 -07:00

130 lines
5.6 KiB
C#

namespace NHSE.WinForms
{
partial class InventoryEditor
{
/// <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.TC_Groups = new System.Windows.Forms.TabControl();
this.B_Save = new System.Windows.Forms.Button();
this.B_Cancel = new System.Windows.Forms.Button();
this.B_Copy = new System.Windows.Forms.Button();
this.NUD_Copy = new System.Windows.Forms.NumericUpDown();
((System.ComponentModel.ISupportInitialize)(this.NUD_Copy)).BeginInit();
this.SuspendLayout();
//
// TC_Groups
//
this.TC_Groups.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.TC_Groups.Location = new System.Drawing.Point(9, 9);
this.TC_Groups.Name = "TC_Groups";
this.TC_Groups.SelectedIndex = 0;
this.TC_Groups.Size = new System.Drawing.Size(398, 336);
this.TC_Groups.TabIndex = 0;
//
// B_Save
//
this.B_Save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.B_Save.Location = new System.Drawing.Point(329, 349);
this.B_Save.Name = "B_Save";
this.B_Save.Size = new System.Drawing.Size(75, 40);
this.B_Save.TabIndex = 1;
this.B_Save.Text = "Save";
this.B_Save.UseVisualStyleBackColor = true;
this.B_Save.Click += new System.EventHandler(this.B_Save_Click);
//
// B_Cancel
//
this.B_Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.B_Cancel.Location = new System.Drawing.Point(248, 349);
this.B_Cancel.Name = "B_Cancel";
this.B_Cancel.Size = new System.Drawing.Size(75, 40);
this.B_Cancel.TabIndex = 2;
this.B_Cancel.Text = "Cancel";
this.B_Cancel.UseVisualStyleBackColor = true;
this.B_Cancel.Click += new System.EventHandler(this.B_Cancel_Click);
//
// B_Copy
//
this.B_Copy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.B_Copy.Location = new System.Drawing.Point(9, 349);
this.B_Copy.Name = "B_Copy";
this.B_Copy.Size = new System.Drawing.Size(75, 40);
this.B_Copy.TabIndex = 3;
this.B_Copy.Text = "Copy First to next N...";
this.B_Copy.UseVisualStyleBackColor = true;
this.B_Copy.Click += new System.EventHandler(this.B_Copy_Click);
//
// NUD_Copy
//
this.NUD_Copy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.NUD_Copy.Location = new System.Drawing.Point(90, 351);
this.NUD_Copy.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.NUD_Copy.Name = "NUD_Copy";
this.NUD_Copy.Size = new System.Drawing.Size(56, 20);
this.NUD_Copy.TabIndex = 4;
this.NUD_Copy.Value = new decimal(new int[] {
10,
0,
0,
0});
//
// InventoryEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(416, 393);
this.Controls.Add(this.NUD_Copy);
this.Controls.Add(this.B_Copy);
this.Controls.Add(this.B_Cancel);
this.Controls.Add(this.B_Save);
this.Controls.Add(this.TC_Groups);
this.Icon = global::NHSE.WinForms.Properties.Resources.icon;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "InventoryEditor";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Inventory Editor";
((System.ComponentModel.ISupportInitialize)(this.NUD_Copy)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl TC_Groups;
private System.Windows.Forms.Button B_Save;
private System.Windows.Forms.Button B_Cancel;
private System.Windows.Forms.Button B_Copy;
private System.Windows.Forms.NumericUpDown NUD_Copy;
}
}