mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
90 lines
No EOL
3.6 KiB
C#
90 lines
No EOL
3.6 KiB
C#
namespace PKHeX
|
|
{
|
|
partial class SplashScreen
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SplashScreen));
|
|
this.L_Status = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// L_Status
|
|
//
|
|
this.L_Status.AutoSize = true;
|
|
this.L_Status.Location = new System.Drawing.Point(70, 16);
|
|
this.L_Status.Name = "L_Status";
|
|
this.L_Status.Size = new System.Drawing.Size(105, 13);
|
|
this.L_Status.TabIndex = 0;
|
|
this.L_Status.Text = "Starting up PKHeX...";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(71, 42);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(103, 13);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "ProjectPokemon.org";
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage")));
|
|
this.pictureBox1.Location = new System.Drawing.Point(2, 3);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(64, 64);
|
|
this.pictureBox1.TabIndex = 2;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// SplashScreen
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(181, 69);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.L_Status);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "SplashScreen";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Loading...";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
public System.Windows.Forms.Label L_Status;
|
|
}
|
|
} |