100 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace portalApi
 | |
| {
 | |
|     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.textBox1 = new System.Windows.Forms.TextBox();
 | |
|             this.richTextBox1 = new System.Windows.Forms.RichTextBox();
 | |
|             this.button1 = new System.Windows.Forms.Button();
 | |
|             this.comboBox1 = new System.Windows.Forms.ComboBox();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // textBox1
 | |
|             // 
 | |
|             this.textBox1.Location = new System.Drawing.Point(22, 26);
 | |
|             this.textBox1.Name = "textBox1";
 | |
|             this.textBox1.Size = new System.Drawing.Size(185, 21);
 | |
|             this.textBox1.TabIndex = 0;
 | |
|             this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
 | |
|             // 
 | |
|             // richTextBox1
 | |
|             // 
 | |
|             this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
 | |
|             this.richTextBox1.Location = new System.Drawing.Point(0, 53);
 | |
|             this.richTextBox1.Name = "richTextBox1";
 | |
|             this.richTextBox1.Size = new System.Drawing.Size(542, 542);
 | |
|             this.richTextBox1.TabIndex = 1;
 | |
|             this.richTextBox1.Text = "";
 | |
|             // 
 | |
|             // button1
 | |
|             // 
 | |
|             this.button1.Location = new System.Drawing.Point(213, 23);
 | |
|             this.button1.Name = "button1";
 | |
|             this.button1.Size = new System.Drawing.Size(75, 23);
 | |
|             this.button1.TabIndex = 2;
 | |
|             this.button1.Text = "button1";
 | |
|             this.button1.UseVisualStyleBackColor = true;
 | |
|             this.button1.Click += new System.EventHandler(this.button1_Click);
 | |
|             // 
 | |
|             // comboBox1
 | |
|             // 
 | |
|             this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
 | |
|             this.comboBox1.FormattingEnabled = true;
 | |
|             this.comboBox1.Location = new System.Drawing.Point(325, 26);
 | |
|             this.comboBox1.Name = "comboBox1";
 | |
|             this.comboBox1.Size = new System.Drawing.Size(121, 20);
 | |
|             this.comboBox1.TabIndex = 3;
 | |
|             // 
 | |
|             // Form1
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(542, 595);
 | |
|             this.Controls.Add(this.comboBox1);
 | |
|             this.Controls.Add(this.button1);
 | |
|             this.Controls.Add(this.richTextBox1);
 | |
|             this.Controls.Add(this.textBox1);
 | |
|             this.Name = "Form1";
 | |
|             this.Text = "Form1";
 | |
|             this.Load += new System.EventHandler(this.Form1_Load);
 | |
|             this.ResumeLayout(false);
 | |
|             this.PerformLayout();
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.TextBox textBox1;
 | |
|         private System.Windows.Forms.RichTextBox richTextBox1;
 | |
|         private System.Windows.Forms.Button button1;
 | |
|         private System.Windows.Forms.ComboBox comboBox1;
 | |
|     }
 | |
| }
 | |
| 
 | 
