102 lines
4.0 KiB
C#
102 lines
4.0 KiB
C#
namespace тест
|
||
{
|
||
partial class result
|
||
{
|
||
/// <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.textBox1 = new System.Windows.Forms.TextBox();
|
||
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.button2 = new System.Windows.Forms.Button();
|
||
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
||
this.SuspendLayout();
|
||
//
|
||
// textBox1
|
||
//
|
||
this.textBox1.Location = new System.Drawing.Point(13, 13);
|
||
this.textBox1.Multiline = true;
|
||
this.textBox1.Name = "textBox1";
|
||
this.textBox1.ReadOnly = true;
|
||
this.textBox1.Size = new System.Drawing.Size(359, 261);
|
||
this.textBox1.TabIndex = 0;
|
||
this.textBox1.FontChanged += new System.EventHandler(this.textBox1_FontChanged);
|
||
//
|
||
// saveFileDialog1
|
||
//
|
||
this.saveFileDialog1.Filter = "Текстовые файлы (*.txt)|*.txt";
|
||
this.saveFileDialog1.Title = "Сохранить результат";
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(13, 281);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(355, 23);
|
||
this.button1.TabIndex = 1;
|
||
this.button1.Text = "Сохранить результат";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// button2
|
||
//
|
||
this.button2.Location = new System.Drawing.Point(13, 310);
|
||
this.button2.Name = "button2";
|
||
this.button2.Size = new System.Drawing.Size(355, 23);
|
||
this.button2.TabIndex = 2;
|
||
this.button2.Text = "Загрузить результат";
|
||
this.button2.UseVisualStyleBackColor = true;
|
||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||
//
|
||
// openFileDialog1
|
||
//
|
||
this.openFileDialog1.FileName = "openFileDialog1";
|
||
//
|
||
// result
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(380, 450);
|
||
this.Controls.Add(this.button2);
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.textBox1);
|
||
this.Name = "result";
|
||
this.Text = "result";
|
||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.result_FormClosing);
|
||
this.Shown += new System.EventHandler(this.result_Shown);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox textBox1;
|
||
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.Button button2;
|
||
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
||
}
|
||
} |