파일 목록
-
📁 10
-
📁 3
-
📁 4
-
📁 4-minicalc
-
📁 7
-
📁 parking manager
- 2.cs
- desktop.ini
- Title.png
- 객체지향 3대 특징(+1).txt
namespace WindowsFormspro2
{
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.btnPrint = new System.Windows.Forms.Button();
this.lblResult = new System.Windows.Forms.Label();
this.tbxAge = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// btnPrint
//
this.btnPrint.BackColor = System.Drawing.SystemColors.Highlight;
this.btnPrint.Font = new System.Drawing.Font("배달의민족 도현 OTF", 8.999999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.btnPrint.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.btnPrint.Location = new System.Drawing.Point(30, 30);
this.btnPrint.Name = "btnPrint";
this.btnPrint.Size = new System.Drawing.Size(100, 40);
this.btnPrint.TabIndex = 0;
this.btnPrint.Text = "프린트";
this.btnPrint.UseVisualStyleBackColor = false;
this.btnPrint.Click += new System.EventHandler(this.button1_Click);
//
// lblResult
//
this.lblResult.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.lblResult.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lblResult.Location = new System.Drawing.Point(36, 139);
this.lblResult.Name = "lblResult";
this.lblResult.Padding = new System.Windows.Forms.Padding(5);
this.lblResult.Size = new System.Drawing.Size(778, 165);
this.lblResult.TabIndex = 1;
this.lblResult.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// tbxAge
//
this.tbxAge.Location = new System.Drawing.Point(30, 87);
this.tbxAge.Name = "tbxAge";
this.tbxAge.Size = new System.Drawing.Size(800, 25);
this.tbxAge.TabIndex = 2;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(871, 486);
this.Controls.Add(this.tbxAge);
this.Controls.Add(this.lblResult);
this.Controls.Add(this.btnPrint);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnPrint;
private System.Windows.Forms.Label lblResult;
private System.Windows.Forms.TextBox tbxAge;
}
}