mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-26 02:29:59 -05:00
178 lines
7.9 KiB
C#
178 lines
7.9 KiB
C#
namespace PKHeX.WinForms
|
|
{
|
|
partial class SAV_Donut9a
|
|
{
|
|
/// <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()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
B_Cancel = new System.Windows.Forms.Button();
|
|
LB_Donut = new System.Windows.Forms.ListBox();
|
|
B_Save = new System.Windows.Forms.Button();
|
|
modifyMenu = new System.Windows.Forms.ContextMenuStrip(components);
|
|
mnuRandomizeMax = new System.Windows.Forms.ToolStripMenuItem();
|
|
mnuCloneCurrent = new System.Windows.Forms.ToolStripMenuItem();
|
|
mnuShinyAssortment = new System.Windows.Forms.ToolStripMenuItem();
|
|
B_ModifyAll = new System.Windows.Forms.Button();
|
|
B_Reset = new System.Windows.Forms.Button();
|
|
donutEditor = new DonutEditor9a();
|
|
modifyMenu.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// B_Cancel
|
|
//
|
|
B_Cancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right;
|
|
B_Cancel.Location = new System.Drawing.Point(786, 348);
|
|
B_Cancel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
B_Cancel.Name = "B_Cancel";
|
|
B_Cancel.Size = new System.Drawing.Size(93, 27);
|
|
B_Cancel.TabIndex = 0;
|
|
B_Cancel.Text = "Cancel";
|
|
B_Cancel.UseVisualStyleBackColor = true;
|
|
B_Cancel.Click += B_Cancel_Click;
|
|
//
|
|
// LB_Donut
|
|
//
|
|
LB_Donut.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
|
|
LB_Donut.FormattingEnabled = true;
|
|
LB_Donut.Location = new System.Drawing.Point(14, 15);
|
|
LB_Donut.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
LB_Donut.Name = "LB_Donut";
|
|
LB_Donut.Size = new System.Drawing.Size(186, 361);
|
|
LB_Donut.TabIndex = 2;
|
|
LB_Donut.SelectedIndexChanged += ChangeIndex;
|
|
//
|
|
// B_Save
|
|
//
|
|
B_Save.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right;
|
|
B_Save.Location = new System.Drawing.Point(786, 319);
|
|
B_Save.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
B_Save.Name = "B_Save";
|
|
B_Save.Size = new System.Drawing.Size(93, 27);
|
|
B_Save.TabIndex = 24;
|
|
B_Save.Text = "Save";
|
|
B_Save.UseVisualStyleBackColor = true;
|
|
B_Save.Click += B_Save_Click;
|
|
//
|
|
// modifyMenu
|
|
//
|
|
modifyMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
|
|
modifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { mnuRandomizeMax, mnuCloneCurrent, mnuShinyAssortment });
|
|
modifyMenu.Name = "modifyMenu";
|
|
modifyMenu.Size = new System.Drawing.Size(204, 70);
|
|
//
|
|
// mnuRandomizeMax
|
|
//
|
|
mnuRandomizeMax.Name = "mnuRandomizeMax";
|
|
mnuRandomizeMax.Size = new System.Drawing.Size(203, 22);
|
|
mnuRandomizeMax.Text = "Randomize Max Level";
|
|
mnuRandomizeMax.Click += RandomizeAll;
|
|
//
|
|
// mnuCloneCurrent
|
|
//
|
|
mnuCloneCurrent.Name = "mnuCloneCurrent";
|
|
mnuCloneCurrent.Size = new System.Drawing.Size(203, 22);
|
|
mnuCloneCurrent.Text = "Clone Current to All";
|
|
mnuCloneCurrent.Click += CloneCurrent;
|
|
//
|
|
// mnuShinyAssortment
|
|
//
|
|
mnuShinyAssortment.Name = "mnuShinyAssortment";
|
|
mnuShinyAssortment.Size = new System.Drawing.Size(203, 22);
|
|
mnuShinyAssortment.Text = "Shiny Assortment";
|
|
mnuShinyAssortment.Click += ShinyAssortment;
|
|
//
|
|
// B_ModifyAll
|
|
//
|
|
B_ModifyAll.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
|
|
B_ModifyAll.Location = new System.Drawing.Point(208, 349);
|
|
B_ModifyAll.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
B_ModifyAll.Name = "B_ModifyAll";
|
|
B_ModifyAll.Size = new System.Drawing.Size(128, 27);
|
|
B_ModifyAll.TabIndex = 25;
|
|
B_ModifyAll.Text = "Modify All";
|
|
B_ModifyAll.UseVisualStyleBackColor = true;
|
|
B_ModifyAll.Click += B_Modify_Click;
|
|
//
|
|
// B_Reset
|
|
//
|
|
B_Reset.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
|
|
B_Reset.Location = new System.Drawing.Point(208, 304);
|
|
B_Reset.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
B_Reset.Name = "B_Reset";
|
|
B_Reset.Size = new System.Drawing.Size(128, 27);
|
|
B_Reset.TabIndex = 26;
|
|
B_Reset.Text = "Reset";
|
|
B_Reset.UseVisualStyleBackColor = true;
|
|
B_Reset.Click += B_Reset_Click;
|
|
//
|
|
// donutEditor
|
|
//
|
|
donutEditor.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
|
|
donutEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
|
donutEditor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
donutEditor.Location = new System.Drawing.Point(207, 15);
|
|
donutEditor.Name = "donutEditor";
|
|
donutEditor.Size = new System.Drawing.Size(672, 283);
|
|
donutEditor.TabIndex = 27;
|
|
//
|
|
// SAV_Donut9a
|
|
//
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
ClientSize = new System.Drawing.Size(894, 388);
|
|
Controls.Add(donutEditor);
|
|
Controls.Add(B_Reset);
|
|
Controls.Add(B_ModifyAll);
|
|
Controls.Add(B_Save);
|
|
Controls.Add(LB_Donut);
|
|
Controls.Add(B_Cancel);
|
|
FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
Icon = Properties.Resources.Icon;
|
|
Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "SAV_Donut9a";
|
|
StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
Text = "Donut Editor";
|
|
modifyMenu.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button B_Cancel;
|
|
private System.Windows.Forms.ListBox LB_Donut;
|
|
private System.Windows.Forms.Button B_Save;
|
|
private System.Windows.Forms.ContextMenuStrip modifyMenu;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuRandomizeMax;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuCloneCurrent;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuShinyAssortment;
|
|
private System.Windows.Forms.Button B_ModifyAll;
|
|
private System.Windows.Forms.Button B_Reset;
|
|
private DonutEditor9a donutEditor;
|
|
}
|
|
}
|