파일 목록
-
📁 10
-
📁 3
-
📁 4
-
📁 4-minicalc
-
📁 7
-
📁 parking manager
- 2.cs
- desktop.ini
- Title.png
- 객체지향 3대 특징(+1).txt
namespace MiniCalc
{
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.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tbxnum1 = new System.Windows.Forms.TextBox();
this.tbxnum2 = new System.Windows.Forms.TextBox();
this.add = new System.Windows.Forms.Button();
this.sub = new System.Windows.Forms.Button();
this.mul = new System.Windows.Forms.Button();
this.div = new System.Windows.Forms.Button();
this.result = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.label1.Location = new System.Drawing.Point(44, 43);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 23);
this.label1.TabIndex = 0;
this.label1.Text = "피연산자1";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 13.8F);
this.label2.Location = new System.Drawing.Point(44, 89);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(101, 23);
this.label2.TabIndex = 1;
this.label2.Text = "피연산자2";
//
// tbxnum1
//
this.tbxnum1.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.tbxnum1.Location = new System.Drawing.Point(163, 41);
this.tbxnum1.Name = "tbxnum1";
this.tbxnum1.Size = new System.Drawing.Size(197, 28);
this.tbxnum1.TabIndex = 2;
//
// tbxnum2
//
this.tbxnum2.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.tbxnum2.Location = new System.Drawing.Point(163, 91);
this.tbxnum2.Name = "tbxnum2";
this.tbxnum2.Size = new System.Drawing.Size(197, 28);
this.tbxnum2.TabIndex = 3;
//
// add
//
this.add.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 12F);
this.add.Location = new System.Drawing.Point(42, 138);
this.add.Name = "add";
this.add.Size = new System.Drawing.Size(75, 30);
this.add.TabIndex = 4;
this.add.Text = "+";
this.add.UseVisualStyleBackColor = true;
this.add.Click += new System.EventHandler(this.add_Click);
//
// sub
//
this.sub.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 12F);
this.sub.Location = new System.Drawing.Point(123, 138);
this.sub.Name = "sub";
this.sub.Size = new System.Drawing.Size(75, 30);
this.sub.TabIndex = 5;
this.sub.Text = "-";
this.sub.UseVisualStyleBackColor = true;
this.sub.Click += new System.EventHandler(this.sub_Click);
//
// mul
//
this.mul.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 12F);
this.mul.Location = new System.Drawing.Point(204, 138);
this.mul.Name = "mul";
this.mul.Size = new System.Drawing.Size(75, 30);
this.mul.TabIndex = 6;
this.mul.Text = "*";
this.mul.UseVisualStyleBackColor = true;
this.mul.Click += new System.EventHandler(this.mul_Click);
//
// div
//
this.div.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 12F);
this.div.Location = new System.Drawing.Point(285, 138);
this.div.Name = "div";
this.div.Size = new System.Drawing.Size(75, 30);
this.div.TabIndex = 7;
this.div.Text = "/";
this.div.UseVisualStyleBackColor = true;
this.div.Click += new System.EventHandler(this.div_Click);
//
// result
//
this.result.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.result.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.result.Font = new System.Drawing.Font("배달의민족 한나체 Pro OTF", 12F);
this.result.ForeColor = System.Drawing.SystemColors.ControlText;
this.result.Location = new System.Drawing.Point(42, 185);
this.result.Name = "result";
this.result.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.result.Size = new System.Drawing.Size(318, 117);
this.result.TabIndex = 8;
this.result.Text = "0";
this.result.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(396, 319);
this.Controls.Add(this.result);
this.Controls.Add(this.div);
this.Controls.Add(this.mul);
this.Controls.Add(this.sub);
this.Controls.Add(this.add);
this.Controls.Add(this.tbxnum2);
this.Controls.Add(this.tbxnum1);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox tbxnum1;
private System.Windows.Forms.TextBox tbxnum2;
private System.Windows.Forms.Button add;
private System.Windows.Forms.Button sub;
private System.Windows.Forms.Button mul;
private System.Windows.Forms.Button div;
private System.Windows.Forms.Label result;
}
}