| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 | namespace IControls_FireManager{    partial class Login    {        /// <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()        {            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Login));            this.button_login = new System.Windows.Forms.Button();            this.textBox_ID = new System.Windows.Forms.TextBox();            this.label1 = new System.Windows.Forms.Label();            this.textBox_PW = new System.Windows.Forms.TextBox();            this.label2 = new System.Windows.Forms.Label();            this.SuspendLayout();            //             // button_login            //             this.button_login.Location = new System.Drawing.Point(109, 66);            this.button_login.Name = "button_login";            this.button_login.Size = new System.Drawing.Size(100, 23);            this.button_login.TabIndex = 3;            this.button_login.Text = "로그인";            this.button_login.UseVisualStyleBackColor = true;            this.button_login.Click += new System.EventHandler(this.button_login_Click);            //             // textBox_ID            //             this.textBox_ID.Location = new System.Drawing.Point(109, 12);            this.textBox_ID.Name = "textBox_ID";            this.textBox_ID.Size = new System.Drawing.Size(100, 21);            this.textBox_ID.TabIndex = 1;            //             // label1            //             this.label1.AutoSize = true;            this.label1.Location = new System.Drawing.Point(41, 12);            this.label1.Name = "label1";            this.label1.Size = new System.Drawing.Size(16, 12);            this.label1.TabIndex = 4;            this.label1.Text = "ID";            //             // textBox_PW            //             this.textBox_PW.Location = new System.Drawing.Point(109, 39);            this.textBox_PW.Name = "textBox_PW";            this.textBox_PW.Size = new System.Drawing.Size(100, 21);            this.textBox_PW.TabIndex = 2;            //             // label2            //             this.label2.AutoSize = true;            this.label2.Location = new System.Drawing.Point(41, 42);            this.label2.Name = "label2";            this.label2.Size = new System.Drawing.Size(62, 12);            this.label2.TabIndex = 4;            this.label2.Text = "Password";            //             // Login            //             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.ClientSize = new System.Drawing.Size(291, 97);            this.Controls.Add(this.label2);            this.Controls.Add(this.label1);            this.Controls.Add(this.textBox_PW);            this.Controls.Add(this.textBox_ID);            this.Controls.Add(this.button_login);            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));            this.MaximizeBox = false;            this.MinimizeBox = false;            this.Name = "Login";            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;            this.Text = "IControls FireOperator 2.0 [Login]";            this.TopMost = true;            this.ResumeLayout(false);            this.PerformLayout();        }        #endregion        private System.Windows.Forms.Button button_login;        private System.Windows.Forms.TextBox textBox_ID;        private System.Windows.Forms.Label label1;        private System.Windows.Forms.TextBox textBox_PW;        private System.Windows.Forms.Label label2;            }}
 |