mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
64 lines
2.2 KiB
C#
64 lines
2.2 KiB
C#
|
namespace PKHeX.WinForms
|
|||
|
{
|
|||
|
partial class BallBrowser
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.flp = new System.Windows.Forms.FlowLayoutPanel();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// flp
|
|||
|
//
|
|||
|
this.flp.AutoSize = true;
|
|||
|
this.flp.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.flp.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.flp.Name = "flp";
|
|||
|
this.flp.Size = new System.Drawing.Size(127, 88);
|
|||
|
this.flp.TabIndex = 0;
|
|||
|
//
|
|||
|
// BallBrowser
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.AutoSize = true;
|
|||
|
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
|||
|
this.ClientSize = new System.Drawing.Size(127, 88);
|
|||
|
this.Controls.Add(this.flp);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|||
|
this.Name = "BallBrowser";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|||
|
this.Text = "BallBrowser";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.FlowLayoutPanel flp;
|
|||
|
}
|
|||
|
}
|