mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 06:01:05 -05:00
109 lines
4.4 KiB
C#
109 lines
4.4 KiB
C#
namespace DSPRE
|
|
{
|
|
partial class GiveItemDialog
|
|
{
|
|
/// <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.itemComboBox = new System.Windows.Forms.ComboBox();
|
|
this.itemLabel = new System.Windows.Forms.Label();
|
|
this.quantityNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.okButton = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.quantityNumericUpDown)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// itemComboBox
|
|
//
|
|
this.itemComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.itemComboBox.FormattingEnabled = true;
|
|
this.itemComboBox.Location = new System.Drawing.Point(12, 32);
|
|
this.itemComboBox.Name = "itemComboBox";
|
|
this.itemComboBox.Size = new System.Drawing.Size(154, 21);
|
|
this.itemComboBox.TabIndex = 0;
|
|
//
|
|
// itemLabel
|
|
//
|
|
this.itemLabel.AutoSize = true;
|
|
this.itemLabel.Location = new System.Drawing.Point(12, 15);
|
|
this.itemLabel.Name = "itemLabel";
|
|
this.itemLabel.Size = new System.Drawing.Size(27, 13);
|
|
this.itemLabel.TabIndex = 1;
|
|
this.itemLabel.Text = "Item";
|
|
//
|
|
// quantityNumericUpDown
|
|
//
|
|
this.quantityNumericUpDown.Location = new System.Drawing.Point(179, 33);
|
|
this.quantityNumericUpDown.Name = "quantityNumericUpDown";
|
|
this.quantityNumericUpDown.Size = new System.Drawing.Size(78, 20);
|
|
this.quantityNumericUpDown.TabIndex = 2;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(176, 15);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(46, 13);
|
|
this.label1.TabIndex = 3;
|
|
this.label1.Text = "Quantity";
|
|
//
|
|
// okButton
|
|
//
|
|
this.okButton.Location = new System.Drawing.Point(12, 67);
|
|
this.okButton.Name = "okButton";
|
|
this.okButton.Size = new System.Drawing.Size(245, 23);
|
|
this.okButton.TabIndex = 4;
|
|
this.okButton.Text = "OK";
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|
this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
|
//
|
|
// GiveItemDialog
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(275, 102);
|
|
this.Controls.Add(this.okButton);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.quantityNumericUpDown);
|
|
this.Controls.Add(this.itemLabel);
|
|
this.Controls.Add(this.itemComboBox);
|
|
this.Name = "GiveItemDialog";
|
|
this.Text = "Give Item";
|
|
((System.ComponentModel.ISupportInitialize)(this.quantityNumericUpDown)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
public System.Windows.Forms.ComboBox itemComboBox;
|
|
private System.Windows.Forms.Label itemLabel;
|
|
public System.Windows.Forms.NumericUpDown quantityNumericUpDown;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button okButton;
|
|
}
|
|
} |