| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028 | namespace FPER{    partial class frmControlMode    {        /// <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.components = new System.ComponentModel.Container();            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmControlMode));            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();            this.lblDir = new System.Windows.Forms.Label();            this.panel1 = new System.Windows.Forms.Panel();            this.btnWinClose = new System.Windows.Forms.Button();            this.tabControl_Main = new System.Windows.Forms.TabControl();            this.tabPage_Board = new System.Windows.Forms.TabPage();            this.label_InfoApplyComment = new System.Windows.Forms.Label();            this.panelBoard1 = new System.Windows.Forms.Panel();            this.label1 = new System.Windows.Forms.Label();            this.checkLoop0Board1 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board1 = new System.Windows.Forms.CheckBox();            this.button1 = new System.Windows.Forms.Button();            this.txtThisReceiverID = new System.Windows.Forms.TextBox();            this.panelBoard9 = new System.Windows.Forms.Panel();            this.label11 = new System.Windows.Forms.Label();            this.checkLoop1Board9 = new System.Windows.Forms.CheckBox();            this.checkLoop0Board9 = new System.Windows.Forms.CheckBox();            this.panelBoard10 = new System.Windows.Forms.Panel();            this.label12 = new System.Windows.Forms.Label();            this.checkLoop0Board10 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board10 = new System.Windows.Forms.CheckBox();            this.panelBoard11 = new System.Windows.Forms.Panel();            this.label13 = new System.Windows.Forms.Label();            this.checkLoop1Board11 = new System.Windows.Forms.CheckBox();            this.checkLoop0Board11 = new System.Windows.Forms.CheckBox();            this.panelBoard12 = new System.Windows.Forms.Panel();            this.label14 = new System.Windows.Forms.Label();            this.checkLoop0Board12 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board12 = new System.Windows.Forms.CheckBox();            this.panelBoard13 = new System.Windows.Forms.Panel();            this.label15 = new System.Windows.Forms.Label();            this.checkLoop1Board13 = new System.Windows.Forms.CheckBox();            this.checkLoop0Board13 = new System.Windows.Forms.CheckBox();            this.panelBoard14 = new System.Windows.Forms.Panel();            this.label16 = new System.Windows.Forms.Label();            this.checkLoop0Board14 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board14 = new System.Windows.Forms.CheckBox();            this.panelBoard15 = new System.Windows.Forms.Panel();            this.label17 = new System.Windows.Forms.Label();            this.checkLoop1Board15 = new System.Windows.Forms.CheckBox();            this.checkLoop0Board15 = new System.Windows.Forms.CheckBox();            this.panelBoard16 = new System.Windows.Forms.Panel();            this.label19 = new System.Windows.Forms.Label();            this.checkLoop0Board16 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board16 = new System.Windows.Forms.CheckBox();            this.panelBoard8 = new System.Windows.Forms.Panel();            this.label10 = new System.Windows.Forms.Label();            this.checkLoop0Board8 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board8 = new System.Windows.Forms.CheckBox();            this.panelBoard7 = new System.Windows.Forms.Panel();            this.label9 = new System.Windows.Forms.Label();            this.checkLoop1Board7 = new System.Windows.Forms.CheckBox();            this.checkLoop0Board7 = new System.Windows.Forms.CheckBox();            this.panelBoard6 = new System.Windows.Forms.Panel();            this.label8 = new System.Windows.Forms.Label();            this.checkLoop0Board6 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board6 = new System.Windows.Forms.CheckBox();            this.panelBoard5 = new System.Windows.Forms.Panel();            this.label7 = new System.Windows.Forms.Label();            this.checkLoop1Board5 = new System.Windows.Forms.CheckBox();            this.checkLoop0Board5 = new System.Windows.Forms.CheckBox();            this.panelBoard4 = new System.Windows.Forms.Panel();            this.label6 = new System.Windows.Forms.Label();            this.checkLoop0Board4 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board4 = new System.Windows.Forms.CheckBox();            this.panelBoard3 = new System.Windows.Forms.Panel();            this.label5 = new System.Windows.Forms.Label();            this.checkLoop1Board3 = new System.Windows.Forms.CheckBox();            this.checkLoop0Board3 = new System.Windows.Forms.CheckBox();            this.panelBoard2 = new System.Windows.Forms.Panel();            this.label2 = new System.Windows.Forms.Label();            this.checkLoop0Board2 = new System.Windows.Forms.CheckBox();            this.checkLoop1Board2 = new System.Windows.Forms.CheckBox();            this.btnBoardSave = new System.Windows.Forms.Button();            this.tabPage_Repeater = new System.Windows.Forms.TabPage();            this.label_UI_CircuitCut = new System.Windows.Forms.Label();            this.label_UI_CircuitCut_Color = new System.Windows.Forms.Label();            this.label_UI_RepeaterCut = new System.Windows.Forms.Label();            this.label_UI_RepeaterCut_Color = new System.Windows.Forms.Label();            this.label_UI_Unuse = new System.Windows.Forms.Label();            this.label_UI_Unuse_Color = new System.Windows.Forms.Label();            this.label_UI_Use = new System.Windows.Forms.Label();            this.label_UI_Comment = new System.Windows.Forms.Label();            this.label_UI_Use_Color = new System.Windows.Forms.Label();            this.label_Comment = new System.Windows.Forms.Label();            this.label20 = new System.Windows.Forms.Label();            this.btnOK = new System.Windows.Forms.Button();            this.btnRepeaterAllInfo = new System.Windows.Forms.Button();            this.btnInputOpen = new System.Windows.Forms.Button();            this.label18 = new System.Windows.Forms.Label();            this.txtLoopNo = new System.Windows.Forms.TextBox();            this.txtBoardID = new System.Windows.Forms.TextBox();            this.txtThisReceiverID2 = new System.Windows.Forms.TextBox();            this.groupRepeater = new System.Windows.Forms.GroupBox();            this.label21 = new System.Windows.Forms.Label();            this.btnOutWrite = new System.Windows.Forms.Button();            this.btnInWrite = new System.Windows.Forms.Button();            this.panelRepeaterSize = new System.Windows.Forms.Panel();            this.dataGridView1 = new System.Windows.Forms.DataGridView();            this.Column1 = new System.Windows.Forms.DataGridViewComboBoxColumn();            this.Column2 = new System.Windows.Forms.DataGridViewComboBoxColumn();            this.Column3 = new System.Windows.Forms.DataGridViewComboBoxColumn();            this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.dataGridView2 = new System.Windows.Forms.DataGridView();            this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.label4 = new System.Windows.Forms.Label();            this.label22 = new System.Windows.Forms.Label();            this.chkDeviceCutFlag = new System.Windows.Forms.CheckBox();            this.txtDeviceMemo = new System.Windows.Forms.TextBox();            this.txtPositionName = new System.Windows.Forms.TextBox();            this.txtDeviceTypeName = new System.Windows.Forms.TextBox();            this.label70 = new System.Windows.Forms.Label();            this.panel2 = new System.Windows.Forms.Panel();            this.chkRepeaterCut = new System.Windows.Forms.CheckBox();            this.lblRepeaterName = new System.Windows.Forms.Label();            this.lblRepeaterID = new System.Windows.Forms.Label();            this.label74 = new System.Windows.Forms.Label();            this.label73 = new System.Windows.Forms.Label();            this.ImgLstBoardUseFlag = new System.Windows.Forms.ImageList(this.components);            this.panel_Menu = new System.Windows.Forms.Panel();            this.button_Menu_RepeaterCut = new System.Windows.Forms.Button();            this.button_LoopCut = new System.Windows.Forms.Button();            this.imageList_BoardUseFlag = new System.Windows.Forms.ImageList(this.components);            this.panel1.SuspendLayout();            this.tabControl_Main.SuspendLayout();            this.tabPage_Board.SuspendLayout();            this.panelBoard1.SuspendLayout();            this.panelBoard9.SuspendLayout();            this.panelBoard10.SuspendLayout();            this.panelBoard11.SuspendLayout();            this.panelBoard12.SuspendLayout();            this.panelBoard13.SuspendLayout();            this.panelBoard14.SuspendLayout();            this.panelBoard15.SuspendLayout();            this.panelBoard16.SuspendLayout();            this.panelBoard8.SuspendLayout();            this.panelBoard7.SuspendLayout();            this.panelBoard6.SuspendLayout();            this.panelBoard5.SuspendLayout();            this.panelBoard4.SuspendLayout();            this.panelBoard3.SuspendLayout();            this.panelBoard2.SuspendLayout();            this.tabPage_Repeater.SuspendLayout();            this.groupRepeater.SuspendLayout();            this.panelRepeaterSize.SuspendLayout();            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();            ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();            this.panel2.SuspendLayout();            this.panel_Menu.SuspendLayout();            this.SuspendLayout();            //             // lblDir            //             this.lblDir.AutoSize = true;            this.lblDir.BackColor = System.Drawing.Color.Transparent;            this.lblDir.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold);            this.lblDir.ForeColor = System.Drawing.Color.Black;            this.lblDir.Location = new System.Drawing.Point(12, 9);            this.lblDir.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.lblDir.Name = "lblDir";            this.lblDir.Size = new System.Drawing.Size(129, 21);            this.lblDir.TabIndex = 10;            this.lblDir.Text = "시작 > 차단";            //             // panel1            //             this.panel1.BackColor = System.Drawing.Color.Black;            this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));            this.panel1.Controls.Add(this.btnWinClose);            this.panel1.Controls.Add(this.lblDir);            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;            this.panel1.Location = new System.Drawing.Point(0, 0);            this.panel1.Margin = new System.Windows.Forms.Padding(4);            this.panel1.Name = "panel1";            this.panel1.Size = new System.Drawing.Size(1080, 36);            this.panel1.TabIndex = 11;            //             // btnWinClose            //             this.btnWinClose.BackgroundImage = global::FPER.Properties.Resources.버튼_폼닫기_63_31;            this.btnWinClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.btnWinClose.FlatAppearance.BorderSize = 0;            this.btnWinClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.btnWinClose.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.btnWinClose.Location = new System.Drawing.Point(1003, 1);            this.btnWinClose.Name = "btnWinClose";            this.btnWinClose.Size = new System.Drawing.Size(63, 31);            this.btnWinClose.TabIndex = 171;            this.btnWinClose.UseVisualStyleBackColor = false;            this.btnWinClose.Click += new System.EventHandler(this.btnWinClose_Click);            //             // tabControl_Main            //             this.tabControl_Main.Controls.Add(this.tabPage_Board);            this.tabControl_Main.Controls.Add(this.tabPage_Repeater);            this.tabControl_Main.Dock = System.Windows.Forms.DockStyle.Bottom;            this.tabControl_Main.Location = new System.Drawing.Point(0, 66);            this.tabControl_Main.Name = "tabControl_Main";            this.tabControl_Main.SelectedIndex = 0;            this.tabControl_Main.Size = new System.Drawing.Size(1080, 758);            this.tabControl_Main.TabIndex = 22;            this.tabControl_Main.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);            //             // tabPage_Board            //             this.tabPage_Board.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));            this.tabPage_Board.Controls.Add(this.label_InfoApplyComment);            this.tabPage_Board.Controls.Add(this.panelBoard1);            this.tabPage_Board.Controls.Add(this.button1);            this.tabPage_Board.Controls.Add(this.txtThisReceiverID);            this.tabPage_Board.Controls.Add(this.panelBoard9);            this.tabPage_Board.Controls.Add(this.panelBoard10);            this.tabPage_Board.Controls.Add(this.panelBoard11);            this.tabPage_Board.Controls.Add(this.panelBoard12);            this.tabPage_Board.Controls.Add(this.panelBoard13);            this.tabPage_Board.Controls.Add(this.panelBoard14);            this.tabPage_Board.Controls.Add(this.panelBoard15);            this.tabPage_Board.Controls.Add(this.panelBoard16);            this.tabPage_Board.Controls.Add(this.panelBoard8);            this.tabPage_Board.Controls.Add(this.panelBoard7);            this.tabPage_Board.Controls.Add(this.panelBoard6);            this.tabPage_Board.Controls.Add(this.panelBoard5);            this.tabPage_Board.Controls.Add(this.panelBoard4);            this.tabPage_Board.Controls.Add(this.panelBoard3);            this.tabPage_Board.Controls.Add(this.panelBoard2);            this.tabPage_Board.Controls.Add(this.btnBoardSave);            this.tabPage_Board.Location = new System.Drawing.Point(4, 26);            this.tabPage_Board.Margin = new System.Windows.Forms.Padding(0);            this.tabPage_Board.Name = "tabPage_Board";            this.tabPage_Board.Size = new System.Drawing.Size(1072, 728);            this.tabPage_Board.TabIndex = 0;            this.tabPage_Board.Text = "계통차단";            //             // label_InfoApplyComment            //             this.label_InfoApplyComment.AutoSize = true;            this.label_InfoApplyComment.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.label_InfoApplyComment.ForeColor = System.Drawing.Color.Red;            this.label_InfoApplyComment.Location = new System.Drawing.Point(579, 27);            this.label_InfoApplyComment.Name = "label_InfoApplyComment";            this.label_InfoApplyComment.Size = new System.Drawing.Size(281, 16);            this.label_InfoApplyComment.TabIndex = 153;            this.label_InfoApplyComment.Text = "적용하기를 누르면 복구 진행합니다";            this.label_InfoApplyComment.Visible = false;            //             // panelBoard1            //             this.panelBoard1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard1.BackgroundImage")));            this.panelBoard1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard1.Controls.Add(this.label1);            this.panelBoard1.Controls.Add(this.checkLoop0Board1);            this.panelBoard1.Controls.Add(this.checkLoop1Board1);            this.panelBoard1.Location = new System.Drawing.Point(187, 66);            this.panelBoard1.Name = "panelBoard1";            this.panelBoard1.Size = new System.Drawing.Size(103, 177);            this.panelBoard1.TabIndex = 135;            //             // label1            //             this.label1.AutoSize = true;            this.label1.BackColor = System.Drawing.Color.Transparent;            this.label1.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label1.Location = new System.Drawing.Point(39, 17);            this.label1.Name = "label1";            this.label1.Size = new System.Drawing.Size(22, 21);            this.label1.TabIndex = 217;            this.label1.Text = "1";            //             // checkLoop0Board1            //             this.checkLoop0Board1.AutoSize = true;            this.checkLoop0Board1.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board1.Checked = true;            this.checkLoop0Board1.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board1.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.checkLoop0Board1.FlatAppearance.BorderSize = 0;            this.checkLoop0Board1.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.checkLoop0Board1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.checkLoop0Board1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.checkLoop0Board1.Font = new System.Drawing.Font("굴림", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board1.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board1.Name = "checkLoop0Board1";            this.checkLoop0Board1.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board1.TabIndex = 33;            this.checkLoop0Board1.UseVisualStyleBackColor = false;            //             // checkLoop1Board1            //             this.checkLoop1Board1.AutoSize = true;            this.checkLoop1Board1.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board1.Checked = true;            this.checkLoop1Board1.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board1.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board1.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board1.Name = "checkLoop1Board1";            this.checkLoop1Board1.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board1.TabIndex = 34;            this.checkLoop1Board1.UseVisualStyleBackColor = false;            //             // button1            //             this.button1.BackColor = System.Drawing.Color.LightGray;            this.button1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage")));            this.button1.FlatAppearance.BorderSize = 0;            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.button1.Location = new System.Drawing.Point(22, 15);            this.button1.Name = "button1";            this.button1.Size = new System.Drawing.Size(117, 37);            this.button1.TabIndex = 152;            this.button1.UseVisualStyleBackColor = false;            //             // txtThisReceiverID            //             this.txtThisReceiverID.BackColor = System.Drawing.Color.Black;            this.txtThisReceiverID.Font = new System.Drawing.Font("굴림", 20F, System.Drawing.FontStyle.Bold);            this.txtThisReceiverID.ForeColor = System.Drawing.Color.White;            this.txtThisReceiverID.Location = new System.Drawing.Point(140, 15);            this.txtThisReceiverID.MaxLength = 2;            this.txtThisReceiverID.Name = "txtThisReceiverID";            this.txtThisReceiverID.ReadOnly = true;            this.txtThisReceiverID.Size = new System.Drawing.Size(39, 38);            this.txtThisReceiverID.TabIndex = 151;            this.txtThisReceiverID.Text = "01";            this.txtThisReceiverID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;            //             // panelBoard9            //             this.panelBoard9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard9.BackgroundImage")));            this.panelBoard9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard9.Controls.Add(this.label11);            this.panelBoard9.Controls.Add(this.checkLoop1Board9);            this.panelBoard9.Controls.Add(this.checkLoop0Board9);            this.panelBoard9.Location = new System.Drawing.Point(640, 292);            this.panelBoard9.Name = "panelBoard9";            this.panelBoard9.Size = new System.Drawing.Size(103, 177);            this.panelBoard9.TabIndex = 150;            //             // label11            //             this.label11.AutoSize = true;            this.label11.BackColor = System.Drawing.Color.Transparent;            this.label11.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label11.Location = new System.Drawing.Point(39, 17);            this.label11.Name = "label11";            this.label11.Size = new System.Drawing.Size(22, 21);            this.label11.TabIndex = 218;            this.label11.Text = "9";            //             // checkLoop1Board9            //             this.checkLoop1Board9.AutoSize = true;            this.checkLoop1Board9.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board9.Checked = true;            this.checkLoop1Board9.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board9.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board9.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board9.Name = "checkLoop1Board9";            this.checkLoop1Board9.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board9.TabIndex = 34;            this.checkLoop1Board9.UseVisualStyleBackColor = false;            //             // checkLoop0Board9            //             this.checkLoop0Board9.AutoSize = true;            this.checkLoop0Board9.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board9.Checked = true;            this.checkLoop0Board9.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board9.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board9.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board9.Name = "checkLoop0Board9";            this.checkLoop0Board9.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board9.TabIndex = 33;            this.checkLoop0Board9.UseVisualStyleBackColor = false;            //             // panelBoard10            //             this.panelBoard10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard10.BackgroundImage")));            this.panelBoard10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard10.Controls.Add(this.label12);            this.panelBoard10.Controls.Add(this.checkLoop0Board10);            this.panelBoard10.Controls.Add(this.checkLoop1Board10);            this.panelBoard10.Location = new System.Drawing.Point(791, 292);            this.panelBoard10.Name = "panelBoard10";            this.panelBoard10.Size = new System.Drawing.Size(103, 177);            this.panelBoard10.TabIndex = 149;            //             // label12            //             this.label12.AutoSize = true;            this.label12.BackColor = System.Drawing.Color.Transparent;            this.label12.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label12.Location = new System.Drawing.Point(35, 17);            this.label12.Name = "label12";            this.label12.Size = new System.Drawing.Size(34, 21);            this.label12.TabIndex = 218;            this.label12.Text = "10";            //             // checkLoop0Board10            //             this.checkLoop0Board10.AutoSize = true;            this.checkLoop0Board10.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board10.Checked = true;            this.checkLoop0Board10.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board10.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board10.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board10.Name = "checkLoop0Board10";            this.checkLoop0Board10.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board10.TabIndex = 33;            this.checkLoop0Board10.UseVisualStyleBackColor = false;            //             // checkLoop1Board10            //             this.checkLoop1Board10.AutoSize = true;            this.checkLoop1Board10.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board10.Checked = true;            this.checkLoop1Board10.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board10.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board10.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board10.Name = "checkLoop1Board10";            this.checkLoop1Board10.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board10.TabIndex = 34;            this.checkLoop1Board10.UseVisualStyleBackColor = false;            //             // panelBoard11            //             this.panelBoard11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard11.BackgroundImage")));            this.panelBoard11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard11.Controls.Add(this.label13);            this.panelBoard11.Controls.Add(this.checkLoop1Board11);            this.panelBoard11.Controls.Add(this.checkLoop0Board11);            this.panelBoard11.Location = new System.Drawing.Point(187, 519);            this.panelBoard11.Name = "panelBoard11";            this.panelBoard11.Size = new System.Drawing.Size(103, 177);            this.panelBoard11.TabIndex = 148;            //             // label13            //             this.label13.AutoSize = true;            this.label13.BackColor = System.Drawing.Color.Transparent;            this.label13.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label13.Location = new System.Drawing.Point(35, 17);            this.label13.Name = "label13";            this.label13.Size = new System.Drawing.Size(34, 21);            this.label13.TabIndex = 218;            this.label13.Text = "11";            //             // checkLoop1Board11            //             this.checkLoop1Board11.AutoSize = true;            this.checkLoop1Board11.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board11.Checked = true;            this.checkLoop1Board11.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board11.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board11.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board11.Name = "checkLoop1Board11";            this.checkLoop1Board11.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board11.TabIndex = 34;            this.checkLoop1Board11.UseVisualStyleBackColor = false;            //             // checkLoop0Board11            //             this.checkLoop0Board11.AutoSize = true;            this.checkLoop0Board11.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board11.Checked = true;            this.checkLoop0Board11.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board11.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board11.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board11.Name = "checkLoop0Board11";            this.checkLoop0Board11.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board11.TabIndex = 33;            this.checkLoop0Board11.UseVisualStyleBackColor = false;            //             // panelBoard12            //             this.panelBoard12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard12.BackgroundImage")));            this.panelBoard12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard12.Controls.Add(this.label14);            this.panelBoard12.Controls.Add(this.checkLoop0Board12);            this.panelBoard12.Controls.Add(this.checkLoop1Board12);            this.panelBoard12.Location = new System.Drawing.Point(338, 519);            this.panelBoard12.Name = "panelBoard12";            this.panelBoard12.Size = new System.Drawing.Size(103, 177);            this.panelBoard12.TabIndex = 147;            //             // label14            //             this.label14.AutoSize = true;            this.label14.BackColor = System.Drawing.Color.Transparent;            this.label14.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label14.Location = new System.Drawing.Point(35, 17);            this.label14.Name = "label14";            this.label14.Size = new System.Drawing.Size(34, 21);            this.label14.TabIndex = 219;            this.label14.Text = "12";            //             // checkLoop0Board12            //             this.checkLoop0Board12.AutoSize = true;            this.checkLoop0Board12.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board12.Checked = true;            this.checkLoop0Board12.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board12.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board12.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board12.Name = "checkLoop0Board12";            this.checkLoop0Board12.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board12.TabIndex = 33;            this.checkLoop0Board12.UseVisualStyleBackColor = false;            //             // checkLoop1Board12            //             this.checkLoop1Board12.AutoSize = true;            this.checkLoop1Board12.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board12.Checked = true;            this.checkLoop1Board12.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board12.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board12.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board12.Name = "checkLoop1Board12";            this.checkLoop1Board12.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board12.TabIndex = 34;            this.checkLoop1Board12.UseVisualStyleBackColor = false;            //             // panelBoard13            //             this.panelBoard13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard13.BackgroundImage")));            this.panelBoard13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard13.Controls.Add(this.label15);            this.panelBoard13.Controls.Add(this.checkLoop1Board13);            this.panelBoard13.Controls.Add(this.checkLoop0Board13);            this.panelBoard13.Location = new System.Drawing.Point(489, 519);            this.panelBoard13.Name = "panelBoard13";            this.panelBoard13.Size = new System.Drawing.Size(103, 177);            this.panelBoard13.TabIndex = 146;            //             // label15            //             this.label15.AutoSize = true;            this.label15.BackColor = System.Drawing.Color.Transparent;            this.label15.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label15.Location = new System.Drawing.Point(35, 17);            this.label15.Name = "label15";            this.label15.Size = new System.Drawing.Size(34, 21);            this.label15.TabIndex = 218;            this.label15.Text = "13";            //             // checkLoop1Board13            //             this.checkLoop1Board13.AutoSize = true;            this.checkLoop1Board13.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board13.Checked = true;            this.checkLoop1Board13.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board13.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board13.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board13.Name = "checkLoop1Board13";            this.checkLoop1Board13.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board13.TabIndex = 34;            this.checkLoop1Board13.UseVisualStyleBackColor = false;            //             // checkLoop0Board13            //             this.checkLoop0Board13.AutoSize = true;            this.checkLoop0Board13.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board13.Checked = true;            this.checkLoop0Board13.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board13.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board13.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board13.Name = "checkLoop0Board13";            this.checkLoop0Board13.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board13.TabIndex = 33;            this.checkLoop0Board13.UseVisualStyleBackColor = false;            //             // panelBoard14            //             this.panelBoard14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard14.BackgroundImage")));            this.panelBoard14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard14.Controls.Add(this.label16);            this.panelBoard14.Controls.Add(this.checkLoop0Board14);            this.panelBoard14.Controls.Add(this.checkLoop1Board14);            this.panelBoard14.Location = new System.Drawing.Point(640, 519);            this.panelBoard14.Name = "panelBoard14";            this.panelBoard14.Size = new System.Drawing.Size(103, 177);            this.panelBoard14.TabIndex = 145;            //             // label16            //             this.label16.AutoSize = true;            this.label16.BackColor = System.Drawing.Color.Transparent;            this.label16.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label16.Location = new System.Drawing.Point(35, 17);            this.label16.Name = "label16";            this.label16.Size = new System.Drawing.Size(34, 21);            this.label16.TabIndex = 218;            this.label16.Text = "14";            //             // checkLoop0Board14            //             this.checkLoop0Board14.AutoSize = true;            this.checkLoop0Board14.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board14.Checked = true;            this.checkLoop0Board14.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board14.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board14.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board14.Name = "checkLoop0Board14";            this.checkLoop0Board14.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board14.TabIndex = 33;            this.checkLoop0Board14.UseVisualStyleBackColor = false;            //             // checkLoop1Board14            //             this.checkLoop1Board14.AutoSize = true;            this.checkLoop1Board14.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board14.Checked = true;            this.checkLoop1Board14.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board14.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board14.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board14.Name = "checkLoop1Board14";            this.checkLoop1Board14.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board14.TabIndex = 34;            this.checkLoop1Board14.UseVisualStyleBackColor = false;            //             // panelBoard15            //             this.panelBoard15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard15.BackgroundImage")));            this.panelBoard15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard15.Controls.Add(this.label17);            this.panelBoard15.Controls.Add(this.checkLoop1Board15);            this.panelBoard15.Controls.Add(this.checkLoop0Board15);            this.panelBoard15.Location = new System.Drawing.Point(791, 519);            this.panelBoard15.Name = "panelBoard15";            this.panelBoard15.Size = new System.Drawing.Size(103, 177);            this.panelBoard15.TabIndex = 144;            //             // label17            //             this.label17.AutoSize = true;            this.label17.BackColor = System.Drawing.Color.Transparent;            this.label17.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label17.Location = new System.Drawing.Point(35, 17);            this.label17.Name = "label17";            this.label17.Size = new System.Drawing.Size(34, 21);            this.label17.TabIndex = 218;            this.label17.Text = "15";            //             // checkLoop1Board15            //             this.checkLoop1Board15.AutoSize = true;            this.checkLoop1Board15.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board15.Checked = true;            this.checkLoop1Board15.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board15.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board15.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board15.Name = "checkLoop1Board15";            this.checkLoop1Board15.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board15.TabIndex = 34;            this.checkLoop1Board15.UseVisualStyleBackColor = false;            //             // checkLoop0Board15            //             this.checkLoop0Board15.AutoSize = true;            this.checkLoop0Board15.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board15.Checked = true;            this.checkLoop0Board15.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board15.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board15.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board15.Name = "checkLoop0Board15";            this.checkLoop0Board15.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board15.TabIndex = 33;            this.checkLoop0Board15.UseVisualStyleBackColor = false;            //             // panelBoard16            //             this.panelBoard16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard16.BackgroundImage")));            this.panelBoard16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard16.Controls.Add(this.label19);            this.panelBoard16.Controls.Add(this.checkLoop0Board16);            this.panelBoard16.Controls.Add(this.checkLoop1Board16);            this.panelBoard16.Location = new System.Drawing.Point(989, 152);            this.panelBoard16.Name = "panelBoard16";            this.panelBoard16.Size = new System.Drawing.Size(72, 214);            this.panelBoard16.TabIndex = 143;            this.panelBoard16.Visible = false;            //             // label19            //             this.label19.AutoSize = true;            this.label19.BackColor = System.Drawing.Color.White;            this.label19.Location = new System.Drawing.Point(23, 45);            this.label19.Name = "label19";            this.label19.Size = new System.Drawing.Size(24, 16);            this.label19.TabIndex = 218;            this.label19.Text = "16";            //             // checkLoop0Board16            //             this.checkLoop0Board16.AutoSize = true;            this.checkLoop0Board16.BackColor = System.Drawing.Color.LemonChiffon;            this.checkLoop0Board16.Checked = true;            this.checkLoop0Board16.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board16.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board16.Location = new System.Drawing.Point(29, 133);            this.checkLoop0Board16.Name = "checkLoop0Board16";            this.checkLoop0Board16.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board16.TabIndex = 33;            this.checkLoop0Board16.UseVisualStyleBackColor = false;            //             // checkLoop1Board16            //             this.checkLoop1Board16.AutoSize = true;            this.checkLoop1Board16.BackColor = System.Drawing.Color.LightCyan;            this.checkLoop1Board16.Checked = true;            this.checkLoop1Board16.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board16.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board16.Location = new System.Drawing.Point(29, 183);            this.checkLoop1Board16.Name = "checkLoop1Board16";            this.checkLoop1Board16.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board16.TabIndex = 34;            this.checkLoop1Board16.UseVisualStyleBackColor = false;            //             // panelBoard8            //             this.panelBoard8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard8.BackgroundImage")));            this.panelBoard8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard8.Controls.Add(this.label10);            this.panelBoard8.Controls.Add(this.checkLoop0Board8);            this.panelBoard8.Controls.Add(this.checkLoop1Board8);            this.panelBoard8.Location = new System.Drawing.Point(489, 292);            this.panelBoard8.Name = "panelBoard8";            this.panelBoard8.Size = new System.Drawing.Size(103, 177);            this.panelBoard8.TabIndex = 142;            //             // label10            //             this.label10.AutoSize = true;            this.label10.BackColor = System.Drawing.Color.Transparent;            this.label10.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label10.Location = new System.Drawing.Point(39, 17);            this.label10.Name = "label10";            this.label10.Size = new System.Drawing.Size(22, 21);            this.label10.TabIndex = 218;            this.label10.Text = "8";            //             // checkLoop0Board8            //             this.checkLoop0Board8.AutoSize = true;            this.checkLoop0Board8.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board8.Checked = true;            this.checkLoop0Board8.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board8.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board8.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board8.Name = "checkLoop0Board8";            this.checkLoop0Board8.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board8.TabIndex = 33;            this.checkLoop0Board8.UseVisualStyleBackColor = false;            //             // checkLoop1Board8            //             this.checkLoop1Board8.AutoSize = true;            this.checkLoop1Board8.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board8.Checked = true;            this.checkLoop1Board8.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board8.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board8.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board8.Name = "checkLoop1Board8";            this.checkLoop1Board8.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board8.TabIndex = 34;            this.checkLoop1Board8.UseVisualStyleBackColor = false;            //             // panelBoard7            //             this.panelBoard7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard7.BackgroundImage")));            this.panelBoard7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard7.Controls.Add(this.label9);            this.panelBoard7.Controls.Add(this.checkLoop1Board7);            this.panelBoard7.Controls.Add(this.checkLoop0Board7);            this.panelBoard7.Location = new System.Drawing.Point(338, 292);            this.panelBoard7.Name = "panelBoard7";            this.panelBoard7.Size = new System.Drawing.Size(103, 177);            this.panelBoard7.TabIndex = 141;            //             // label9            //             this.label9.AutoSize = true;            this.label9.BackColor = System.Drawing.Color.Transparent;            this.label9.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label9.Location = new System.Drawing.Point(39, 17);            this.label9.Name = "label9";            this.label9.Size = new System.Drawing.Size(22, 21);            this.label9.TabIndex = 218;            this.label9.Text = "7";            //             // checkLoop1Board7            //             this.checkLoop1Board7.AutoSize = true;            this.checkLoop1Board7.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board7.Checked = true;            this.checkLoop1Board7.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board7.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board7.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board7.Name = "checkLoop1Board7";            this.checkLoop1Board7.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board7.TabIndex = 34;            this.checkLoop1Board7.UseVisualStyleBackColor = false;            //             // checkLoop0Board7            //             this.checkLoop0Board7.AutoSize = true;            this.checkLoop0Board7.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board7.Checked = true;            this.checkLoop0Board7.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board7.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board7.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board7.Name = "checkLoop0Board7";            this.checkLoop0Board7.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board7.TabIndex = 33;            this.checkLoop0Board7.UseVisualStyleBackColor = false;            //             // panelBoard6            //             this.panelBoard6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard6.BackgroundImage")));            this.panelBoard6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard6.Controls.Add(this.label8);            this.panelBoard6.Controls.Add(this.checkLoop0Board6);            this.panelBoard6.Controls.Add(this.checkLoop1Board6);            this.panelBoard6.Location = new System.Drawing.Point(187, 292);            this.panelBoard6.Name = "panelBoard6";            this.panelBoard6.Size = new System.Drawing.Size(103, 177);            this.panelBoard6.TabIndex = 140;            //             // label8            //             this.label8.AutoSize = true;            this.label8.BackColor = System.Drawing.Color.Transparent;            this.label8.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label8.Location = new System.Drawing.Point(39, 17);            this.label8.Name = "label8";            this.label8.Size = new System.Drawing.Size(22, 21);            this.label8.TabIndex = 218;            this.label8.Text = "6";            //             // checkLoop0Board6            //             this.checkLoop0Board6.AutoSize = true;            this.checkLoop0Board6.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board6.Checked = true;            this.checkLoop0Board6.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board6.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board6.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board6.Name = "checkLoop0Board6";            this.checkLoop0Board6.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board6.TabIndex = 33;            this.checkLoop0Board6.UseVisualStyleBackColor = false;            //             // checkLoop1Board6            //             this.checkLoop1Board6.AutoSize = true;            this.checkLoop1Board6.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board6.Checked = true;            this.checkLoop1Board6.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board6.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board6.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board6.Name = "checkLoop1Board6";            this.checkLoop1Board6.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board6.TabIndex = 34;            this.checkLoop1Board6.UseVisualStyleBackColor = false;            //             // panelBoard5            //             this.panelBoard5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard5.BackgroundImage")));            this.panelBoard5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard5.Controls.Add(this.label7);            this.panelBoard5.Controls.Add(this.checkLoop1Board5);            this.panelBoard5.Controls.Add(this.checkLoop0Board5);            this.panelBoard5.Location = new System.Drawing.Point(791, 66);            this.panelBoard5.Name = "panelBoard5";            this.panelBoard5.Size = new System.Drawing.Size(103, 177);            this.panelBoard5.TabIndex = 139;            //             // label7            //             this.label7.AutoSize = true;            this.label7.BackColor = System.Drawing.Color.Transparent;            this.label7.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label7.Location = new System.Drawing.Point(39, 17);            this.label7.Name = "label7";            this.label7.Size = new System.Drawing.Size(22, 21);            this.label7.TabIndex = 218;            this.label7.Text = "5";            //             // checkLoop1Board5            //             this.checkLoop1Board5.AutoSize = true;            this.checkLoop1Board5.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board5.Checked = true;            this.checkLoop1Board5.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board5.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board5.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board5.Name = "checkLoop1Board5";            this.checkLoop1Board5.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board5.TabIndex = 34;            this.checkLoop1Board5.UseVisualStyleBackColor = false;            //             // checkLoop0Board5            //             this.checkLoop0Board5.AutoSize = true;            this.checkLoop0Board5.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board5.Checked = true;            this.checkLoop0Board5.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board5.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board5.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board5.Name = "checkLoop0Board5";            this.checkLoop0Board5.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board5.TabIndex = 33;            this.checkLoop0Board5.UseVisualStyleBackColor = false;            //             // panelBoard4            //             this.panelBoard4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard4.BackgroundImage")));            this.panelBoard4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard4.Controls.Add(this.label6);            this.panelBoard4.Controls.Add(this.checkLoop0Board4);            this.panelBoard4.Controls.Add(this.checkLoop1Board4);            this.panelBoard4.Location = new System.Drawing.Point(640, 66);            this.panelBoard4.Name = "panelBoard4";            this.panelBoard4.Size = new System.Drawing.Size(103, 177);            this.panelBoard4.TabIndex = 138;            //             // label6            //             this.label6.AutoSize = true;            this.label6.BackColor = System.Drawing.Color.Transparent;            this.label6.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label6.Location = new System.Drawing.Point(39, 17);            this.label6.Name = "label6";            this.label6.Size = new System.Drawing.Size(22, 21);            this.label6.TabIndex = 218;            this.label6.Text = "4";            //             // checkLoop0Board4            //             this.checkLoop0Board4.AutoSize = true;            this.checkLoop0Board4.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board4.Checked = true;            this.checkLoop0Board4.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board4.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board4.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board4.Name = "checkLoop0Board4";            this.checkLoop0Board4.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board4.TabIndex = 33;            this.checkLoop0Board4.UseVisualStyleBackColor = false;            //             // checkLoop1Board4            //             this.checkLoop1Board4.AutoSize = true;            this.checkLoop1Board4.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board4.Checked = true;            this.checkLoop1Board4.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board4.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board4.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board4.Name = "checkLoop1Board4";            this.checkLoop1Board4.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board4.TabIndex = 34;            this.checkLoop1Board4.UseVisualStyleBackColor = false;            //             // panelBoard3            //             this.panelBoard3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard3.BackgroundImage")));            this.panelBoard3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard3.Controls.Add(this.label5);            this.panelBoard3.Controls.Add(this.checkLoop1Board3);            this.panelBoard3.Controls.Add(this.checkLoop0Board3);            this.panelBoard3.Location = new System.Drawing.Point(489, 66);            this.panelBoard3.Name = "panelBoard3";            this.panelBoard3.Size = new System.Drawing.Size(103, 177);            this.panelBoard3.TabIndex = 137;            //             // label5            //             this.label5.AutoSize = true;            this.label5.BackColor = System.Drawing.Color.Transparent;            this.label5.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label5.Location = new System.Drawing.Point(39, 17);            this.label5.Name = "label5";            this.label5.Size = new System.Drawing.Size(22, 21);            this.label5.TabIndex = 219;            this.label5.Text = "3";            //             // checkLoop1Board3            //             this.checkLoop1Board3.AutoSize = true;            this.checkLoop1Board3.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board3.Checked = true;            this.checkLoop1Board3.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board3.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board3.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board3.Name = "checkLoop1Board3";            this.checkLoop1Board3.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board3.TabIndex = 34;            this.checkLoop1Board3.UseVisualStyleBackColor = false;            //             // checkLoop0Board3            //             this.checkLoop0Board3.AutoSize = true;            this.checkLoop0Board3.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board3.Checked = true;            this.checkLoop0Board3.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board3.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board3.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board3.Name = "checkLoop0Board3";            this.checkLoop0Board3.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board3.TabIndex = 33;            this.checkLoop0Board3.UseVisualStyleBackColor = false;            //             // panelBoard2            //             this.panelBoard2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard2.BackgroundImage")));            this.panelBoard2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;            this.panelBoard2.Controls.Add(this.label2);            this.panelBoard2.Controls.Add(this.checkLoop0Board2);            this.panelBoard2.Controls.Add(this.checkLoop1Board2);            this.panelBoard2.Location = new System.Drawing.Point(338, 66);            this.panelBoard2.Name = "panelBoard2";            this.panelBoard2.Size = new System.Drawing.Size(103, 177);            this.panelBoard2.TabIndex = 136;            //             // label2            //             this.label2.AutoSize = true;            this.label2.BackColor = System.Drawing.Color.Transparent;            this.label2.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);            this.label2.Location = new System.Drawing.Point(39, 17);            this.label2.Name = "label2";            this.label2.Size = new System.Drawing.Size(22, 21);            this.label2.TabIndex = 218;            this.label2.Text = "2";            //             // checkLoop0Board2            //             this.checkLoop0Board2.AutoSize = true;            this.checkLoop0Board2.BackColor = System.Drawing.Color.Transparent;            this.checkLoop0Board2.Checked = true;            this.checkLoop0Board2.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop0Board2.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop0Board2.Location = new System.Drawing.Point(16, 100);            this.checkLoop0Board2.Name = "checkLoop0Board2";            this.checkLoop0Board2.Size = new System.Drawing.Size(15, 14);            this.checkLoop0Board2.TabIndex = 33;            this.checkLoop0Board2.UseVisualStyleBackColor = false;            //             // checkLoop1Board2            //             this.checkLoop1Board2.AutoSize = true;            this.checkLoop1Board2.BackColor = System.Drawing.Color.Transparent;            this.checkLoop1Board2.Checked = true;            this.checkLoop1Board2.CheckState = System.Windows.Forms.CheckState.Checked;            this.checkLoop1Board2.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.checkLoop1Board2.Location = new System.Drawing.Point(16, 145);            this.checkLoop1Board2.Name = "checkLoop1Board2";            this.checkLoop1Board2.Size = new System.Drawing.Size(15, 14);            this.checkLoop1Board2.TabIndex = 34;            this.checkLoop1Board2.UseVisualStyleBackColor = false;            //             // btnBoardSave            //             this.btnBoardSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnBoardSave.BackgroundImage")));            this.btnBoardSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;            this.btnBoardSave.FlatAppearance.BorderSize = 0;            this.btnBoardSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.btnBoardSave.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.btnBoardSave.ForeColor = System.Drawing.Color.White;            this.btnBoardSave.Location = new System.Drawing.Point(878, 15);            this.btnBoardSave.Name = "btnBoardSave";            this.btnBoardSave.Size = new System.Drawing.Size(183, 40);            this.btnBoardSave.TabIndex = 134;            this.btnBoardSave.Text = "적용하기";            this.btnBoardSave.UseVisualStyleBackColor = true;            this.btnBoardSave.Click += new System.EventHandler(this.btnBoardSave_Click);            //             // tabPage_Repeater            //             this.tabPage_Repeater.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage_Repeater.BackgroundImage")));            this.tabPage_Repeater.Controls.Add(this.label_UI_CircuitCut);            this.tabPage_Repeater.Controls.Add(this.label_UI_CircuitCut_Color);            this.tabPage_Repeater.Controls.Add(this.label_UI_RepeaterCut);            this.tabPage_Repeater.Controls.Add(this.label_UI_RepeaterCut_Color);            this.tabPage_Repeater.Controls.Add(this.label_UI_Unuse);            this.tabPage_Repeater.Controls.Add(this.label_UI_Unuse_Color);            this.tabPage_Repeater.Controls.Add(this.label_UI_Use);            this.tabPage_Repeater.Controls.Add(this.label_UI_Comment);            this.tabPage_Repeater.Controls.Add(this.label_UI_Use_Color);            this.tabPage_Repeater.Controls.Add(this.label_Comment);            this.tabPage_Repeater.Controls.Add(this.label20);            this.tabPage_Repeater.Controls.Add(this.btnOK);            this.tabPage_Repeater.Controls.Add(this.btnRepeaterAllInfo);            this.tabPage_Repeater.Controls.Add(this.btnInputOpen);            this.tabPage_Repeater.Controls.Add(this.label18);            this.tabPage_Repeater.Controls.Add(this.txtLoopNo);            this.tabPage_Repeater.Controls.Add(this.txtBoardID);            this.tabPage_Repeater.Controls.Add(this.txtThisReceiverID2);            this.tabPage_Repeater.Controls.Add(this.groupRepeater);            this.tabPage_Repeater.Location = new System.Drawing.Point(4, 26);            this.tabPage_Repeater.Name = "tabPage_Repeater";            this.tabPage_Repeater.Padding = new System.Windows.Forms.Padding(3);            this.tabPage_Repeater.Size = new System.Drawing.Size(1072, 728);            this.tabPage_Repeater.TabIndex = 1;            this.tabPage_Repeater.Text = "중계기차단";            this.tabPage_Repeater.UseVisualStyleBackColor = true;            //             // label_UI_CircuitCut            //             this.label_UI_CircuitCut.AutoSize = true;            this.label_UI_CircuitCut.Font = new System.Drawing.Font("굴림", 9F);            this.label_UI_CircuitCut.Location = new System.Drawing.Point(981, 231);            this.label_UI_CircuitCut.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);            this.label_UI_CircuitCut.Name = "label_UI_CircuitCut";            this.label_UI_CircuitCut.Size = new System.Drawing.Size(53, 12);            this.label_UI_CircuitCut.TabIndex = 113;            this.label_UI_CircuitCut.Text = "회로차단";            //             // label_UI_CircuitCut_Color            //             this.label_UI_CircuitCut_Color.BackColor = System.Drawing.Color.Pink;            this.label_UI_CircuitCut_Color.Location = new System.Drawing.Point(961, 229);            this.label_UI_CircuitCut_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.label_UI_CircuitCut_Color.Name = "label_UI_CircuitCut_Color";            this.label_UI_CircuitCut_Color.Size = new System.Drawing.Size(15, 17);            this.label_UI_CircuitCut_Color.TabIndex = 112;            //             // label_UI_RepeaterCut            //             this.label_UI_RepeaterCut.AutoSize = true;            this.label_UI_RepeaterCut.Font = new System.Drawing.Font("굴림", 9F);            this.label_UI_RepeaterCut.Location = new System.Drawing.Point(981, 210);            this.label_UI_RepeaterCut.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);            this.label_UI_RepeaterCut.Name = "label_UI_RepeaterCut";            this.label_UI_RepeaterCut.Size = new System.Drawing.Size(65, 12);            this.label_UI_RepeaterCut.TabIndex = 111;            this.label_UI_RepeaterCut.Text = "중계기차단";            //             // label_UI_RepeaterCut_Color            //             this.label_UI_RepeaterCut_Color.BackColor = System.Drawing.Color.Silver;            this.label_UI_RepeaterCut_Color.Location = new System.Drawing.Point(961, 208);            this.label_UI_RepeaterCut_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.label_UI_RepeaterCut_Color.Name = "label_UI_RepeaterCut_Color";            this.label_UI_RepeaterCut_Color.Size = new System.Drawing.Size(15, 17);            this.label_UI_RepeaterCut_Color.TabIndex = 110;            //             // label_UI_Unuse            //             this.label_UI_Unuse.AutoSize = true;            this.label_UI_Unuse.Font = new System.Drawing.Font("굴림", 9F);            this.label_UI_Unuse.Location = new System.Drawing.Point(981, 189);            this.label_UI_Unuse.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);            this.label_UI_Unuse.Name = "label_UI_Unuse";            this.label_UI_Unuse.Size = new System.Drawing.Size(41, 12);            this.label_UI_Unuse.TabIndex = 109;            this.label_UI_Unuse.Text = "비사용";            //             // label_UI_Unuse_Color            //             this.label_UI_Unuse_Color.BackColor = System.Drawing.Color.White;            this.label_UI_Unuse_Color.Location = new System.Drawing.Point(961, 187);            this.label_UI_Unuse_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.label_UI_Unuse_Color.Name = "label_UI_Unuse_Color";            this.label_UI_Unuse_Color.Size = new System.Drawing.Size(15, 17);            this.label_UI_Unuse_Color.TabIndex = 108;            //             // label_UI_Use            //             this.label_UI_Use.AutoSize = true;            this.label_UI_Use.Font = new System.Drawing.Font("굴림", 9F);            this.label_UI_Use.Location = new System.Drawing.Point(981, 169);            this.label_UI_Use.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);            this.label_UI_Use.Name = "label_UI_Use";            this.label_UI_Use.Size = new System.Drawing.Size(29, 12);            this.label_UI_Use.TabIndex = 107;            this.label_UI_Use.Text = "사용";            //             // label_UI_Comment            //             this.label_UI_Comment.AutoSize = true;            this.label_UI_Comment.Font = new System.Drawing.Font("굴림", 9F);            this.label_UI_Comment.Location = new System.Drawing.Point(949, 146);            this.label_UI_Comment.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);            this.label_UI_Comment.Name = "label_UI_Comment";            this.label_UI_Comment.Size = new System.Drawing.Size(73, 12);            this.label_UI_Comment.TabIndex = 106;            this.label_UI_Comment.Text = "중계기범례 :";            //             // label_UI_Use_Color            //             this.label_UI_Use_Color.BackColor = System.Drawing.Color.Aqua;            this.label_UI_Use_Color.Location = new System.Drawing.Point(961, 167);            this.label_UI_Use_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.label_UI_Use_Color.Name = "label_UI_Use_Color";            this.label_UI_Use_Color.Size = new System.Drawing.Size(15, 17);            this.label_UI_Use_Color.TabIndex = 105;            //             // label_Comment            //             this.label_Comment.AutoSize = true;            this.label_Comment.ForeColor = System.Drawing.Color.LightCoral;            this.label_Comment.Location = new System.Drawing.Point(120, 35);            this.label_Comment.Name = "label_Comment";            this.label_Comment.Size = new System.Drawing.Size(40, 16);            this.label_Comment.TabIndex = 74;            this.label_Comment.Text = "상태";            this.label_Comment.Visible = false;            //             // label20            //             this.label20.AutoSize = true;            this.label20.ForeColor = System.Drawing.Color.LightCoral;            this.label20.Location = new System.Drawing.Point(26, 16);            this.label20.Name = "label20";            this.label20.Size = new System.Drawing.Size(23, 16);            this.label20.TabIndex = 73;            this.label20.Text = "   ";            this.label20.Visible = false;            //             // btnOK            //             this.btnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOK.BackgroundImage")));            this.btnOK.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;            this.btnOK.FlatAppearance.BorderSize = 0;            this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.btnOK.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);            this.btnOK.ForeColor = System.Drawing.Color.White;            this.btnOK.Location = new System.Drawing.Point(331, 63);            this.btnOK.Margin = new System.Windows.Forms.Padding(4);            this.btnOK.Name = "btnOK";            this.btnOK.Size = new System.Drawing.Size(83, 33);            this.btnOK.TabIndex = 71;            this.btnOK.TabStop = false;            this.btnOK.Text = "확인";            this.btnOK.UseVisualStyleBackColor = true;            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);            //             // btnRepeaterAllInfo            //             this.btnRepeaterAllInfo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnRepeaterAllInfo.BackgroundImage")));            this.btnRepeaterAllInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;            this.btnRepeaterAllInfo.FlatAppearance.BorderSize = 0;            this.btnRepeaterAllInfo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.btnRepeaterAllInfo.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);            this.btnRepeaterAllInfo.ForeColor = System.Drawing.Color.White;            this.btnRepeaterAllInfo.Location = new System.Drawing.Point(782, 63);            this.btnRepeaterAllInfo.Margin = new System.Windows.Forms.Padding(4);            this.btnRepeaterAllInfo.Name = "btnRepeaterAllInfo";            this.btnRepeaterAllInfo.Size = new System.Drawing.Size(159, 33);            this.btnRepeaterAllInfo.TabIndex = 72;            this.btnRepeaterAllInfo.TabStop = false;            this.btnRepeaterAllInfo.Text = "읽기명령";            this.btnRepeaterAllInfo.UseVisualStyleBackColor = true;            this.btnRepeaterAllInfo.Click += new System.EventHandler(this.btnRepeaterAllInfo_Click);            //             // btnInputOpen            //             this.btnInputOpen.BackColor = System.Drawing.Color.LightGray;            this.btnInputOpen.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnInputOpen.BackgroundImage")));            this.btnInputOpen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;            this.btnInputOpen.FlatAppearance.BorderSize = 0;            this.btnInputOpen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.btnInputOpen.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);            this.btnInputOpen.ForeColor = System.Drawing.Color.White;            this.btnInputOpen.Location = new System.Drawing.Point(119, 63);            this.btnInputOpen.Name = "btnInputOpen";            this.btnInputOpen.Size = new System.Drawing.Size(104, 33);            this.btnInputOpen.TabIndex = 70;            this.btnInputOpen.TabStop = false;            this.btnInputOpen.Text = "계통검색";            this.btnInputOpen.UseVisualStyleBackColor = false;            this.btnInputOpen.Click += new System.EventHandler(this.btnInputOpen_Click);            //             // label18            //             this.label18.AutoSize = true;            this.label18.Font = new System.Drawing.Font("돋움", 10F, System.Drawing.FontStyle.Bold);            this.label18.Location = new System.Drawing.Point(433, 75);            this.label18.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);            this.label18.Name = "label18";            this.label18.Size = new System.Drawing.Size(244, 14);            this.label18.TabIndex = 69;            this.label18.Text = "01:수신기-01:통신보드-1:LOOP";            //             // txtLoopNo            //             this.txtLoopNo.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.txtLoopNo.Location = new System.Drawing.Point(301, 63);            this.txtLoopNo.MaxLength = 1;            this.txtLoopNo.Name = "txtLoopNo";            this.txtLoopNo.Size = new System.Drawing.Size(30, 32);            this.txtLoopNo.TabIndex = 68;            this.txtLoopNo.Text = "0";            this.txtLoopNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;            //             // txtBoardID            //             this.txtBoardID.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.txtBoardID.Location = new System.Drawing.Point(262, 63);            this.txtBoardID.MaxLength = 2;            this.txtBoardID.Name = "txtBoardID";            this.txtBoardID.Size = new System.Drawing.Size(39, 32);            this.txtBoardID.TabIndex = 67;            this.txtBoardID.Text = "01";            this.txtBoardID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;            //             // txtThisReceiverID2            //             this.txtThisReceiverID2.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.txtThisReceiverID2.Location = new System.Drawing.Point(223, 63);            this.txtThisReceiverID2.MaxLength = 2;            this.txtThisReceiverID2.Name = "txtThisReceiverID2";            this.txtThisReceiverID2.ReadOnly = true;            this.txtThisReceiverID2.Size = new System.Drawing.Size(39, 32);            this.txtThisReceiverID2.TabIndex = 66;            this.txtThisReceiverID2.Text = "01";            this.txtThisReceiverID2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;            //             // groupRepeater            //             this.groupRepeater.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));            this.groupRepeater.Controls.Add(this.label21);            this.groupRepeater.Controls.Add(this.btnOutWrite);            this.groupRepeater.Controls.Add(this.btnInWrite);            this.groupRepeater.Controls.Add(this.panelRepeaterSize);            this.groupRepeater.Controls.Add(this.dataGridView2);            this.groupRepeater.Controls.Add(this.label4);            this.groupRepeater.Controls.Add(this.label22);            this.groupRepeater.Controls.Add(this.chkDeviceCutFlag);            this.groupRepeater.Controls.Add(this.txtDeviceMemo);            this.groupRepeater.Controls.Add(this.txtPositionName);            this.groupRepeater.Controls.Add(this.txtDeviceTypeName);            this.groupRepeater.Controls.Add(this.label70);            this.groupRepeater.Controls.Add(this.panel2);            this.groupRepeater.Controls.Add(this.label74);            this.groupRepeater.Controls.Add(this.label73);            this.groupRepeater.Location = new System.Drawing.Point(123, 115);            this.groupRepeater.Name = "groupRepeater";            this.groupRepeater.Size = new System.Drawing.Size(818, 478);            this.groupRepeater.TabIndex = 45;            this.groupRepeater.TabStop = false;            this.groupRepeater.Text = "중계기(1~127)";            //             // label21            //             this.label21.AutoSize = true;            this.label21.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.label21.Location = new System.Drawing.Point(88, 410);            this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.label21.Name = "label21";            this.label21.Size = new System.Drawing.Size(167, 15);            this.label21.TabIndex = 74;            this.label21.Text = "C:연감지기, D:열감지기";            //             // btnOutWrite            //             this.btnOutWrite.BackColor = System.Drawing.Color.MintCream;            this.btnOutWrite.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.btnOutWrite.Location = new System.Drawing.Point(704, 333);            this.btnOutWrite.Name = "btnOutWrite";            this.btnOutWrite.Size = new System.Drawing.Size(50, 49);            this.btnOutWrite.TabIndex = 73;            this.btnOutWrite.Text = "쓰기";            this.btnOutWrite.UseVisualStyleBackColor = false;            this.btnOutWrite.Click += new System.EventHandler(this.btnOutWrite_Click);            //             // btnInWrite            //             this.btnInWrite.BackColor = System.Drawing.Color.Gold;            this.btnInWrite.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.btnInWrite.Location = new System.Drawing.Point(768, 296);            this.btnInWrite.Name = "btnInWrite";            this.btnInWrite.Size = new System.Drawing.Size(50, 25);            this.btnInWrite.TabIndex = 72;            this.btnInWrite.Text = "쓰기";            this.btnInWrite.UseVisualStyleBackColor = false;            this.btnInWrite.Visible = false;            this.btnInWrite.Click += new System.EventHandler(this.btnInWrite_Click);            //             // panelRepeaterSize            //             this.panelRepeaterSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.panelRepeaterSize.Controls.Add(this.dataGridView1);            this.panelRepeaterSize.Location = new System.Drawing.Point(51, 31);            this.panelRepeaterSize.Name = "panelRepeaterSize";            this.panelRepeaterSize.Size = new System.Drawing.Size(703, 303);            this.panelRepeaterSize.TabIndex = 71;            //             // dataGridView1            //             this.dataGridView1.AllowUserToAddRows = false;            this.dataGridView1.AllowUserToDeleteRows = false;            this.dataGridView1.AllowUserToResizeColumns = false;            this.dataGridView1.AllowUserToResizeRows = false;            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;            this.dataGridView1.ColumnHeadersVisible = false;            this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {            this.Column1,            this.Column2,            this.Column3,            this.Column4,            this.Column5,            this.Column6,            this.Column7,            this.Column8,            this.Column9,            this.Column10});            this.dataGridView1.Location = new System.Drawing.Point(-1, -1);            this.dataGridView1.Name = "dataGridView1";            this.dataGridView1.RowHeadersVisible = false;            this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;            this.dataGridView1.RowTemplate.Height = 23;            this.dataGridView1.ScrollBars = System.Windows.Forms.ScrollBars.None;            this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;            this.dataGridView1.Size = new System.Drawing.Size(703, 302);            this.dataGridView1.TabIndex = 1;            this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);            this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);            //             // Column1            //             dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;            dataGridViewCellStyle5.NullValue = "1";            this.Column1.DefaultCellStyle = dataGridViewCellStyle5;            this.Column1.HeaderText = "Column1";            this.Column1.Name = "Column1";            this.Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column1.Width = 70;            //             // Column2            //             dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;            dataGridViewCellStyle6.NullValue = "2";            this.Column2.DefaultCellStyle = dataGridViewCellStyle6;            this.Column2.HeaderText = "Column2";            this.Column2.Name = "Column2";            this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;            this.Column2.Width = 70;            //             // Column3            //             dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;            dataGridViewCellStyle7.NullValue = "3";            this.Column3.DefaultCellStyle = dataGridViewCellStyle7;            this.Column3.HeaderText = "Column3";            this.Column3.Name = "Column3";            this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;            this.Column3.Width = 70;            //             // Column4            //             dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;            dataGridViewCellStyle8.NullValue = "4";            this.Column4.DefaultCellStyle = dataGridViewCellStyle8;            this.Column4.HeaderText = "Column4";            this.Column4.Name = "Column4";            this.Column4.ReadOnly = true;            this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column4.Width = 70;            //             // Column5            //             this.Column5.HeaderText = "Column5";            this.Column5.Name = "Column5";            this.Column5.ReadOnly = true;            this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column5.Width = 70;            //             // Column6            //             this.Column6.HeaderText = "Column6";            this.Column6.Name = "Column6";            this.Column6.ReadOnly = true;            this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column6.Width = 70;            //             // Column7            //             this.Column7.HeaderText = "Column7";            this.Column7.Name = "Column7";            this.Column7.ReadOnly = true;            this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column7.Width = 70;            //             // Column8            //             this.Column8.HeaderText = "Column8";            this.Column8.Name = "Column8";            this.Column8.ReadOnly = true;            this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column8.Width = 70;            //             // Column9            //             this.Column9.HeaderText = "Column9";            this.Column9.Name = "Column9";            this.Column9.ReadOnly = true;            this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column9.Width = 70;            //             // Column10            //             this.Column10.HeaderText = "Column10";            this.Column10.Name = "Column10";            this.Column10.ReadOnly = true;            this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column10.Width = 70;            //             // dataGridView2            //             this.dataGridView2.AllowUserToAddRows = false;            this.dataGridView2.AllowUserToDeleteRows = false;            this.dataGridView2.AllowUserToResizeColumns = false;            this.dataGridView2.AllowUserToResizeRows = false;            this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;            this.dataGridView2.ColumnHeadersVisible = false;            this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {            this.Column11,            this.Column12,            this.Column13,            this.Column14});            this.dataGridView2.ImeMode = System.Windows.Forms.ImeMode.Alpha;            this.dataGridView2.Location = new System.Drawing.Point(340, 333);            this.dataGridView2.Name = "dataGridView2";            this.dataGridView2.RowHeadersVisible = false;            this.dataGridView2.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;            this.dataGridView2.RowTemplate.Height = 23;            this.dataGridView2.ScrollBars = System.Windows.Forms.ScrollBars.None;            this.dataGridView2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;            this.dataGridView2.Size = new System.Drawing.Size(364, 49);            this.dataGridView2.TabIndex = 48;            this.dataGridView2.SelectionChanged += new System.EventHandler(this.dataGridView2_SelectionChanged);            //             // Column11            //             this.Column11.HeaderText = "Column11";            this.Column11.MaxInputLength = 1;            this.Column11.Name = "Column11";            this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;            //             // Column12            //             this.Column12.HeaderText = "Column12";            this.Column12.MaxInputLength = 1;            this.Column12.Name = "Column12";            this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;            //             // Column13            //             this.Column13.HeaderText = "Column13";            this.Column13.MaxInputLength = 1;            this.Column13.Name = "Column13";            this.Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;            //             // Column14            //             this.Column14.HeaderText = "Column14";            this.Column14.MaxInputLength = 1;            this.Column14.Name = "Column14";            this.Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False;            //             // label4            //             this.label4.BackColor = System.Drawing.Color.WhiteSmoke;            this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.label4.Location = new System.Drawing.Point(255, 409);            this.label4.Name = "label4";            this.label4.Size = new System.Drawing.Size(103, 26);            this.label4.TabIndex = 69;            this.label4.Text = "회로설명";            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            //             // label22            //             this.label22.BackColor = System.Drawing.Color.WhiteSmoke;            this.label22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.label22.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.label22.Location = new System.Drawing.Point(255, 384);            this.label22.Name = "label22";            this.label22.Size = new System.Drawing.Size(103, 26);            this.label22.TabIndex = 61;            this.label22.Text = "연동내용/위치";            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            //             // chkDeviceCutFlag            //             this.chkDeviceCutFlag.Appearance = System.Windows.Forms.Appearance.Button;            this.chkDeviceCutFlag.AutoCheck = false;            this.chkDeviceCutFlag.BackColor = System.Drawing.Color.White;            this.chkDeviceCutFlag.FlatAppearance.CheckedBackColor = System.Drawing.Color.Tomato;            this.chkDeviceCutFlag.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.chkDeviceCutFlag.Location = new System.Drawing.Point(658, 409);            this.chkDeviceCutFlag.Name = "chkDeviceCutFlag";            this.chkDeviceCutFlag.Size = new System.Drawing.Size(96, 26);            this.chkDeviceCutFlag.TabIndex = 63;            this.chkDeviceCutFlag.Text = "회로차단";            this.chkDeviceCutFlag.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            this.chkDeviceCutFlag.UseVisualStyleBackColor = false;            this.chkDeviceCutFlag.Click += new System.EventHandler(this.chkDeviceCutFlag_Click);            //             // txtDeviceMemo            //             this.txtDeviceMemo.Location = new System.Drawing.Point(357, 409);            this.txtDeviceMemo.Name = "txtDeviceMemo";            this.txtDeviceMemo.ReadOnly = true;            this.txtDeviceMemo.Size = new System.Drawing.Size(301, 26);            this.txtDeviceMemo.TabIndex = 70;            //             // txtPositionName            //             this.txtPositionName.Location = new System.Drawing.Point(539, 384);            this.txtPositionName.Name = "txtPositionName";            this.txtPositionName.ReadOnly = true;            this.txtPositionName.Size = new System.Drawing.Size(215, 26);            this.txtPositionName.TabIndex = 68;            //             // txtDeviceTypeName            //             this.txtDeviceTypeName.Location = new System.Drawing.Point(357, 384);            this.txtDeviceTypeName.Name = "txtDeviceTypeName";            this.txtDeviceTypeName.ReadOnly = true;            this.txtDeviceTypeName.Size = new System.Drawing.Size(183, 26);            this.txtDeviceTypeName.TabIndex = 62;            //             // label70            //             this.label70.AutoSize = true;            this.label70.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.label70.Location = new System.Drawing.Point(47, 386);            this.label70.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.label70.Name = "label70";            this.label70.Size = new System.Drawing.Size(193, 15);            this.label70.TabIndex = 54;            this.label70.Text = "타입) A:2*2회로, B:4*4회로";            //             // panel2            //             this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.panel2.Controls.Add(this.chkRepeaterCut);            this.panel2.Controls.Add(this.lblRepeaterName);            this.panel2.Controls.Add(this.lblRepeaterID);            this.panel2.Location = new System.Drawing.Point(51, 333);            this.panel2.Name = "panel2";            this.panel2.Size = new System.Drawing.Size(205, 49);            this.panel2.TabIndex = 53;            //             // chkRepeaterCut            //             this.chkRepeaterCut.Appearance = System.Windows.Forms.Appearance.Button;            this.chkRepeaterCut.AutoCheck = false;            this.chkRepeaterCut.Checked = true;            this.chkRepeaterCut.CheckState = System.Windows.Forms.CheckState.Checked;            this.chkRepeaterCut.FlatAppearance.CheckedBackColor = System.Drawing.Color.Red;            this.chkRepeaterCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.chkRepeaterCut.Location = new System.Drawing.Point(109, 9);            this.chkRepeaterCut.Name = "chkRepeaterCut";            this.chkRepeaterCut.Size = new System.Drawing.Size(75, 29);            this.chkRepeaterCut.TabIndex = 56;            this.chkRepeaterCut.Text = "차 단";            this.chkRepeaterCut.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            this.chkRepeaterCut.UseVisualStyleBackColor = true;            this.chkRepeaterCut.Click += new System.EventHandler(this.chkRepeaterCut_Click);            //             // lblRepeaterName            //             this.lblRepeaterName.AutoSize = true;            this.lblRepeaterName.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.lblRepeaterName.Location = new System.Drawing.Point(46, 15);            this.lblRepeaterName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);            this.lblRepeaterName.Name = "lblRepeaterName";            this.lblRepeaterName.Size = new System.Drawing.Size(56, 16);            this.lblRepeaterName.TabIndex = 55;            this.lblRepeaterName.Text = "아이디";            //             // lblRepeaterID            //             this.lblRepeaterID.AutoEllipsis = true;            this.lblRepeaterID.AutoSize = true;            this.lblRepeaterID.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.lblRepeaterID.Location = new System.Drawing.Point(13, 15);            this.lblRepeaterID.Name = "lblRepeaterID";            this.lblRepeaterID.Size = new System.Drawing.Size(35, 16);            this.lblRepeaterID.TabIndex = 49;            this.lblRepeaterID.Text = "001";            this.lblRepeaterID.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            //             // label74            //             this.label74.BackColor = System.Drawing.Color.MintCream;            this.label74.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.label74.Location = new System.Drawing.Point(255, 357);            this.label74.Name = "label74";            this.label74.Size = new System.Drawing.Size(86, 25);            this.label74.TabIndex = 51;            this.label74.Text = "출력회로";            this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            //             // label73            //             this.label73.BackColor = System.Drawing.Color.Gold;            this.label73.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.label73.Location = new System.Drawing.Point(255, 333);            this.label73.Name = "label73";            this.label73.Size = new System.Drawing.Size(86, 25);            this.label73.TabIndex = 50;            this.label73.Text = "입력회로";            this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;            //             // ImgLstBoardUseFlag            //             this.ImgLstBoardUseFlag.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImgLstBoardUseFlag.ImageStream")));            this.ImgLstBoardUseFlag.TransparentColor = System.Drawing.Color.Transparent;            this.ImgLstBoardUseFlag.Images.SetKeyName(0, "중계반_사용.gif");            this.ImgLstBoardUseFlag.Images.SetKeyName(1, "중계반_비사용0.gif");            //             // panel_Menu            //             this.panel_Menu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));            this.panel_Menu.Controls.Add(this.button_Menu_RepeaterCut);            this.panel_Menu.Controls.Add(this.button_LoopCut);            this.panel_Menu.Location = new System.Drawing.Point(0, 36);            this.panel_Menu.Margin = new System.Windows.Forms.Padding(0);            this.panel_Menu.Name = "panel_Menu";            this.panel_Menu.Size = new System.Drawing.Size(1080, 54);            this.panel_Menu.TabIndex = 169;            //             // button_Menu_RepeaterCut            //             this.button_Menu_RepeaterCut.BackgroundImage = global::FPER.Properties.Resources.탭메뉴버튼_회색_100_30;            this.button_Menu_RepeaterCut.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;            this.button_Menu_RepeaterCut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.button_Menu_RepeaterCut.FlatAppearance.BorderSize = 0;            this.button_Menu_RepeaterCut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.button_Menu_RepeaterCut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.button_Menu_RepeaterCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.button_Menu_RepeaterCut.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.button_Menu_RepeaterCut.ForeColor = System.Drawing.Color.White;            this.button_Menu_RepeaterCut.Location = new System.Drawing.Point(590, 11);            this.button_Menu_RepeaterCut.Name = "button_Menu_RepeaterCut";            this.button_Menu_RepeaterCut.Size = new System.Drawing.Size(120, 31);            this.button_Menu_RepeaterCut.TabIndex = 0;            this.button_Menu_RepeaterCut.TabStop = false;            this.button_Menu_RepeaterCut.Text = "중계기차단";            this.button_Menu_RepeaterCut.UseVisualStyleBackColor = true;            this.button_Menu_RepeaterCut.Click += new System.EventHandler(this.button_Menu_RepeaterCut_Click);            //             // button_LoopCut            //             this.button_LoopCut.BackgroundImage = global::FPER.Properties.Resources.탭메뉴버튼_회색_100_30;            this.button_LoopCut.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;            this.button_LoopCut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.button_LoopCut.FlatAppearance.BorderSize = 0;            this.button_LoopCut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.button_LoopCut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));            this.button_LoopCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;            this.button_LoopCut.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));            this.button_LoopCut.ForeColor = System.Drawing.Color.White;            this.button_LoopCut.Location = new System.Drawing.Point(400, 11);            this.button_LoopCut.Name = "button_LoopCut";            this.button_LoopCut.Size = new System.Drawing.Size(120, 31);            this.button_LoopCut.TabIndex = 0;            this.button_LoopCut.TabStop = false;            this.button_LoopCut.Text = "계통차단";            this.button_LoopCut.UseVisualStyleBackColor = true;            this.button_LoopCut.Click += new System.EventHandler(this.button_LoopCut_Click);            //             // imageList_BoardUseFlag            //             this.imageList_BoardUseFlag.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_BoardUseFlag.ImageStream")));            this.imageList_BoardUseFlag.TransparentColor = System.Drawing.Color.Transparent;            this.imageList_BoardUseFlag.Images.SetKeyName(0, "중계반_배경_짙은회색_오른쪽_103_177.JPG");            this.imageList_BoardUseFlag.Images.SetKeyName(1, "중계반_배경_옅은회색_오른쪽_103_177.JPG");            this.imageList_BoardUseFlag.Images.SetKeyName(2, "중계반_배경_짙음옅음_오른쪽_103_177.JPG");            //             // frmControlMode            //             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;            this.BackColor = System.Drawing.Color.WhiteSmoke;            this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));            this.ClientSize = new System.Drawing.Size(1080, 824);            this.Controls.Add(this.panel_Menu);            this.Controls.Add(this.tabControl_Main);            this.Controls.Add(this.panel1);            this.Font = new System.Drawing.Font("굴림", 12F);            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;            this.Margin = new System.Windows.Forms.Padding(4);            this.MaximizeBox = false;            this.MinimizeBox = false;            this.Name = "frmControlMode";            this.ShowIcon = false;            this.ShowInTaskbar = false;            this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;            this.Text = "제어";            this.Activated += new System.EventHandler(this.frmControlMode_Activated);            this.Load += new System.EventHandler(this.frmControlMode_Load);            this.Disposed += new System.EventHandler(this.frmControlMode_Disposed);            this.panel1.ResumeLayout(false);            this.panel1.PerformLayout();            this.tabControl_Main.ResumeLayout(false);            this.tabPage_Board.ResumeLayout(false);            this.tabPage_Board.PerformLayout();            this.panelBoard1.ResumeLayout(false);            this.panelBoard1.PerformLayout();            this.panelBoard9.ResumeLayout(false);            this.panelBoard9.PerformLayout();            this.panelBoard10.ResumeLayout(false);            this.panelBoard10.PerformLayout();            this.panelBoard11.ResumeLayout(false);            this.panelBoard11.PerformLayout();            this.panelBoard12.ResumeLayout(false);            this.panelBoard12.PerformLayout();            this.panelBoard13.ResumeLayout(false);            this.panelBoard13.PerformLayout();            this.panelBoard14.ResumeLayout(false);            this.panelBoard14.PerformLayout();            this.panelBoard15.ResumeLayout(false);            this.panelBoard15.PerformLayout();            this.panelBoard16.ResumeLayout(false);            this.panelBoard16.PerformLayout();            this.panelBoard8.ResumeLayout(false);            this.panelBoard8.PerformLayout();            this.panelBoard7.ResumeLayout(false);            this.panelBoard7.PerformLayout();            this.panelBoard6.ResumeLayout(false);            this.panelBoard6.PerformLayout();            this.panelBoard5.ResumeLayout(false);            this.panelBoard5.PerformLayout();            this.panelBoard4.ResumeLayout(false);            this.panelBoard4.PerformLayout();            this.panelBoard3.ResumeLayout(false);            this.panelBoard3.PerformLayout();            this.panelBoard2.ResumeLayout(false);            this.panelBoard2.PerformLayout();            this.tabPage_Repeater.ResumeLayout(false);            this.tabPage_Repeater.PerformLayout();            this.groupRepeater.ResumeLayout(false);            this.groupRepeater.PerformLayout();            this.panelRepeaterSize.ResumeLayout(false);            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();            ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();            this.panel2.ResumeLayout(false);            this.panel2.PerformLayout();            this.panel_Menu.ResumeLayout(false);            this.ResumeLayout(false);        }        #endregion        private System.Windows.Forms.Label lblDir;        private System.Windows.Forms.Panel panel1;        private System.Windows.Forms.TabControl tabControl_Main;        private System.Windows.Forms.TabPage tabPage_Board;        private System.Windows.Forms.TabPage tabPage_Repeater;        private System.Windows.Forms.Panel panelBoard9;        private System.Windows.Forms.CheckBox checkLoop0Board9;        private System.Windows.Forms.CheckBox checkLoop1Board9;        private System.Windows.Forms.Panel panelBoard10;        private System.Windows.Forms.CheckBox checkLoop0Board10;        private System.Windows.Forms.CheckBox checkLoop1Board10;        private System.Windows.Forms.Panel panelBoard11;        private System.Windows.Forms.CheckBox checkLoop0Board11;        private System.Windows.Forms.CheckBox checkLoop1Board11;        private System.Windows.Forms.Panel panelBoard12;        private System.Windows.Forms.CheckBox checkLoop0Board12;        private System.Windows.Forms.CheckBox checkLoop1Board12;        private System.Windows.Forms.Panel panelBoard13;        private System.Windows.Forms.CheckBox checkLoop0Board13;        private System.Windows.Forms.CheckBox checkLoop1Board13;        private System.Windows.Forms.Panel panelBoard14;        private System.Windows.Forms.CheckBox checkLoop0Board14;        private System.Windows.Forms.CheckBox checkLoop1Board14;        private System.Windows.Forms.Panel panelBoard15;        private System.Windows.Forms.CheckBox checkLoop0Board15;        private System.Windows.Forms.CheckBox checkLoop1Board15;        private System.Windows.Forms.Panel panelBoard16;        private System.Windows.Forms.CheckBox checkLoop0Board16;        private System.Windows.Forms.CheckBox checkLoop1Board16;        private System.Windows.Forms.Panel panelBoard8;        private System.Windows.Forms.CheckBox checkLoop0Board8;        private System.Windows.Forms.CheckBox checkLoop1Board8;        private System.Windows.Forms.Panel panelBoard7;        private System.Windows.Forms.CheckBox checkLoop0Board7;        private System.Windows.Forms.CheckBox checkLoop1Board7;        private System.Windows.Forms.Panel panelBoard6;        private System.Windows.Forms.CheckBox checkLoop0Board6;        private System.Windows.Forms.CheckBox checkLoop1Board6;        private System.Windows.Forms.Panel panelBoard5;        private System.Windows.Forms.CheckBox checkLoop0Board5;        private System.Windows.Forms.CheckBox checkLoop1Board5;        private System.Windows.Forms.Panel panelBoard4;        private System.Windows.Forms.CheckBox checkLoop0Board4;        private System.Windows.Forms.CheckBox checkLoop1Board4;        private System.Windows.Forms.Panel panelBoard3;        private System.Windows.Forms.CheckBox checkLoop0Board3;        private System.Windows.Forms.CheckBox checkLoop1Board3;        private System.Windows.Forms.Panel panelBoard2;        private System.Windows.Forms.CheckBox checkLoop0Board2;        private System.Windows.Forms.CheckBox checkLoop1Board2;        private System.Windows.Forms.Panel panelBoard1;        private System.Windows.Forms.CheckBox checkLoop0Board1;        private System.Windows.Forms.CheckBox checkLoop1Board1;        private System.Windows.Forms.Button btnBoardSave;        private System.Windows.Forms.GroupBox groupRepeater;        private System.Windows.Forms.Label label70;        private System.Windows.Forms.Panel panel2;        private System.Windows.Forms.Label lblRepeaterID;        private System.Windows.Forms.Label label74;        private System.Windows.Forms.Label label73;        private System.Windows.Forms.DataGridView dataGridView2;        private System.Windows.Forms.DataGridViewTextBoxColumn Column11;        private System.Windows.Forms.DataGridViewTextBoxColumn Column12;        private System.Windows.Forms.DataGridViewTextBoxColumn Column13;        private System.Windows.Forms.DataGridViewTextBoxColumn Column14;        private System.Windows.Forms.TextBox txtDeviceTypeName;        private System.Windows.Forms.Label label22;        private System.Windows.Forms.CheckBox chkDeviceCutFlag;        private System.Windows.Forms.Label lblRepeaterName;        private System.Windows.Forms.Button button1;        private System.Windows.Forms.TextBox txtThisReceiverID;        private System.Windows.Forms.Button btnInputOpen;        private System.Windows.Forms.Label label18;        private System.Windows.Forms.TextBox txtLoopNo;        private System.Windows.Forms.TextBox txtBoardID;        private System.Windows.Forms.TextBox txtThisReceiverID2;        private System.Windows.Forms.ImageList ImgLstBoardUseFlag;        private System.Windows.Forms.Button btnWinClose;        private System.Windows.Forms.TextBox txtDeviceMemo;        private System.Windows.Forms.Label label4;        private System.Windows.Forms.TextBox txtPositionName;        private System.Windows.Forms.Panel panelRepeaterSize;        private System.Windows.Forms.DataGridView dataGridView1;        private System.Windows.Forms.DataGridViewComboBoxColumn Column1;        private System.Windows.Forms.DataGridViewComboBoxColumn Column2;        private System.Windows.Forms.DataGridViewComboBoxColumn Column3;        private System.Windows.Forms.DataGridViewTextBoxColumn Column4;        private System.Windows.Forms.DataGridViewTextBoxColumn Column5;        private System.Windows.Forms.DataGridViewTextBoxColumn Column6;        private System.Windows.Forms.DataGridViewTextBoxColumn Column7;        private System.Windows.Forms.DataGridViewTextBoxColumn Column8;        private System.Windows.Forms.DataGridViewTextBoxColumn Column9;        private System.Windows.Forms.DataGridViewTextBoxColumn Column10;        private System.Windows.Forms.Button btnOK;        private System.Windows.Forms.Button btnRepeaterAllInfo;        private System.Windows.Forms.CheckBox chkRepeaterCut;        private System.Windows.Forms.Label label11;        private System.Windows.Forms.Label label12;        private System.Windows.Forms.Label label13;        private System.Windows.Forms.Label label14;        private System.Windows.Forms.Label label15;        private System.Windows.Forms.Label label16;        private System.Windows.Forms.Label label17;        private System.Windows.Forms.Label label19;        private System.Windows.Forms.Label label10;        private System.Windows.Forms.Label label9;        private System.Windows.Forms.Label label8;        private System.Windows.Forms.Label label7;        private System.Windows.Forms.Label label6;        private System.Windows.Forms.Label label5;        private System.Windows.Forms.Label label2;        private System.Windows.Forms.Label label1;        private System.Windows.Forms.Button btnInWrite;        private System.Windows.Forms.Button btnOutWrite;      private System.Windows.Forms.Label label20;        private System.Windows.Forms.Panel panel_Menu;      private System.Windows.Forms.Button button_Menu_RepeaterCut;      private System.Windows.Forms.Button button_LoopCut;      private System.Windows.Forms.Label label_Comment;      private System.Windows.Forms.ImageList imageList_BoardUseFlag;      private System.Windows.Forms.Label label_UI_RepeaterCut;      private System.Windows.Forms.Label label_UI_RepeaterCut_Color;      private System.Windows.Forms.Label label_UI_Unuse;      private System.Windows.Forms.Label label_UI_Unuse_Color;      private System.Windows.Forms.Label label_UI_Use;      private System.Windows.Forms.Label label_UI_Comment;      private System.Windows.Forms.Label label_UI_Use_Color;      private System.Windows.Forms.Label label_UI_CircuitCut;      private System.Windows.Forms.Label label_UI_CircuitCut_Color;      private System.Windows.Forms.Label label_InfoApplyComment;      private System.Windows.Forms.Label label21;    }}
 |