PKHeX/PKHeX.WinForms/Controls/SAV Editor/BoxEditor.Designer.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now.

Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes.

Adds functionality for Batch Editor commands to `>`, `<` and <=/>=

TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants.

Main window has a new layout to account for DPI scaling (8 point grid)

Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects
Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724)
Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720)
Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714)
Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691)
Added: Properties for ribbon/mark count (closes #3659)
Fixed: Traded SV eggs are now checked correctly (closes #3692)
2023-01-21 20:02:33 -08:00

134 lines
5 KiB
C#

namespace PKHeX.WinForms.Controls
{
partial class BoxEditor
{
/// <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 Component 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.B_BoxRight = new System.Windows.Forms.Button();
this.B_BoxLeft = new System.Windows.Forms.Button();
this.CB_BoxSelect = new System.Windows.Forms.ComboBox();
this.BoxPokeGrid = new PKHeX.WinForms.Controls.PokeGrid();
this.SuspendLayout();
//
// B_BoxRight
//
this.B_BoxRight.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.B_BoxRight.Location = new System.Drawing.Point(200, 0);
this.B_BoxRight.Margin = new System.Windows.Forms.Padding(0);
this.B_BoxRight.Name = "B_BoxRight";
this.B_BoxRight.Size = new System.Drawing.Size(24, 24);
this.B_BoxRight.TabIndex = 2;
this.B_BoxRight.Text = ">>";
this.B_BoxRight.UseVisualStyleBackColor = true;
this.B_BoxRight.Click += new System.EventHandler(this.ClickBoxRight);
//
// B_BoxLeft
//
this.B_BoxLeft.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.B_BoxLeft.Location = new System.Drawing.Point(32, 0);
this.B_BoxLeft.Margin = new System.Windows.Forms.Padding(0);
this.B_BoxLeft.Name = "B_BoxLeft";
this.B_BoxLeft.Size = new System.Drawing.Size(24, 24);
this.B_BoxLeft.TabIndex = 0;
this.B_BoxLeft.Text = "<<";
this.B_BoxLeft.UseVisualStyleBackColor = true;
this.B_BoxLeft.Click += new System.EventHandler(this.ClickBoxLeft);
//
// CB_BoxSelect
//
this.CB_BoxSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CB_BoxSelect.FormattingEnabled = true;
this.CB_BoxSelect.Items.AddRange(new object[] {
"Box 1",
"Box 2",
"Box 3",
"Box 4",
"Box 5",
"Box 6",
"Box 7",
"Box 8",
"Box 9",
"Box 10",
"Box 11",
"Box 12",
"Box 13",
"Box 14",
"Box 15",
"Box 16",
"Box 17",
"Box 18",
"Box 19",
"Box 20",
"Box 21",
"Box 22",
"Box 23",
"Box 24",
"Box 25",
"Box 26",
"Box 27",
"Box 28",
"Box 29",
"Box 30",
"Box 31"});
this.CB_BoxSelect.Location = new System.Drawing.Point(64, 0);
this.CB_BoxSelect.Margin = new System.Windows.Forms.Padding(0);
this.CB_BoxSelect.MinimumSize = new System.Drawing.Size(128, 0);
this.CB_BoxSelect.Name = "CB_BoxSelect";
this.CB_BoxSelect.Size = new System.Drawing.Size(128, 23);
this.CB_BoxSelect.TabIndex = 1;
this.CB_BoxSelect.SelectedIndexChanged += new System.EventHandler(this.GetBox);
//
// BoxPokeGrid
//
this.BoxPokeGrid.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.BoxPokeGrid.Location = new System.Drawing.Point(0, 25);
this.BoxPokeGrid.Margin = new System.Windows.Forms.Padding(0);
this.BoxPokeGrid.Name = "BoxPokeGrid";
this.BoxPokeGrid.Size = new System.Drawing.Size(251, 160);
this.BoxPokeGrid.TabIndex = 3;
//
// BoxEditor
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
this.AutoSize = true;
this.Controls.Add(this.BoxPokeGrid);
this.Controls.Add(this.B_BoxRight);
this.Controls.Add(this.B_BoxLeft);
this.Controls.Add(this.CB_BoxSelect);
this.Name = "BoxEditor";
this.Size = new System.Drawing.Size(251, 185);
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.Button B_BoxRight;
public System.Windows.Forms.Button B_BoxLeft;
public System.Windows.Forms.ComboBox CB_BoxSelect;
public PokeGrid BoxPokeGrid;
}
}