changed elements on splash screen
This commit is contained in:
parent
8c0e67c799
commit
5b5f6342fb
1 changed files with 18 additions and 17 deletions
35
Saviour Backup System/splashScreen.Designer.cs
generated
35
Saviour Backup System/splashScreen.Designer.cs
generated
|
@ -28,39 +28,39 @@
|
|||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(splashScreen));
|
||||
this.desc = new System.Windows.Forms.Label();
|
||||
this.description = new System.Windows.Forms.Label();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// desc
|
||||
// description
|
||||
//
|
||||
this.desc.AutoSize = true;
|
||||
this.desc.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.desc.ForeColor = System.Drawing.Color.White;
|
||||
this.desc.Location = new System.Drawing.Point(81, 176);
|
||||
this.desc.Name = "desc";
|
||||
this.desc.Size = new System.Drawing.Size(88, 16);
|
||||
this.desc.TabIndex = 0;
|
||||
this.desc.Text = "The Label!";
|
||||
this.description.AutoSize = true;
|
||||
this.description.BackColor = System.Drawing.Color.Transparent;
|
||||
this.description.Font = new System.Drawing.Font("Lucida Sans Typewriter", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.description.ForeColor = System.Drawing.Color.Black;
|
||||
this.description.Location = new System.Drawing.Point(150, 61);
|
||||
this.description.Name = "description";
|
||||
this.description.Size = new System.Drawing.Size(88, 16);
|
||||
this.description.TabIndex = 0;
|
||||
this.description.Text = "The Label!";
|
||||
//
|
||||
// splashScreen
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
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.ClientSize = new System.Drawing.Size(408, 198);
|
||||
this.ControlBox = false;
|
||||
this.Controls.Add(this.desc);
|
||||
this.Cursor = System.Windows.Forms.Cursors.AppStarting;
|
||||
this.Controls.Add(this.description);
|
||||
this.Cursor = System.Windows.Forms.Cursors.Default;
|
||||
this.DoubleBuffered = true;
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
||||
this.Name = "splashScreen";
|
||||
this.ShowInTaskbar = false;
|
||||
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Savior Backup System";
|
||||
this.TransparencyKey = System.Drawing.Color.White;
|
||||
this.TopMost = true;
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
|
@ -68,6 +68,7 @@
|
|||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Label desc;
|
||||
public System.Windows.Forms.Label description;
|
||||
|
||||
}
|
||||
}
|
Reference in a new issue