1
Fork 0

changed elements on splash screen

This commit is contained in:
Jake Howard 2014-12-03 12:27:44 +00:00
parent 8c0e67c799
commit 5b5f6342fb

View file

@ -28,39 +28,39 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(splashScreen)); this.description = new System.Windows.Forms.Label();
this.desc = new System.Windows.Forms.Label();
this.SuspendLayout(); this.SuspendLayout();
// //
// desc // description
// //
this.desc.AutoSize = true; this.description.AutoSize = true;
this.desc.BackColor = System.Drawing.Color.Transparent; this.description.BackColor = System.Drawing.Color.Transparent;
this.desc.Font = new System.Drawing.Font("Lucida Sans Typewriter", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.description.Font = new System.Drawing.Font("Lucida Sans Typewriter", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.desc.ForeColor = System.Drawing.Color.White; this.description.ForeColor = System.Drawing.Color.Black;
this.desc.Location = new System.Drawing.Point(81, 176); this.description.Location = new System.Drawing.Point(150, 61);
this.desc.Name = "desc"; this.description.Name = "description";
this.desc.Size = new System.Drawing.Size(88, 16); this.description.Size = new System.Drawing.Size(88, 16);
this.desc.TabIndex = 0; this.description.TabIndex = 0;
this.desc.Text = "The Label!"; this.description.Text = "The Label!";
// //
// splashScreen // splashScreen
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); this.BackColor = System.Drawing.Color.White;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(408, 198); this.ClientSize = new System.Drawing.Size(408, 198);
this.ControlBox = false; this.ControlBox = false;
this.Controls.Add(this.desc); this.Controls.Add(this.description);
this.Cursor = System.Windows.Forms.Cursors.AppStarting; this.Cursor = System.Windows.Forms.Cursors.Default;
this.DoubleBuffered = true; this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "splashScreen"; this.Name = "splashScreen";
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Savior Backup System"; this.Text = "Savior Backup System";
this.TransparencyKey = System.Drawing.Color.White; this.TopMost = true;
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();
@ -68,6 +68,7 @@
#endregion #endregion
private System.Windows.Forms.Label desc; public System.Windows.Forms.Label description;
} }
} }