using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace Samsung_Playlist_Creator { /// /// Summary description for Splash. /// public class Splash : System.Windows.Forms.Form { private System.Windows.Forms.Label label1; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public Splash() { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.Location = new System.Drawing.Point(24, 16); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(376, 128); this.label1.TabIndex = 0; this.label1.Text = "About Text"; // // Splash // this.AllowDrop = true; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.BackColor = System.Drawing.Color.SteelBlue; this.ClientSize = new System.Drawing.Size(440, 228); this.ControlBox = false; this.Controls.Add(this.label1); this.ForeColor = System.Drawing.Color.Linen; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Name = "Splash"; this.Opacity = 0.85; this.ShowInTaskbar = false; this.Text = "About"; this.TopMost = true; this.ResumeLayout(false); } #endregion } }