mirror of
https://github.com/JDM170/fast_typing
synced 2025-12-10 05:57:22 +07:00
183 lines
8.7 KiB
C#
183 lines
8.7 KiB
C#
namespace WindowsFormsApp1
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором форм Windows
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.btn_start = new System.Windows.Forms.Button();
|
||
this.btn_stop = new System.Windows.Forms.Button();
|
||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.lbl_pass_count = new System.Windows.Forms.Label();
|
||
this.label3 = new System.Windows.Forms.Label();
|
||
this.lbl_err_count = new System.Windows.Forms.Label();
|
||
this.trackBar1 = new System.Windows.Forms.TrackBar();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.label4 = new System.Windows.Forms.Label();
|
||
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// btn_start
|
||
//
|
||
this.btn_start.Location = new System.Drawing.Point(81, 130);
|
||
this.btn_start.Name = "btn_start";
|
||
this.btn_start.Size = new System.Drawing.Size(75, 23);
|
||
this.btn_start.TabIndex = 0;
|
||
this.btn_start.Text = "Старт";
|
||
this.btn_start.UseVisualStyleBackColor = true;
|
||
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
|
||
//
|
||
// btn_stop
|
||
//
|
||
this.btn_stop.Location = new System.Drawing.Point(179, 130);
|
||
this.btn_stop.Name = "btn_stop";
|
||
this.btn_stop.Size = new System.Drawing.Size(75, 23);
|
||
this.btn_stop.TabIndex = 1;
|
||
this.btn_stop.Text = "Стоп";
|
||
this.btn_stop.UseVisualStyleBackColor = true;
|
||
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
|
||
//
|
||
// textBox1
|
||
//
|
||
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.textBox1.Location = new System.Drawing.Point(12, 12);
|
||
this.textBox1.Name = "textBox1";
|
||
this.textBox1.Size = new System.Drawing.Size(305, 31);
|
||
this.textBox1.TabIndex = 2;
|
||
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||
this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.label1.Location = new System.Drawing.Point(12, 64);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(91, 18);
|
||
this.label1.TabIndex = 3;
|
||
this.label1.Text = "Пройдено:";
|
||
//
|
||
// lbl_pass_count
|
||
//
|
||
this.lbl_pass_count.AutoSize = true;
|
||
this.lbl_pass_count.BackColor = System.Drawing.SystemColors.Control;
|
||
this.lbl_pass_count.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.lbl_pass_count.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
|
||
this.lbl_pass_count.Location = new System.Drawing.Point(107, 64);
|
||
this.lbl_pass_count.Name = "lbl_pass_count";
|
||
this.lbl_pass_count.Size = new System.Drawing.Size(17, 18);
|
||
this.lbl_pass_count.TabIndex = 4;
|
||
this.lbl_pass_count.Text = "0";
|
||
//
|
||
// label3
|
||
//
|
||
this.label3.AutoSize = true;
|
||
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.label3.Location = new System.Drawing.Point(12, 92);
|
||
this.label3.Name = "label3";
|
||
this.label3.Size = new System.Drawing.Size(76, 18);
|
||
this.label3.TabIndex = 5;
|
||
this.label3.Text = "Ошибок:";
|
||
//
|
||
// lbl_err_count
|
||
//
|
||
this.lbl_err_count.AutoSize = true;
|
||
this.lbl_err_count.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.lbl_err_count.ForeColor = System.Drawing.Color.Red;
|
||
this.lbl_err_count.Location = new System.Drawing.Point(107, 91);
|
||
this.lbl_err_count.Name = "lbl_err_count";
|
||
this.lbl_err_count.Size = new System.Drawing.Size(17, 18);
|
||
this.lbl_err_count.TabIndex = 6;
|
||
this.lbl_err_count.Text = "0";
|
||
//
|
||
// trackBar1
|
||
//
|
||
this.trackBar1.Location = new System.Drawing.Point(153, 64);
|
||
this.trackBar1.Name = "trackBar1";
|
||
this.trackBar1.Size = new System.Drawing.Size(157, 45);
|
||
this.trackBar1.TabIndex = 7;
|
||
this.trackBar1.ValueChanged += new System.EventHandler(this.trackBar1_ValueChanged);
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(140, 96);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(50, 13);
|
||
this.label2.TabIndex = 8;
|
||
this.label2.Text = "быстрее";
|
||
//
|
||
// label4
|
||
//
|
||
this.label4.AutoSize = true;
|
||
this.label4.Location = new System.Drawing.Point(265, 96);
|
||
this.label4.Name = "label4";
|
||
this.label4.Size = new System.Drawing.Size(63, 13);
|
||
this.label4.TabIndex = 9;
|
||
this.label4.Text = "медленнее";
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(334, 162);
|
||
this.Controls.Add(this.label4);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.trackBar1);
|
||
this.Controls.Add(this.lbl_err_count);
|
||
this.Controls.Add(this.label3);
|
||
this.Controls.Add(this.lbl_pass_count);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.textBox1);
|
||
this.Controls.Add(this.btn_stop);
|
||
this.Controls.Add(this.btn_start);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||
this.Name = "Form1";
|
||
this.Text = "Учимся печатать быстро";
|
||
this.Load += new System.EventHandler(this.Form1_Load);
|
||
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button btn_start;
|
||
private System.Windows.Forms.Button btn_stop;
|
||
private System.Windows.Forms.TextBox textBox1;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label lbl_pass_count;
|
||
private System.Windows.Forms.Label label3;
|
||
private System.Windows.Forms.Label lbl_err_count;
|
||
private System.Windows.Forms.TrackBar trackBar1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Label label4;
|
||
}
|
||
}
|
||
|