Created
May 2, 2015 15:41
-
-
Save Kanol/bb6842b2d71d6b3152e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace WindowsFormsApplication2 | |
{ | |
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.components = new System.ComponentModel.Container(); | |
this.textBox1 = new System.Windows.Forms.TextBox(); | |
this.label1 = new System.Windows.Forms.Label(); | |
this.radioButton1 = new System.Windows.Forms.RadioButton(); | |
this.radioButton2 = new System.Windows.Forms.RadioButton(); | |
this.button1 = new System.Windows.Forms.Button(); | |
this.progressBar1 = new System.Windows.Forms.ProgressBar(); | |
this.timer1 = new System.Windows.Forms.Timer(this.components); | |
this.SuspendLayout(); | |
// | |
// textBox1 | |
// | |
this.textBox1.Location = new System.Drawing.Point(72, 58); | |
this.textBox1.Name = "textBox1"; | |
this.textBox1.Size = new System.Drawing.Size(128, 20); | |
this.textBox1.TabIndex = 0; | |
// | |
// label1 | |
// | |
this.label1.AutoSize = true; | |
this.label1.Location = new System.Drawing.Point(81, 25); | |
this.label1.Name = "label1"; | |
this.label1.Size = new System.Drawing.Size(119, 13); | |
this.label1.TabIndex = 1; | |
this.label1.Text = "Введите код продукта"; | |
// | |
// radioButton1 | |
// | |
this.radioButton1.AutoSize = true; | |
this.radioButton1.Location = new System.Drawing.Point(94, 96); | |
this.radioButton1.Name = "radioButton1"; | |
this.radioButton1.Size = new System.Drawing.Size(102, 17); | |
this.radioButton1.TabIndex = 2; | |
this.radioButton1.TabStop = true; | |
this.radioButton1.Text = "Да, я согласен"; | |
this.radioButton1.UseVisualStyleBackColor = true; | |
this.radioButton1.Click += new System.EventHandler(this.radioButton1_Click); | |
// | |
// radioButton2 | |
// | |
this.radioButton2.AutoSize = true; | |
this.radioButton2.Location = new System.Drawing.Point(94, 119); | |
this.radioButton2.Name = "radioButton2"; | |
this.radioButton2.Size = new System.Drawing.Size(106, 17); | |
this.radioButton2.TabIndex = 3; | |
this.radioButton2.TabStop = true; | |
this.radioButton2.Text = "Нет, я согласен"; | |
this.radioButton2.UseVisualStyleBackColor = true; | |
this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged); | |
// | |
// button1 | |
// | |
this.button1.Location = new System.Drawing.Point(94, 153); | |
this.button1.Name = "button1"; | |
this.button1.Size = new System.Drawing.Size(102, 26); | |
this.button1.TabIndex = 4; | |
this.button1.Text = "Найти девушку"; | |
this.button1.UseVisualStyleBackColor = true; | |
this.button1.Visible = false; | |
this.button1.Click += new System.EventHandler(this.button1_Click); | |
// | |
// progressBar1 | |
// | |
this.progressBar1.Location = new System.Drawing.Point(54, 212); | |
this.progressBar1.Name = "progressBar1"; | |
this.progressBar1.Size = new System.Drawing.Size(181, 23); | |
this.progressBar1.Step = 1; | |
this.progressBar1.TabIndex = 5; | |
this.progressBar1.Visible = false; | |
// | |
// timer1 | |
// | |
this.timer1.Interval = 1000; | |
this.timer1.Tick += new System.EventHandler(this.timer1_Tick); | |
// | |
// Form1 | |
// | |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
this.ClientSize = new System.Drawing.Size(292, 273); | |
this.Controls.Add(this.progressBar1); | |
this.Controls.Add(this.button1); | |
this.Controls.Add(this.radioButton2); | |
this.Controls.Add(this.radioButton1); | |
this.Controls.Add(this.label1); | |
this.Controls.Add(this.textBox1); | |
this.Name = "Form1"; | |
this.Text = "Form1"; | |
this.ResumeLayout(false); | |
this.PerformLayout(); | |
} | |
#endregion | |
private System.Windows.Forms.TextBox textBox1; | |
private System.Windows.Forms.Label label1; | |
private System.Windows.Forms.RadioButton radioButton1; | |
private System.Windows.Forms.RadioButton radioButton2; | |
private System.Windows.Forms.Button button1; | |
private System.Windows.Forms.ProgressBar progressBar1; | |
private System.Windows.Forms.Timer timer1; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment