PKHeX/PKHeX.WinForms/Misc/SplashScreen.Designer.cs
2023-04-21 23:29:50 -05:00

91 lines
3.4 KiB
C#

namespace PKHeX.WinForms
{
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()
{
L_Status = new System.Windows.Forms.Label();
L_Site = new System.Windows.Forms.Label();
PB_Icon = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(PB_Icon)).BeginInit();
SuspendLayout();
//
// L_Status
//
L_Status.AutoSize = true;
L_Status.Location = new System.Drawing.Point(40, 3);
L_Status.Name = "L_Status";
L_Status.Size = new System.Drawing.Size(105, 13);
L_Status.TabIndex = 0;
L_Status.Text = "Starting up PKHeX...";
//
// L_Site
//
L_Site.AutoSize = true;
L_Site.Location = new System.Drawing.Point(40, 21);
L_Site.Name = "L_Site";
L_Site.Size = new System.Drawing.Size(103, 13);
L_Site.TabIndex = 1;
L_Site.Text = "ProjectPokemon.org";
//
// PB_Icon
//
PB_Icon.BackgroundImage = global::PKHeX.WinForms.Properties.Resources.Icon.ToBitmap();
PB_Icon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
PB_Icon.Location = new System.Drawing.Point(2, 3);
PB_Icon.Name = "PB_Icon";
PB_Icon.Size = new System.Drawing.Size(32, 32);
PB_Icon.TabIndex = 2;
PB_Icon.TabStop = false;
//
// SplashScreen
//
AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(150, 38);
Controls.Add(PB_Icon);
Controls.Add(L_Site);
Controls.Add(L_Status);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
Icon = global::PKHeX.WinForms.Properties.Resources.Icon;
Name = "SplashScreen";
Opacity = 0.5D;
StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
FormClosing += new System.Windows.Forms.FormClosingEventHandler(SplashScreen_FormClosing);
((System.ComponentModel.ISupportInitialize)(PB_Icon)).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private System.Windows.Forms.Label L_Site;
private System.Windows.Forms.PictureBox PB_Icon;
public System.Windows.Forms.Label L_Status;
}
}