108 lines
4.3 KiB
C#
108 lines
4.3 KiB
C#
namespace Mitria_Argument_Creater
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <summary>
|
|
/// 필수 디자이너 변수입니다.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 사용 중인 모든 리소스를 정리합니다.
|
|
/// </summary>
|
|
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form 디자이너에서 생성한 코드
|
|
|
|
/// <summary>
|
|
/// 디자이너 지원에 필요한 메서드입니다.
|
|
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.listView_Version = new System.Windows.Forms.ListView();
|
|
this.textBox_ResultArgument = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(50, 50);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(450, 21);
|
|
this.textBox1.TabIndex = 0;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(520, 50);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(100, 23);
|
|
this.button1.TabIndex = 1;
|
|
this.button1.Text = "button1";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(520, 100);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(100, 97);
|
|
this.button2.TabIndex = 3;
|
|
this.button2.Text = "button2";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
//
|
|
// listView_Version
|
|
//
|
|
this.listView_Version.HideSelection = false;
|
|
this.listView_Version.Location = new System.Drawing.Point(50, 100);
|
|
this.listView_Version.Name = "listView_Version";
|
|
this.listView_Version.Size = new System.Drawing.Size(450, 97);
|
|
this.listView_Version.TabIndex = 4;
|
|
this.listView_Version.UseCompatibleStateImageBehavior = false;
|
|
this.listView_Version.View = System.Windows.Forms.View.List;
|
|
//
|
|
// textBox_ResultArgument
|
|
//
|
|
this.textBox_ResultArgument.Location = new System.Drawing.Point(50, 231);
|
|
this.textBox_ResultArgument.Name = "textBox_ResultArgument";
|
|
this.textBox_ResultArgument.Size = new System.Drawing.Size(100, 21);
|
|
this.textBox_ResultArgument.TabIndex = 5;
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.textBox_ResultArgument);
|
|
this.Controls.Add(this.listView_Version);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Name = "MainForm";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.ListView listView_Version;
|
|
private System.Windows.Forms.TextBox textBox_ResultArgument;
|
|
}
|
|
}
|
|
|