PKHeX/PKHeX.WinForms/Subforms/Save Editors/SAV_GroupViewer.Designer.cs
2026-02-11 23:43:54 -06:00

129 lines
5.1 KiB
C#

namespace PKHeX.WinForms
{
sealed partial class SAV_GroupViewer
{
/// <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()
{
components = new System.ComponentModel.Container();
B_BoxRight = new System.Windows.Forms.Button();
B_BoxLeft = new System.Windows.Forms.Button();
CB_BoxSelect = new System.Windows.Forms.ComboBox();
mnu = new System.Windows.Forms.ContextMenuStrip(components);
mnuView = new System.Windows.Forms.ToolStripMenuItem();
Box = new PKHeX.WinForms.Controls.PokeGrid();
mnu.SuspendLayout();
SuspendLayout();
//
// B_BoxRight
//
B_BoxRight.Image = Properties.Resources.right;
B_BoxRight.Location = new System.Drawing.Point(239, 4);
B_BoxRight.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
B_BoxRight.Name = "B_BoxRight";
B_BoxRight.Size = new System.Drawing.Size(32, 24);
B_BoxRight.TabIndex = 3;
B_BoxRight.UseVisualStyleBackColor = true;
B_BoxRight.Click += B_BoxRight_Click;
//
// B_BoxLeft
//
B_BoxLeft.Image = Properties.Resources.left;
B_BoxLeft.Location = new System.Drawing.Point(22, 4);
B_BoxLeft.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
B_BoxLeft.Name = "B_BoxLeft";
B_BoxLeft.Size = new System.Drawing.Size(32, 24);
B_BoxLeft.TabIndex = 2;
B_BoxLeft.UseVisualStyleBackColor = true;
B_BoxLeft.Click += B_BoxLeft_Click;
//
// CB_BoxSelect
//
CB_BoxSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
CB_BoxSelect.DropDownWidth = 252;
CB_BoxSelect.FormattingEnabled = true;
CB_BoxSelect.Location = new System.Drawing.Point(58, 4);
CB_BoxSelect.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
CB_BoxSelect.Name = "CB_BoxSelect";
CB_BoxSelect.Size = new System.Drawing.Size(177, 25);
CB_BoxSelect.TabIndex = 1;
CB_BoxSelect.SelectedIndexChanged += CB_BoxSelect_SelectedIndexChanged;
//
// mnu
//
mnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { mnuView });
mnu.Name = "mnu";
mnu.Size = new System.Drawing.Size(104, 26);
//
// mnuView
//
mnuView.Image = Properties.Resources.other;
mnuView.Name = "mnuView";
mnuView.Size = new System.Drawing.Size(103, 22);
mnuView.Text = "View";
mnuView.Click += ClickView;
//
// Box
//
Box.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
Box.Location = new System.Drawing.Point(0, 33);
Box.Margin = new System.Windows.Forms.Padding(0);
Box.Name = "Box";
Box.Size = new System.Drawing.Size(290, 177);
Box.TabIndex = 0;
//
// SAV_GroupViewer
//
AllowDrop = true;
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
ClientSize = new System.Drawing.Size(292, 211);
Controls.Add(B_BoxRight);
Controls.Add(B_BoxLeft);
Controls.Add(CB_BoxSelect);
Controls.Add(Box);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
Icon = Properties.Resources.Icon;
Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
MaximizeBox = false;
MinimizeBox = false;
Name = "SAV_GroupViewer";
StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
Text = "Group Viewer";
mnu.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private Controls.PokeGrid Box;
public System.Windows.Forms.Button B_BoxRight;
public System.Windows.Forms.Button B_BoxLeft;
public System.Windows.Forms.ComboBox CB_BoxSelect;
private System.Windows.Forms.ContextMenuStrip mnu;
private System.Windows.Forms.ToolStripMenuItem mnuView;
}
}