Menu



Manage

Study_C# > 도전/Form1.Designer.cs Lines 168 | 7.0 KB
다운로드

                        namespace Program
{
    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.lblName = new System.Windows.Forms.Label();
            this.tbxName = new System.Windows.Forms.TextBox();
            this.lblAge = new System.Windows.Forms.Label();
            this.tbxAge = new System.Windows.Forms.TextBox();
            this.lblStuNum = new System.Windows.Forms.Label();
            this.tbxStuNum = new System.Windows.Forms.TextBox();
            this.lblSub = new System.Windows.Forms.Label();
            this.tbxSub = new System.Windows.Forms.TextBox();
            this.lblResult = new System.Windows.Forms.Label();
            this.btnResult = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // lblName
            // 
            this.lblName.AutoSize = true;
            this.lblName.Location = new System.Drawing.Point(27, 30);
            this.lblName.Name = "lblName";
            this.lblName.Size = new System.Drawing.Size(37, 15);
            this.lblName.TabIndex = 0;
            this.lblName.Text = "이름";
            // 
            // tbxName
            // 
            this.tbxName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tbxName.Location = new System.Drawing.Point(138, 27);
            this.tbxName.Name = "tbxName";
            this.tbxName.Size = new System.Drawing.Size(153, 25);
            this.tbxName.TabIndex = 1;
            // 
            // lblAge
            // 
            this.lblAge.AutoSize = true;
            this.lblAge.Location = new System.Drawing.Point(27, 80);
            this.lblAge.Name = "lblAge";
            this.lblAge.Size = new System.Drawing.Size(37, 15);
            this.lblAge.TabIndex = 2;
            this.lblAge.Text = "나이";
            // 
            // tbxAge
            // 
            this.tbxAge.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tbxAge.Location = new System.Drawing.Point(138, 77);
            this.tbxAge.Name = "tbxAge";
            this.tbxAge.Size = new System.Drawing.Size(153, 25);
            this.tbxAge.TabIndex = 3;
            // 
            // lblStuNum
            // 
            this.lblStuNum.AutoSize = true;
            this.lblStuNum.Location = new System.Drawing.Point(330, 80);
            this.lblStuNum.Name = "lblStuNum";
            this.lblStuNum.Size = new System.Drawing.Size(37, 15);
            this.lblStuNum.TabIndex = 4;
            this.lblStuNum.Text = "학번";
            // 
            // tbxStuNum
            // 
            this.tbxStuNum.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tbxStuNum.Location = new System.Drawing.Point(437, 77);
            this.tbxStuNum.Name = "tbxStuNum";
            this.tbxStuNum.Size = new System.Drawing.Size(153, 25);
            this.tbxStuNum.TabIndex = 5;
            // 
            // lblSub
            // 
            this.lblSub.AutoSize = true;
            this.lblSub.Location = new System.Drawing.Point(27, 130);
            this.lblSub.Name = "lblSub";
            this.lblSub.Size = new System.Drawing.Size(37, 15);
            this.lblSub.TabIndex = 6;
            this.lblSub.Text = "과목";
            // 
            // tbxSub
            // 
            this.tbxSub.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tbxSub.Location = new System.Drawing.Point(138, 127);
            this.tbxSub.Name = "tbxSub";
            this.tbxSub.Size = new System.Drawing.Size(452, 25);
            this.tbxSub.TabIndex = 7;
            // 
            // lblResult
            // 
            this.lblResult.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.lblResult.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblResult.Location = new System.Drawing.Point(30, 211);
            this.lblResult.Name = "lblResult";
            this.lblResult.Size = new System.Drawing.Size(560, 268);
            this.lblResult.TabIndex = 8;
            // 
            // btnResult
            // 
            this.btnResult.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.btnResult.Location = new System.Drawing.Point(30, 165);
            this.btnResult.Name = "btnResult";
            this.btnResult.Size = new System.Drawing.Size(560, 33);
            this.btnResult.TabIndex = 9;
            this.btnResult.Text = "변환";
            this.btnResult.UseVisualStyleBackColor = false;
            this.btnResult.Click += new System.EventHandler(this.btnResult_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(626, 500);
            this.Controls.Add(this.btnResult);
            this.Controls.Add(this.lblResult);
            this.Controls.Add(this.tbxSub);
            this.Controls.Add(this.lblSub);
            this.Controls.Add(this.tbxStuNum);
            this.Controls.Add(this.lblStuNum);
            this.Controls.Add(this.tbxAge);
            this.Controls.Add(this.lblAge);
            this.Controls.Add(this.tbxName);
            this.Controls.Add(this.lblName);
            this.Name = "Form1";
            this.Text = "자기소개";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label lblName;
        private System.Windows.Forms.TextBox tbxName;
        private System.Windows.Forms.Label lblAge;
        private System.Windows.Forms.TextBox tbxAge;
        private System.Windows.Forms.Label lblStuNum;
        private System.Windows.Forms.TextBox tbxStuNum;
        private System.Windows.Forms.Label lblSub;
        private System.Windows.Forms.TextBox tbxSub;
        private System.Windows.Forms.Label lblResult;
        private System.Windows.Forms.Button btnResult;
    }
}