113 lines
4.7 KiB
C#
113 lines
4.7 KiB
C#
namespace JsonConvertTool
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.richInput = new System.Windows.Forms.RichTextBox();
|
|
this.btnClear = new System.Windows.Forms.Button();
|
|
this.btnConvert = new System.Windows.Forms.Button();
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// richInput
|
|
//
|
|
this.richInput.Location = new System.Drawing.Point(12, 12);
|
|
this.richInput.Name = "richInput";
|
|
this.richInput.Size = new System.Drawing.Size(400, 743);
|
|
this.richInput.TabIndex = 0;
|
|
this.richInput.Text = "";
|
|
//
|
|
// btnClear
|
|
//
|
|
this.btnClear.Location = new System.Drawing.Point(12, 761);
|
|
this.btnClear.Name = "btnClear";
|
|
this.btnClear.Size = new System.Drawing.Size(167, 42);
|
|
this.btnClear.TabIndex = 1;
|
|
this.btnClear.Text = "Clear";
|
|
this.btnClear.UseVisualStyleBackColor = true;
|
|
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
|
|
//
|
|
// btnConvert
|
|
//
|
|
this.btnConvert.Location = new System.Drawing.Point(185, 761);
|
|
this.btnConvert.Name = "btnConvert";
|
|
this.btnConvert.Size = new System.Drawing.Size(167, 42);
|
|
this.btnConvert.TabIndex = 2;
|
|
this.btnConvert.Text = "Convert";
|
|
this.btnConvert.UseVisualStyleBackColor = true;
|
|
this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Location = new System.Drawing.Point(418, 12);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowHeadersWidth = 51;
|
|
this.dataGridView1.RowTemplate.Height = 27;
|
|
this.dataGridView1.Size = new System.Drawing.Size(1343, 713);
|
|
this.dataGridView1.TabIndex = 3;
|
|
//
|
|
// textEdit1
|
|
//
|
|
this.textEdit1.Location = new System.Drawing.Point(418, 731);
|
|
this.textEdit1.Name = "textEdit1";
|
|
this.textEdit1.Size = new System.Drawing.Size(1343, 24);
|
|
this.textEdit1.TabIndex = 4;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1773, 815);
|
|
this.Controls.Add(this.textEdit1);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Controls.Add(this.btnConvert);
|
|
this.Controls.Add(this.btnClear);
|
|
this.Controls.Add(this.richInput);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.RichTextBox richInput;
|
|
private System.Windows.Forms.Button btnClear;
|
|
private System.Windows.Forms.Button btnConvert;
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private DevExpress.XtraEditors.TextEdit textEdit1;
|
|
}
|
|
}
|
|
|