mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-29 20:17:21 -05:00
* Update to .NET 10 * Property fields * API signature updates * Extension method blocks * Completed dark mode support Outside of my control: - vertical tab control (pkm editor) - datetimepicker controls - lgpe event flags (no idea) - some control types having white-borders when they should really be gray Box background is 50% transparency to effectively darken the image. * Custom legality report popup * Event diff dialog, version select dialog * Add quick overwrite popup for export sav * Extension methods * Dark Mode: glow currently editing sprite * Add invalid encounter hint for trade evolutions * Extension properties * Append legality hint on hover card * Slot image loading: clear the screen-reader description if a slot is empty/invalid, rather than retain the previous description. Changing boxes would easily confuse users on this.
102 lines
4.0 KiB
C#
102 lines
4.0 KiB
C#
namespace PKHeX.WinForms.Controls
|
|
{
|
|
partial class CatchRate
|
|
{
|
|
/// <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()
|
|
{
|
|
FLP_CatchRate = new System.Windows.Forms.FlowLayoutPanel();
|
|
NUD_CatchRate = new System.Windows.Forms.NumericUpDown();
|
|
B_Clear = new System.Windows.Forms.Button();
|
|
B_Reset = new System.Windows.Forms.Button();
|
|
FLP_CatchRate.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)NUD_CatchRate).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// FLP_CatchRate
|
|
//
|
|
FLP_CatchRate.Controls.Add(NUD_CatchRate);
|
|
FLP_CatchRate.Controls.Add(B_Clear);
|
|
FLP_CatchRate.Controls.Add(B_Reset);
|
|
FLP_CatchRate.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
FLP_CatchRate.Location = new System.Drawing.Point(0, 0);
|
|
FLP_CatchRate.Margin = new System.Windows.Forms.Padding(0);
|
|
FLP_CatchRate.Name = "FLP_CatchRate";
|
|
FLP_CatchRate.Size = new System.Drawing.Size(184, 25);
|
|
FLP_CatchRate.TabIndex = 1;
|
|
//
|
|
// NUD_CatchRate
|
|
//
|
|
NUD_CatchRate.Location = new System.Drawing.Point(0, 0);
|
|
NUD_CatchRate.Margin = new System.Windows.Forms.Padding(0);
|
|
NUD_CatchRate.Maximum = new decimal(new int[] { 255, 0, 0, 0 });
|
|
NUD_CatchRate.Name = "NUD_CatchRate";
|
|
NUD_CatchRate.Size = new System.Drawing.Size(40, 23);
|
|
NUD_CatchRate.TabIndex = 0;
|
|
NUD_CatchRate.Value = new decimal(new int[] { 255, 0, 0, 0 });
|
|
NUD_CatchRate.ValueChanged += ChangeValue;
|
|
//
|
|
// B_Clear
|
|
//
|
|
B_Clear.Location = new System.Drawing.Point(40, 0);
|
|
B_Clear.Margin = new System.Windows.Forms.Padding(0);
|
|
B_Clear.Name = "B_Clear";
|
|
B_Clear.Size = new System.Drawing.Size(64, 23);
|
|
B_Clear.TabIndex = 1;
|
|
B_Clear.Text = "Clear";
|
|
B_Clear.UseVisualStyleBackColor = true;
|
|
B_Clear.Click += Clear;
|
|
//
|
|
// B_Reset
|
|
//
|
|
B_Reset.Location = new System.Drawing.Point(104, 0);
|
|
B_Reset.Margin = new System.Windows.Forms.Padding(0);
|
|
B_Reset.Name = "B_Reset";
|
|
B_Reset.Size = new System.Drawing.Size(64, 23);
|
|
B_Reset.TabIndex = 2;
|
|
B_Reset.Text = "Reset";
|
|
B_Reset.UseVisualStyleBackColor = true;
|
|
B_Reset.Click += Reset;
|
|
//
|
|
// CatchRate
|
|
//
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
Controls.Add(FLP_CatchRate);
|
|
Name = "CatchRate";
|
|
Size = new System.Drawing.Size(184, 25);
|
|
FLP_CatchRate.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)NUD_CatchRate).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.FlowLayoutPanel FLP_CatchRate;
|
|
private System.Windows.Forms.NumericUpDown NUD_CatchRate;
|
|
private System.Windows.Forms.Button B_Clear;
|
|
private System.Windows.Forms.Button B_Reset;
|
|
}
|
|
}
|