87 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace chart_scottplot
 | |
| {
 | |
|     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.panel1 = new System.Windows.Forms.Panel();
 | |
|             this.button1 = new System.Windows.Forms.Button();
 | |
|             this.button2 = new System.Windows.Forms.Button();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // panel1
 | |
|             // 
 | |
|             this.panel1.Location = new System.Drawing.Point(59, 54);
 | |
|             this.panel1.Name = "panel1";
 | |
|             this.panel1.Size = new System.Drawing.Size(1101, 439);
 | |
|             this.panel1.TabIndex = 0;
 | |
|             // 
 | |
|             // button1
 | |
|             // 
 | |
|             this.button1.Location = new System.Drawing.Point(83, 528);
 | |
|             this.button1.Name = "button1";
 | |
|             this.button1.Size = new System.Drawing.Size(346, 73);
 | |
|             this.button1.TabIndex = 1;
 | |
|             this.button1.Text = "button1";
 | |
|             this.button1.UseVisualStyleBackColor = true;
 | |
|             this.button1.Click += new System.EventHandler(this.button1_Click);
 | |
|             // 
 | |
|             // button2
 | |
|             // 
 | |
|             this.button2.Location = new System.Drawing.Point(435, 528);
 | |
|             this.button2.Name = "button2";
 | |
|             this.button2.Size = new System.Drawing.Size(346, 73);
 | |
|             this.button2.TabIndex = 2;
 | |
|             this.button2.Text = "button2";
 | |
|             this.button2.UseVisualStyleBackColor = true;
 | |
|             this.button2.Click += new System.EventHandler(this.button2_Click);
 | |
|             // 
 | |
|             // Form1
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(1286, 646);
 | |
|             this.Controls.Add(this.button2);
 | |
|             this.Controls.Add(this.button1);
 | |
|             this.Controls.Add(this.panel1);
 | |
|             this.Name = "Form1";
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Text = "Form1";
 | |
|             this.Load += new System.EventHandler(this.Form1_Load);
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.Panel panel1;
 | |
|         private System.Windows.Forms.Button button1;
 | |
|         private System.Windows.Forms.Button button2;
 | |
|     }
 | |
| }
 | |
| 
 | 
