1
0
mirror of https://github.com/YellowberryHN/WACCALauncher synced 2024-09-24 03:18:26 +02:00
WACCALauncher/MainForm.Designer.cs
2023-04-24 03:25:28 -06:00

73 lines
2.8 KiB
C#

namespace WACCALauncher
{
partial class MainForm
{
/// <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.menuLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// menuLabel
//
this.menuLabel.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.menuLabel.Font = new System.Drawing.Font("Tahoma", 22.5F);
this.menuLabel.ForeColor = System.Drawing.Color.White;
this.menuLabel.Location = new System.Drawing.Point(287, 127);
this.menuLabel.Name = "menuLabel";
this.menuLabel.Size = new System.Drawing.Size(500, 30);
this.menuLabel.TabIndex = 0;
this.menuLabel.Text = "MENU TITLE";
this.menuLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.menuLabel.Visible = false;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(1080, 1080);
this.Controls.Add(this.menuLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.KeyPreview = true;
this.Name = "MainForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "WACCA Launcher";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.KeyPressed);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label menuLabel;
}
}