92 lines
4.5 KiB
C#
92 lines
4.5 KiB
C#
namespace Digital_Clock
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.circularProgressBar1 = new CircularProgressBar.CircularProgressBar();
|
|
this.SuspendLayout();
|
|
//
|
|
// circularProgressBar1
|
|
//
|
|
this.circularProgressBar1.AnimationFunction = WinFormAnimation.KnownAnimationFunctions.Liner;
|
|
this.circularProgressBar1.AnimationSpeed = 400;
|
|
this.circularProgressBar1.BackColor = System.Drawing.Color.Transparent;
|
|
this.circularProgressBar1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.circularProgressBar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 25F, System.Drawing.FontStyle.Bold);
|
|
this.circularProgressBar1.ForeColor = System.Drawing.Color.White;
|
|
this.circularProgressBar1.InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(73)))), ((int)(((byte)(94)))));
|
|
this.circularProgressBar1.InnerMargin = 2;
|
|
this.circularProgressBar1.InnerWidth = -1;
|
|
this.circularProgressBar1.Location = new System.Drawing.Point(0, 0);
|
|
this.circularProgressBar1.MarqueeAnimationSpeed = 2000;
|
|
this.circularProgressBar1.Name = "circularProgressBar1";
|
|
this.circularProgressBar1.OuterColor = System.Drawing.Color.White;
|
|
this.circularProgressBar1.OuterMargin = -25;
|
|
this.circularProgressBar1.OuterWidth = 26;
|
|
this.circularProgressBar1.ProgressColor = System.Drawing.Color.DodgerBlue;
|
|
this.circularProgressBar1.ProgressWidth = 16;
|
|
this.circularProgressBar1.SecondaryFont = new System.Drawing.Font("Microsoft Sans Serif", 12F);
|
|
this.circularProgressBar1.Size = new System.Drawing.Size(352, 323);
|
|
this.circularProgressBar1.StartAngle = 270;
|
|
this.circularProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
this.circularProgressBar1.SubscriptColor = System.Drawing.Color.FromArgb(((int)(((byte)(166)))), ((int)(((byte)(166)))), ((int)(((byte)(166)))));
|
|
this.circularProgressBar1.SubscriptMargin = new System.Windows.Forms.Padding(10, -35, 0, 0);
|
|
this.circularProgressBar1.SubscriptText = ".23";
|
|
this.circularProgressBar1.SuperscriptColor = System.Drawing.Color.FromArgb(((int)(((byte)(166)))), ((int)(((byte)(166)))), ((int)(((byte)(166)))));
|
|
this.circularProgressBar1.SuperscriptMargin = new System.Windows.Forms.Padding(10, 35, 0, 0);
|
|
this.circularProgressBar1.SuperscriptText = "";
|
|
this.circularProgressBar1.TabIndex = 0;
|
|
this.circularProgressBar1.Text = "00:00:00";
|
|
this.circularProgressBar1.TextMargin = new System.Windows.Forms.Padding(8, 8, 0, 0);
|
|
this.circularProgressBar1.Value = 60;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.White;
|
|
this.ClientSize = new System.Drawing.Size(352, 323);
|
|
this.Controls.Add(this.circularProgressBar1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.Name = "Form1";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Digital Clock";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private CircularProgressBar.CircularProgressBar circularProgressBar1;
|
|
}
|
|
}
|
|
|