| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 | namespace FPER{    partial class FormBoardDataDownload    {        /// <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.progressBar1 = new System.Windows.Forms.ProgressBar();            this.label1 = new System.Windows.Forms.Label();            this.listView1 = new System.Windows.Forms.ListView();            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));            this.button1 = new System.Windows.Forms.Button();            this.button2 = new System.Windows.Forms.Button();            this.SuspendLayout();            //             // progressBar1            //             this.progressBar1.Location = new System.Drawing.Point(11, 622);            this.progressBar1.Maximum = 64;            this.progressBar1.Name = "progressBar1";            this.progressBar1.Size = new System.Drawing.Size(412, 39);            this.progressBar1.TabIndex = 0;            //             // label1            //             this.label1.Dock = System.Windows.Forms.DockStyle.Top;            this.label1.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.label1.Location = new System.Drawing.Point(0, 0);            this.label1.Name = "label1";            this.label1.Size = new System.Drawing.Size(436, 69);            this.label1.TabIndex = 1;            this.label1.Text = "통신보드 데이터 다운로드";            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            //             // listView1            //             this.listView1.AutoArrange = false;            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {            this.columnHeader1,            this.columnHeader2});            this.listView1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;            this.listView1.Location = new System.Drawing.Point(12, 72);            this.listView1.MultiSelect = false;            this.listView1.Name = "listView1";            this.listView1.Size = new System.Drawing.Size(411, 543);            this.listView1.TabIndex = 2;            this.listView1.UseCompatibleStateImageBehavior = false;            this.listView1.View = System.Windows.Forms.View.Details;            //             // columnHeader1            //             this.columnHeader1.Text = "계통번호";            this.columnHeader1.Width = 200;            //             // columnHeader2            //             this.columnHeader2.Text = "상태";            this.columnHeader2.Width = 200;            //             // button1            //             this.button1.Location = new System.Drawing.Point(12, 668);            this.button1.Name = "button1";            this.button1.Size = new System.Drawing.Size(123, 38);            this.button1.TabIndex = 3;            this.button1.Text = "완료";            this.button1.UseVisualStyleBackColor = true;            this.button1.Visible = false;            this.button1.Click += new System.EventHandler(this.button1_Click);            //             // button2            //             this.button2.Location = new System.Drawing.Point(156, 668);            this.button2.Name = "button2";            this.button2.Size = new System.Drawing.Size(123, 38);            this.button2.TabIndex = 4;            this.button2.Text = "재시도";            this.button2.UseVisualStyleBackColor = true;            this.button2.Visible = false;            this.button2.Click += new System.EventHandler(this.button2_Click);            //             // FormBoardDataDownload            //             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.ClientSize = new System.Drawing.Size(436, 714);            this.ControlBox = false;            this.Controls.Add(this.button2);            this.Controls.Add(this.button1);            this.Controls.Add(this.listView1);            this.Controls.Add(this.label1);            this.Controls.Add(this.progressBar1);            this.DoubleBuffered = true;            this.Name = "FormBoardDataDownload";            this.ShowIcon = false;            this.ShowInTaskbar = false;            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;            this.Text = "수신기 설정 쓰기";            this.TopMost = true;            this.Deactivate += new System.EventHandler(this.FormBoardDataDownload_Deactivate);            this.Load += new System.EventHandler(this.FormBoardDataDownload_Load);            this.MdiChildActivate += new System.EventHandler(this.FormBoardDataDownload_MdiChildActivate);            this.EnabledChanged += new System.EventHandler(this.FormBoardDataDownload_EnabledChanged);            this.Leave += new System.EventHandler(this.FormBoardDataDownload_Leave);            this.ResumeLayout(false);        }        #endregion        private System.Windows.Forms.ProgressBar progressBar1;        private System.Windows.Forms.Label label1;        private System.Windows.Forms.ListView listView1;        private System.Windows.Forms.ColumnHeader columnHeader1;        private System.Windows.Forms.ColumnHeader columnHeader2;        public System.Windows.Forms.Button button1;        private System.Windows.Forms.Button button2;    }}
 |