PKHeX/PKHeX.WinForms/Subforms/Save Editors/SAV_BoxViewer.Designer.cs
Kurt 395bc1b1e9 Misc GUI tweaks
database Reset filters now auto-sizes, tabs are now taller
box popup now shows the switch-view button as an actual button rather than a flat image
2026-02-21 19:41:05 -06:00

85 lines
3.0 KiB
C#

namespace PKHeX.WinForms
{
sealed partial class SAV_BoxViewer
{
/// <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()
{
B_BoxSwap = new System.Windows.Forms.Button();
Box = new PKHeX.WinForms.Controls.BoxEditor();
SuspendLayout();
//
// PB_BoxSwap
//
B_BoxSwap.Image = global::PKHeX.WinForms.Properties.Resources.swapBox;
B_BoxSwap.Location = new System.Drawing.Point(0, 0);
B_BoxSwap.Name = "B_BoxSwap";
B_BoxSwap.Size = new System.Drawing.Size(24, 24);
B_BoxSwap.TabIndex = 67;
B_BoxSwap.TabStop = false;
B_BoxSwap.Click += new System.EventHandler(PB_BoxSwap_Click);
//
// Box
//
Box.AllowDrop = true;
Box.CanSetCurrentBox = false;
Box.ControlsEnabled = true;
Box.ControlsVisible = true;
Box.CurrentBox = -1;
Box.Dock = System.Windows.Forms.DockStyle.Fill;
Box.Editor = null;
Box.FlagIllegal = false;
Box.Location = new System.Drawing.Point(0, 0);
Box.M = null;
Box.Name = "Box";
Box.Size = new System.Drawing.Size(249, 183);
Box.TabIndex = 68;
//
// SAV_BoxViewer
//
AllowDrop = true;
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
ClientSize = new System.Drawing.Size(249, 183);
Controls.Add(B_BoxSwap);
Controls.Add(Box);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
Icon = global::PKHeX.WinForms.Properties.Resources.Icon;
MaximizeBox = false;
MinimizeBox = false;
Name = "SAV_BoxViewer";
StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
Text = "Box Viewer";
FormClosing += new System.Windows.Forms.FormClosingEventHandler(SAV_BoxViewer_FormClosing);
ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button B_BoxSwap;
public Controls.BoxEditor Box;
}
}