PKHeX/PKHeX.WinForms/Controls/PKM Editor/EntityInstructionBuilder.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

136 lines
6.3 KiB
C#

namespace PKHeX.WinForms.Controls
{
partial class EntityInstructionBuilder
{
/// <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.components = new System.ComponentModel.Container();
this.L_PropValue = new System.Windows.Forms.Label();
this.L_PropType = new System.Windows.Forms.Label();
this.CB_Require = new System.Windows.Forms.ComboBox();
this.CB_Property = new System.Windows.Forms.ComboBox();
this.CB_Format = new System.Windows.Forms.ComboBox();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.toolTip2 = new System.Windows.Forms.ToolTip(this.components);
this.toolTip3 = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// L_PropValue
//
this.L_PropValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.L_PropValue.AutoSize = true;
this.L_PropValue.Location = new System.Drawing.Point(200, 28);
this.L_PropValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.L_PropValue.Name = "L_PropValue";
this.L_PropValue.Size = new System.Drawing.Size(80, 15);
this.L_PropValue.TabIndex = 18;
this.L_PropValue.Text = "PropertyValue";
//
// L_PropType
//
this.L_PropType.AutoSize = true;
this.L_PropType.Location = new System.Drawing.Point(55, 28);
this.L_PropType.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.L_PropType.Name = "L_PropType";
this.L_PropType.Size = new System.Drawing.Size(76, 15);
this.L_PropType.TabIndex = 17;
this.L_PropType.Text = "PropertyType";
//
// CB_Require
//
this.CB_Require.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.CB_Require.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CB_Require.FormattingEnabled = true;
this.CB_Require.Items.AddRange(new object[] {
"Set",
"==",
"!=",
">",
">=",
"<",
"<="});
this.CB_Require.Location = new System.Drawing.Point(203, 0);
this.CB_Require.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.CB_Require.Name = "CB_Require";
this.CB_Require.Size = new System.Drawing.Size(135, 23);
this.CB_Require.TabIndex = 16;
//
// CB_Property
//
this.CB_Property.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.CB_Property.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.CB_Property.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.CB_Property.DropDownWidth = 200;
this.CB_Property.FormattingEnabled = true;
this.CB_Property.Location = new System.Drawing.Point(58, 0);
this.CB_Property.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.CB_Property.Name = "CB_Property";
this.CB_Property.Size = new System.Drawing.Size(137, 23);
this.CB_Property.TabIndex = 15;
this.CB_Property.SelectedIndexChanged += new System.EventHandler(this.CB_Property_SelectedIndexChanged);
//
// CB_Format
//
this.CB_Format.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CB_Format.FormattingEnabled = true;
this.CB_Format.Location = new System.Drawing.Point(0, 0);
this.CB_Format.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.CB_Format.Name = "CB_Format";
this.CB_Format.Size = new System.Drawing.Size(51, 23);
this.CB_Format.TabIndex = 14;
this.CB_Format.SelectedIndexChanged += new System.EventHandler(this.CB_Format_SelectedIndexChanged);
//
// EntityInstructionBuilder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.L_PropValue);
this.Controls.Add(this.L_PropType);
this.Controls.Add(this.CB_Require);
this.Controls.Add(this.CB_Property);
this.Controls.Add(this.CB_Format);
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.Name = "EntityInstructionBuilder";
this.Size = new System.Drawing.Size(338, 46);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label L_PropValue;
private System.Windows.Forms.Label L_PropType;
private System.Windows.Forms.ComboBox CB_Require;
private System.Windows.Forms.ComboBox CB_Property;
private System.Windows.Forms.ComboBox CB_Format;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ToolTip toolTip2;
private System.Windows.Forms.ToolTip toolTip3;
}
}