mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-04 17:59:16 +00:00
88830e0d00
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)
158 lines
7.1 KiB
C#
158 lines
7.1 KiB
C#
namespace PKHeX.WinForms.Controls
|
|
{
|
|
partial class TrainerID
|
|
{
|
|
/// <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.FLP = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.Label_TID = new System.Windows.Forms.Label();
|
|
this.TB_TID = new System.Windows.Forms.MaskedTextBox();
|
|
this.TB_TID7 = new System.Windows.Forms.MaskedTextBox();
|
|
this.Label_SID = new System.Windows.Forms.Label();
|
|
this.TB_SID = new System.Windows.Forms.MaskedTextBox();
|
|
this.TB_SID7 = new System.Windows.Forms.MaskedTextBox();
|
|
this.TSVTooltip = new System.Windows.Forms.ToolTip(this.components);
|
|
this.FLP.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// FLP
|
|
//
|
|
this.FLP.Controls.Add(this.Label_TID);
|
|
this.FLP.Controls.Add(this.TB_TID);
|
|
this.FLP.Controls.Add(this.TB_TID7);
|
|
this.FLP.Controls.Add(this.Label_SID);
|
|
this.FLP.Controls.Add(this.TB_SID);
|
|
this.FLP.Controls.Add(this.TB_SID7);
|
|
this.FLP.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.FLP.Location = new System.Drawing.Point(0, 0);
|
|
this.FLP.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.FLP.Name = "FLP";
|
|
this.FLP.Size = new System.Drawing.Size(128, 48);
|
|
this.FLP.TabIndex = 0;
|
|
//
|
|
// Label_TID
|
|
//
|
|
this.Label_TID.Location = new System.Drawing.Point(0, 0);
|
|
this.Label_TID.Margin = new System.Windows.Forms.Padding(0);
|
|
this.Label_TID.Name = "Label_TID";
|
|
this.Label_TID.Size = new System.Drawing.Size(40, 24);
|
|
this.Label_TID.TabIndex = 7;
|
|
this.Label_TID.Text = "TID:";
|
|
this.Label_TID.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// TB_TID
|
|
//
|
|
this.TB_TID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.TB_TID.Location = new System.Drawing.Point(40, 0);
|
|
this.TB_TID.Margin = new System.Windows.Forms.Padding(0);
|
|
this.TB_TID.Mask = "00000";
|
|
this.TB_TID.Name = "TB_TID";
|
|
this.TB_TID.Size = new System.Drawing.Size(40, 23);
|
|
this.TB_TID.TabIndex = 1;
|
|
this.TB_TID.Text = "12345";
|
|
this.TB_TID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.TB_TID.TextChanged += new System.EventHandler(this.Update_ID);
|
|
this.TB_TID.MouseHover += new System.EventHandler(this.UpdateTSV);
|
|
//
|
|
// TB_TID7
|
|
//
|
|
this.TB_TID7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.TB_TID7.Location = new System.Drawing.Point(80, 0);
|
|
this.TB_TID7.Margin = new System.Windows.Forms.Padding(0);
|
|
this.TB_TID7.Mask = "000000";
|
|
this.TB_TID7.Name = "TB_TID7";
|
|
this.TB_TID7.Size = new System.Drawing.Size(48, 23);
|
|
this.TB_TID7.TabIndex = 2;
|
|
this.TB_TID7.Text = "123456";
|
|
this.TB_TID7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.TB_TID7.TextChanged += new System.EventHandler(this.Update_ID);
|
|
this.TB_TID7.MouseHover += new System.EventHandler(this.UpdateTSV);
|
|
//
|
|
// Label_SID
|
|
//
|
|
this.Label_SID.Location = new System.Drawing.Point(0, 24);
|
|
this.Label_SID.Margin = new System.Windows.Forms.Padding(0);
|
|
this.Label_SID.Name = "Label_SID";
|
|
this.Label_SID.Size = new System.Drawing.Size(40, 24);
|
|
this.Label_SID.TabIndex = 8;
|
|
this.Label_SID.Text = "SID:";
|
|
this.Label_SID.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// TB_SID
|
|
//
|
|
this.TB_SID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.TB_SID.Location = new System.Drawing.Point(40, 24);
|
|
this.TB_SID.Margin = new System.Windows.Forms.Padding(0);
|
|
this.TB_SID.Mask = "00000";
|
|
this.TB_SID.Name = "TB_SID";
|
|
this.TB_SID.Size = new System.Drawing.Size(40, 23);
|
|
this.TB_SID.TabIndex = 3;
|
|
this.TB_SID.Text = "12345";
|
|
this.TB_SID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.TB_SID.TextChanged += new System.EventHandler(this.Update_ID);
|
|
this.TB_SID.MouseHover += new System.EventHandler(this.UpdateTSV);
|
|
//
|
|
// TB_SID7
|
|
//
|
|
this.TB_SID7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.TB_SID7.Location = new System.Drawing.Point(80, 24);
|
|
this.TB_SID7.Margin = new System.Windows.Forms.Padding(0);
|
|
this.TB_SID7.Mask = "0000";
|
|
this.TB_SID7.Name = "TB_SID7";
|
|
this.TB_SID7.Size = new System.Drawing.Size(32, 23);
|
|
this.TB_SID7.TabIndex = 4;
|
|
this.TB_SID7.Text = "1234";
|
|
this.TB_SID7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.TB_SID7.TextChanged += new System.EventHandler(this.Update_ID);
|
|
this.TB_SID7.MouseHover += new System.EventHandler(this.UpdateTSV);
|
|
//
|
|
// TrainerID
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
this.Controls.Add(this.FLP);
|
|
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.Name = "TrainerID";
|
|
this.Size = new System.Drawing.Size(128, 48);
|
|
this.FLP.ResumeLayout(false);
|
|
this.FLP.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel FLP;
|
|
private System.Windows.Forms.MaskedTextBox TB_SID;
|
|
private System.Windows.Forms.MaskedTextBox TB_TID;
|
|
private System.Windows.Forms.Label Label_SID;
|
|
private System.Windows.Forms.Label Label_TID;
|
|
private System.Windows.Forms.MaskedTextBox TB_TID7;
|
|
private System.Windows.Forms.MaskedTextBox TB_SID7;
|
|
private System.Windows.Forms.ToolTip TSVTooltip;
|
|
}
|
|
}
|