namespace Catalyst_Launcher { using Catalyst_Launcher.My; using Microsoft.VisualBasic.CompilerServices; using System; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Runtime.CompilerServices; using System.Windows.Forms; [DesignerGenerated] public sealed class SplashScreen1 : Form { [AccessedThroughProperty("Copyright")] private Label _Copyright; [AccessedThroughProperty("DetailsLayoutPanel")] private TableLayoutPanel _DetailsLayoutPanel; [AccessedThroughProperty("MainLayoutPanel")] private TableLayoutPanel _MainLayoutPanel; [AccessedThroughProperty("Version")] private Label _Version; private IContainer components; public SplashScreen1() { base.Load += new EventHandler(this.SplashScreen1_Load); this.InitializeComponent(); } [DebuggerNonUserCode] protected override void Dispose(bool disposing) { try { if (disposing && (this.components != null)) { this.components.Dispose(); } } finally { base.Dispose(disposing); } } [DebuggerStepThrough] private void InitializeComponent() { ComponentResourceManager manager = new ComponentResourceManager(typeof(SplashScreen1)); this.MainLayoutPanel = new TableLayoutPanel(); this.DetailsLayoutPanel = new TableLayoutPanel(); this.Version = new Label(); this.Copyright = new Label(); this.MainLayoutPanel.SuspendLayout(); this.DetailsLayoutPanel.SuspendLayout(); this.SuspendLayout(); this.MainLayoutPanel.BackColor = Color.Transparent; this.MainLayoutPanel.BackgroundImageLayout = ImageLayout.Stretch; this.MainLayoutPanel.ColumnCount = 2; this.MainLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 144f)); this.MainLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 199f)); this.MainLayoutPanel.Controls.Add(this.DetailsLayoutPanel, 1, 1); this.MainLayoutPanel.Dock = DockStyle.Fill; this.MainLayoutPanel.ForeColor = SystemColors.MenuHighlight; Point point2 = new Point(0, 0); this.MainLayoutPanel.Location = point2; this.MainLayoutPanel.Name = "MainLayoutPanel"; this.MainLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Absolute, 256f)); this.MainLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Absolute, 45f)); Size size2 = new Size(0x1f0, 0x12f); this.MainLayoutPanel.Size = size2; this.MainLayoutPanel.TabIndex = 0; this.DetailsLayoutPanel.BackColor = Color.Transparent; this.DetailsLayoutPanel.ColumnCount = 1; this.DetailsLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 247f)); this.DetailsLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 142f)); this.DetailsLayoutPanel.Controls.Add(this.Version, 0, 0); this.DetailsLayoutPanel.Controls.Add(this.Copyright, 0, 1); this.DetailsLayoutPanel.Dock = DockStyle.Bottom; point2 = new Point(0x93, 0x103); this.DetailsLayoutPanel.Location = point2; this.DetailsLayoutPanel.Name = "DetailsLayoutPanel"; this.DetailsLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 33f)); this.DetailsLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 33f)); size2 = new Size(0x15a, 0x29); this.DetailsLayoutPanel.Size = size2; this.DetailsLayoutPanel.TabIndex = 1; this.Version.BackColor = Color.Transparent; this.Version.Dock = DockStyle.Right; this.Version.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 0); this.Version.ForeColor = SystemColors.ControlText; point2 = new Point(0x66, 0); this.Version.Location = point2; this.Version.Name = "Version"; size2 = new Size(0xf1, 20); this.Version.Size = size2; this.Version.TabIndex = 1; this.Version.Text = "Version {0}.{1:00}"; this.Version.TextAlign = ContentAlignment.MiddleRight; this.Copyright.BackColor = Color.Transparent; this.Copyright.Dock = DockStyle.Right; this.Copyright.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 0); this.Copyright.ForeColor = SystemColors.ControlText; point2 = new Point(0x66, 20); this.Copyright.Location = point2; this.Copyright.Name = "Copyright"; size2 = new Size(0xf1, 0x15); this.Copyright.Size = size2; this.Copyright.TabIndex = 2; this.Copyright.Text = "2015"; this.Copyright.TextAlign = ContentAlignment.MiddleRight; SizeF ef2 = new SizeF(8f, 16f); this.AutoScaleDimensions = ef2; this.AutoScaleMode = AutoScaleMode.Font; this.BackColor = Color.DarkGreen; this.BackgroundImage = (Image) manager.GetObject("$this.BackgroundImage"); size2 = new Size(0x1f0, 0x12f); this.ClientSize = size2; this.ControlBox = false; this.Controls.Add(this.MainLayoutPanel); this.ForeColor = Color.Transparent; this.FormBorderStyle = FormBorderStyle.None; this.Icon = (Icon) manager.GetObject("$this.Icon"); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "SplashScreen1"; this.ShowInTaskbar = false; this.StartPosition = FormStartPosition.CenterScreen; this.TransparencyKey = Color.FromArgb(0xe0, 0xe0, 0xe0); this.MainLayoutPanel.ResumeLayout(false); this.DetailsLayoutPanel.ResumeLayout(false); this.ResumeLayout(false); } [MethodImpl(MethodImplOptions.NoOptimization | MethodImplOptions.NoInlining)] private void SplashScreen1_Load(object sender, EventArgs e) { this.Version.Text = string.Format(this.Version.Text, MyProject.Application.Info.Version.Major, MyProject.Application.Info.Version.Minor); this.Copyright.Text = MyProject.Application.Info.Copyright; } internal virtual Label Copyright { get => this._Copyright [MethodImpl(MethodImplOptions.Synchronized)] set { this._Copyright = value; } } internal virtual TableLayoutPanel DetailsLayoutPanel { get => this._DetailsLayoutPanel [MethodImpl(MethodImplOptions.Synchronized)] set { this._DetailsLayoutPanel = value; } } internal virtual TableLayoutPanel MainLayoutPanel { get => this._MainLayoutPanel [MethodImpl(MethodImplOptions.Synchronized)] set { this._MainLayoutPanel = value; } } internal virtual Label Version { get => this._Version [MethodImpl(MethodImplOptions.Synchronized)] set { this._Version = value; } } } }