68 lines
2.4 KiB
C#
68 lines
2.4 KiB
C#
|
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.listBox1 = new System.Windows.Forms.ListBox();
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// listBox1
|
|||
|
//
|
|||
|
this.listBox1.FormattingEnabled = true;
|
|||
|
this.listBox1.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.listBox1.Name = "listBox1";
|
|||
|
this.listBox1.Size = new System.Drawing.Size(588, 381);
|
|||
|
this.listBox1.TabIndex = 0;
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.Location = new System.Drawing.Point(13, 404);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.button1.TabIndex = 1;
|
|||
|
this.button1.Text = "RUN";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(612, 439);
|
|||
|
this.Controls.Add(this.button1);
|
|||
|
this.Controls.Add(this.listBox1);
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Form1";
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.ListBox listBox1;
|
|||
|
private System.Windows.Forms.Button button1;
|
|||
|
}
|