72 lines
2.9 KiB
C#
72 lines
2.9 KiB
C#
|
|
namespace CPSO.Forms
|
|||
|
|
{
|
|||
|
|
sealed partial class FrmSplash
|
|||
|
|
{
|
|||
|
|
/// <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.progressBar = new System.Windows.Forms.ProgressBar();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// progressBar
|
|||
|
|
//
|
|||
|
|
this.progressBar.ForeColor = System.Drawing.SystemColors.MenuHighlight;
|
|||
|
|
this.progressBar.Location = new System.Drawing.Point(0, 330);
|
|||
|
|
this.progressBar.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|||
|
|
this.progressBar.MarqueeAnimationSpeed = 10;
|
|||
|
|
this.progressBar.Name = "progressBar";
|
|||
|
|
this.progressBar.Size = new System.Drawing.Size(800, 20);
|
|||
|
|
this.progressBar.Step = 5;
|
|||
|
|
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|||
|
|
this.progressBar.TabIndex = 1;
|
|||
|
|
//
|
|||
|
|
// FrmSplash
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.BackColor = System.Drawing.Color.White;
|
|||
|
|
this.BackgroundImage = global::CPSO.Properties.Resources.Splash_03;
|
|||
|
|
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(800, 360);
|
|||
|
|
this.Controls.Add(this.progressBar);
|
|||
|
|
this.DoubleBuffered = true;
|
|||
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|||
|
|
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|||
|
|
this.MaximumSize = new System.Drawing.Size(800, 360);
|
|||
|
|
this.MinimumSize = new System.Drawing.Size(800, 360);
|
|||
|
|
this.Name = "FrmSplash";
|
|||
|
|
this.ShowInTaskbar = false;
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "frmSplash";
|
|||
|
|
this.TransparencyKey = System.Drawing.Color.Magenta;
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
private System.Windows.Forms.ProgressBar progressBar;
|
|||
|
|
}
|
|||
|
|
}
|