122 lines
4.9 KiB
C#
122 lines
4.9 KiB
C#
namespace ExcelTest
|
|
{
|
|
partial class Font
|
|
{
|
|
/// <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.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
|
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
|
this.comboBox2 = new System.Windows.Forms.ComboBox();
|
|
this.richTextBox2 = new System.Windows.Forms.RichTextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// richTextBox1
|
|
//
|
|
this.richTextBox1.Location = new System.Drawing.Point(117, 119);
|
|
this.richTextBox1.Name = "richTextBox1";
|
|
this.richTextBox1.Size = new System.Drawing.Size(796, 174);
|
|
this.richTextBox1.TabIndex = 0;
|
|
this.richTextBox1.Text = "안녕하세요";
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Location = new System.Drawing.Point(117, 70);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new System.Drawing.Size(121, 20);
|
|
this.comboBox1.TabIndex = 1;
|
|
this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
|
|
//
|
|
// comboBox2
|
|
//
|
|
this.comboBox2.FormattingEnabled = true;
|
|
this.comboBox2.Location = new System.Drawing.Point(117, 343);
|
|
this.comboBox2.Name = "comboBox2";
|
|
this.comboBox2.Size = new System.Drawing.Size(121, 20);
|
|
this.comboBox2.TabIndex = 3;
|
|
this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
|
|
//
|
|
// richTextBox2
|
|
//
|
|
this.richTextBox2.Location = new System.Drawing.Point(117, 392);
|
|
this.richTextBox2.Name = "richTextBox2";
|
|
this.richTextBox2.Size = new System.Drawing.Size(796, 174);
|
|
this.richTextBox2.TabIndex = 2;
|
|
this.richTextBox2.Text = "반갑습니다";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(355, 70);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(38, 12);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "label1";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(496, 58);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.TabIndex = 5;
|
|
this.button1.Text = "button1";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1698, 966);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.comboBox2);
|
|
this.Controls.Add(this.richTextBox2);
|
|
this.Controls.Add(this.comboBox1);
|
|
this.Controls.Add(this.richTextBox1);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.RichTextBox richTextBox1;
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
private System.Windows.Forms.ComboBox comboBox2;
|
|
private System.Windows.Forms.RichTextBox richTextBox2;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button button1;
|
|
}
|
|
}
|
|
|