frmControlMode.Designer.cs 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028
  1. namespace FPER
  2. {
  3. partial class frmControlMode
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmControlMode));
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  34. this.lblDir = new System.Windows.Forms.Label();
  35. this.panel1 = new System.Windows.Forms.Panel();
  36. this.btnWinClose = new System.Windows.Forms.Button();
  37. this.tabControl_Main = new System.Windows.Forms.TabControl();
  38. this.tabPage_Board = new System.Windows.Forms.TabPage();
  39. this.label_InfoApplyComment = new System.Windows.Forms.Label();
  40. this.panelBoard1 = new System.Windows.Forms.Panel();
  41. this.label1 = new System.Windows.Forms.Label();
  42. this.checkLoop0Board1 = new System.Windows.Forms.CheckBox();
  43. this.checkLoop1Board1 = new System.Windows.Forms.CheckBox();
  44. this.button1 = new System.Windows.Forms.Button();
  45. this.txtThisReceiverID = new System.Windows.Forms.TextBox();
  46. this.panelBoard9 = new System.Windows.Forms.Panel();
  47. this.label11 = new System.Windows.Forms.Label();
  48. this.checkLoop1Board9 = new System.Windows.Forms.CheckBox();
  49. this.checkLoop0Board9 = new System.Windows.Forms.CheckBox();
  50. this.panelBoard10 = new System.Windows.Forms.Panel();
  51. this.label12 = new System.Windows.Forms.Label();
  52. this.checkLoop0Board10 = new System.Windows.Forms.CheckBox();
  53. this.checkLoop1Board10 = new System.Windows.Forms.CheckBox();
  54. this.panelBoard11 = new System.Windows.Forms.Panel();
  55. this.label13 = new System.Windows.Forms.Label();
  56. this.checkLoop1Board11 = new System.Windows.Forms.CheckBox();
  57. this.checkLoop0Board11 = new System.Windows.Forms.CheckBox();
  58. this.panelBoard12 = new System.Windows.Forms.Panel();
  59. this.label14 = new System.Windows.Forms.Label();
  60. this.checkLoop0Board12 = new System.Windows.Forms.CheckBox();
  61. this.checkLoop1Board12 = new System.Windows.Forms.CheckBox();
  62. this.panelBoard13 = new System.Windows.Forms.Panel();
  63. this.label15 = new System.Windows.Forms.Label();
  64. this.checkLoop1Board13 = new System.Windows.Forms.CheckBox();
  65. this.checkLoop0Board13 = new System.Windows.Forms.CheckBox();
  66. this.panelBoard14 = new System.Windows.Forms.Panel();
  67. this.label16 = new System.Windows.Forms.Label();
  68. this.checkLoop0Board14 = new System.Windows.Forms.CheckBox();
  69. this.checkLoop1Board14 = new System.Windows.Forms.CheckBox();
  70. this.panelBoard15 = new System.Windows.Forms.Panel();
  71. this.label17 = new System.Windows.Forms.Label();
  72. this.checkLoop1Board15 = new System.Windows.Forms.CheckBox();
  73. this.checkLoop0Board15 = new System.Windows.Forms.CheckBox();
  74. this.panelBoard16 = new System.Windows.Forms.Panel();
  75. this.label19 = new System.Windows.Forms.Label();
  76. this.checkLoop0Board16 = new System.Windows.Forms.CheckBox();
  77. this.checkLoop1Board16 = new System.Windows.Forms.CheckBox();
  78. this.panelBoard8 = new System.Windows.Forms.Panel();
  79. this.label10 = new System.Windows.Forms.Label();
  80. this.checkLoop0Board8 = new System.Windows.Forms.CheckBox();
  81. this.checkLoop1Board8 = new System.Windows.Forms.CheckBox();
  82. this.panelBoard7 = new System.Windows.Forms.Panel();
  83. this.label9 = new System.Windows.Forms.Label();
  84. this.checkLoop1Board7 = new System.Windows.Forms.CheckBox();
  85. this.checkLoop0Board7 = new System.Windows.Forms.CheckBox();
  86. this.panelBoard6 = new System.Windows.Forms.Panel();
  87. this.label8 = new System.Windows.Forms.Label();
  88. this.checkLoop0Board6 = new System.Windows.Forms.CheckBox();
  89. this.checkLoop1Board6 = new System.Windows.Forms.CheckBox();
  90. this.panelBoard5 = new System.Windows.Forms.Panel();
  91. this.label7 = new System.Windows.Forms.Label();
  92. this.checkLoop1Board5 = new System.Windows.Forms.CheckBox();
  93. this.checkLoop0Board5 = new System.Windows.Forms.CheckBox();
  94. this.panelBoard4 = new System.Windows.Forms.Panel();
  95. this.label6 = new System.Windows.Forms.Label();
  96. this.checkLoop0Board4 = new System.Windows.Forms.CheckBox();
  97. this.checkLoop1Board4 = new System.Windows.Forms.CheckBox();
  98. this.panelBoard3 = new System.Windows.Forms.Panel();
  99. this.label5 = new System.Windows.Forms.Label();
  100. this.checkLoop1Board3 = new System.Windows.Forms.CheckBox();
  101. this.checkLoop0Board3 = new System.Windows.Forms.CheckBox();
  102. this.panelBoard2 = new System.Windows.Forms.Panel();
  103. this.label2 = new System.Windows.Forms.Label();
  104. this.checkLoop0Board2 = new System.Windows.Forms.CheckBox();
  105. this.checkLoop1Board2 = new System.Windows.Forms.CheckBox();
  106. this.btnBoardSave = new System.Windows.Forms.Button();
  107. this.tabPage_Repeater = new System.Windows.Forms.TabPage();
  108. this.label_UI_CircuitCut = new System.Windows.Forms.Label();
  109. this.label_UI_CircuitCut_Color = new System.Windows.Forms.Label();
  110. this.label_UI_RepeaterCut = new System.Windows.Forms.Label();
  111. this.label_UI_RepeaterCut_Color = new System.Windows.Forms.Label();
  112. this.label_UI_Unuse = new System.Windows.Forms.Label();
  113. this.label_UI_Unuse_Color = new System.Windows.Forms.Label();
  114. this.label_UI_Use = new System.Windows.Forms.Label();
  115. this.label_UI_Comment = new System.Windows.Forms.Label();
  116. this.label_UI_Use_Color = new System.Windows.Forms.Label();
  117. this.label_Comment = new System.Windows.Forms.Label();
  118. this.label20 = new System.Windows.Forms.Label();
  119. this.btnOK = new System.Windows.Forms.Button();
  120. this.btnRepeaterAllInfo = new System.Windows.Forms.Button();
  121. this.btnInputOpen = new System.Windows.Forms.Button();
  122. this.label18 = new System.Windows.Forms.Label();
  123. this.txtLoopNo = new System.Windows.Forms.TextBox();
  124. this.txtBoardID = new System.Windows.Forms.TextBox();
  125. this.txtThisReceiverID2 = new System.Windows.Forms.TextBox();
  126. this.groupRepeater = new System.Windows.Forms.GroupBox();
  127. this.label21 = new System.Windows.Forms.Label();
  128. this.btnOutWrite = new System.Windows.Forms.Button();
  129. this.btnInWrite = new System.Windows.Forms.Button();
  130. this.panelRepeaterSize = new System.Windows.Forms.Panel();
  131. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  132. this.Column1 = new System.Windows.Forms.DataGridViewComboBoxColumn();
  133. this.Column2 = new System.Windows.Forms.DataGridViewComboBoxColumn();
  134. this.Column3 = new System.Windows.Forms.DataGridViewComboBoxColumn();
  135. this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.dataGridView2 = new System.Windows.Forms.DataGridView();
  143. this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  144. this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  146. this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.label4 = new System.Windows.Forms.Label();
  148. this.label22 = new System.Windows.Forms.Label();
  149. this.chkDeviceCutFlag = new System.Windows.Forms.CheckBox();
  150. this.txtDeviceMemo = new System.Windows.Forms.TextBox();
  151. this.txtPositionName = new System.Windows.Forms.TextBox();
  152. this.txtDeviceTypeName = new System.Windows.Forms.TextBox();
  153. this.label70 = new System.Windows.Forms.Label();
  154. this.panel2 = new System.Windows.Forms.Panel();
  155. this.chkRepeaterCut = new System.Windows.Forms.CheckBox();
  156. this.lblRepeaterName = new System.Windows.Forms.Label();
  157. this.lblRepeaterID = new System.Windows.Forms.Label();
  158. this.label74 = new System.Windows.Forms.Label();
  159. this.label73 = new System.Windows.Forms.Label();
  160. this.ImgLstBoardUseFlag = new System.Windows.Forms.ImageList(this.components);
  161. this.panel_Menu = new System.Windows.Forms.Panel();
  162. this.button_Menu_RepeaterCut = new System.Windows.Forms.Button();
  163. this.button_LoopCut = new System.Windows.Forms.Button();
  164. this.imageList_BoardUseFlag = new System.Windows.Forms.ImageList(this.components);
  165. this.panel1.SuspendLayout();
  166. this.tabControl_Main.SuspendLayout();
  167. this.tabPage_Board.SuspendLayout();
  168. this.panelBoard1.SuspendLayout();
  169. this.panelBoard9.SuspendLayout();
  170. this.panelBoard10.SuspendLayout();
  171. this.panelBoard11.SuspendLayout();
  172. this.panelBoard12.SuspendLayout();
  173. this.panelBoard13.SuspendLayout();
  174. this.panelBoard14.SuspendLayout();
  175. this.panelBoard15.SuspendLayout();
  176. this.panelBoard16.SuspendLayout();
  177. this.panelBoard8.SuspendLayout();
  178. this.panelBoard7.SuspendLayout();
  179. this.panelBoard6.SuspendLayout();
  180. this.panelBoard5.SuspendLayout();
  181. this.panelBoard4.SuspendLayout();
  182. this.panelBoard3.SuspendLayout();
  183. this.panelBoard2.SuspendLayout();
  184. this.tabPage_Repeater.SuspendLayout();
  185. this.groupRepeater.SuspendLayout();
  186. this.panelRepeaterSize.SuspendLayout();
  187. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  188. ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
  189. this.panel2.SuspendLayout();
  190. this.panel_Menu.SuspendLayout();
  191. this.SuspendLayout();
  192. //
  193. // lblDir
  194. //
  195. this.lblDir.AutoSize = true;
  196. this.lblDir.BackColor = System.Drawing.Color.Transparent;
  197. this.lblDir.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold);
  198. this.lblDir.ForeColor = System.Drawing.Color.Black;
  199. this.lblDir.Location = new System.Drawing.Point(12, 9);
  200. this.lblDir.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  201. this.lblDir.Name = "lblDir";
  202. this.lblDir.Size = new System.Drawing.Size(129, 21);
  203. this.lblDir.TabIndex = 10;
  204. this.lblDir.Text = "시작 > 차단";
  205. //
  206. // panel1
  207. //
  208. this.panel1.BackColor = System.Drawing.Color.Black;
  209. this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
  210. this.panel1.Controls.Add(this.btnWinClose);
  211. this.panel1.Controls.Add(this.lblDir);
  212. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  213. this.panel1.Location = new System.Drawing.Point(0, 0);
  214. this.panel1.Margin = new System.Windows.Forms.Padding(4);
  215. this.panel1.Name = "panel1";
  216. this.panel1.Size = new System.Drawing.Size(1080, 36);
  217. this.panel1.TabIndex = 11;
  218. //
  219. // btnWinClose
  220. //
  221. this.btnWinClose.BackgroundImage = global::FPER.Properties.Resources.버튼_폼닫기_63_31;
  222. this.btnWinClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  223. this.btnWinClose.FlatAppearance.BorderSize = 0;
  224. this.btnWinClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  225. this.btnWinClose.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  226. this.btnWinClose.Location = new System.Drawing.Point(1003, 1);
  227. this.btnWinClose.Name = "btnWinClose";
  228. this.btnWinClose.Size = new System.Drawing.Size(63, 31);
  229. this.btnWinClose.TabIndex = 171;
  230. this.btnWinClose.UseVisualStyleBackColor = false;
  231. this.btnWinClose.Click += new System.EventHandler(this.btnWinClose_Click);
  232. //
  233. // tabControl_Main
  234. //
  235. this.tabControl_Main.Controls.Add(this.tabPage_Board);
  236. this.tabControl_Main.Controls.Add(this.tabPage_Repeater);
  237. this.tabControl_Main.Dock = System.Windows.Forms.DockStyle.Bottom;
  238. this.tabControl_Main.Location = new System.Drawing.Point(0, 66);
  239. this.tabControl_Main.Name = "tabControl_Main";
  240. this.tabControl_Main.SelectedIndex = 0;
  241. this.tabControl_Main.Size = new System.Drawing.Size(1080, 758);
  242. this.tabControl_Main.TabIndex = 22;
  243. this.tabControl_Main.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
  244. //
  245. // tabPage_Board
  246. //
  247. this.tabPage_Board.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));
  248. this.tabPage_Board.Controls.Add(this.label_InfoApplyComment);
  249. this.tabPage_Board.Controls.Add(this.panelBoard1);
  250. this.tabPage_Board.Controls.Add(this.button1);
  251. this.tabPage_Board.Controls.Add(this.txtThisReceiverID);
  252. this.tabPage_Board.Controls.Add(this.panelBoard9);
  253. this.tabPage_Board.Controls.Add(this.panelBoard10);
  254. this.tabPage_Board.Controls.Add(this.panelBoard11);
  255. this.tabPage_Board.Controls.Add(this.panelBoard12);
  256. this.tabPage_Board.Controls.Add(this.panelBoard13);
  257. this.tabPage_Board.Controls.Add(this.panelBoard14);
  258. this.tabPage_Board.Controls.Add(this.panelBoard15);
  259. this.tabPage_Board.Controls.Add(this.panelBoard16);
  260. this.tabPage_Board.Controls.Add(this.panelBoard8);
  261. this.tabPage_Board.Controls.Add(this.panelBoard7);
  262. this.tabPage_Board.Controls.Add(this.panelBoard6);
  263. this.tabPage_Board.Controls.Add(this.panelBoard5);
  264. this.tabPage_Board.Controls.Add(this.panelBoard4);
  265. this.tabPage_Board.Controls.Add(this.panelBoard3);
  266. this.tabPage_Board.Controls.Add(this.panelBoard2);
  267. this.tabPage_Board.Controls.Add(this.btnBoardSave);
  268. this.tabPage_Board.Location = new System.Drawing.Point(4, 26);
  269. this.tabPage_Board.Margin = new System.Windows.Forms.Padding(0);
  270. this.tabPage_Board.Name = "tabPage_Board";
  271. this.tabPage_Board.Size = new System.Drawing.Size(1072, 728);
  272. this.tabPage_Board.TabIndex = 0;
  273. this.tabPage_Board.Text = "계통차단";
  274. //
  275. // label_InfoApplyComment
  276. //
  277. this.label_InfoApplyComment.AutoSize = true;
  278. this.label_InfoApplyComment.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  279. this.label_InfoApplyComment.ForeColor = System.Drawing.Color.Red;
  280. this.label_InfoApplyComment.Location = new System.Drawing.Point(579, 27);
  281. this.label_InfoApplyComment.Name = "label_InfoApplyComment";
  282. this.label_InfoApplyComment.Size = new System.Drawing.Size(281, 16);
  283. this.label_InfoApplyComment.TabIndex = 153;
  284. this.label_InfoApplyComment.Text = "적용하기를 누르면 복구 진행합니다";
  285. this.label_InfoApplyComment.Visible = false;
  286. //
  287. // panelBoard1
  288. //
  289. this.panelBoard1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard1.BackgroundImage")));
  290. this.panelBoard1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  291. this.panelBoard1.Controls.Add(this.label1);
  292. this.panelBoard1.Controls.Add(this.checkLoop0Board1);
  293. this.panelBoard1.Controls.Add(this.checkLoop1Board1);
  294. this.panelBoard1.Location = new System.Drawing.Point(187, 66);
  295. this.panelBoard1.Name = "panelBoard1";
  296. this.panelBoard1.Size = new System.Drawing.Size(103, 177);
  297. this.panelBoard1.TabIndex = 135;
  298. //
  299. // label1
  300. //
  301. this.label1.AutoSize = true;
  302. this.label1.BackColor = System.Drawing.Color.Transparent;
  303. this.label1.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  304. this.label1.Location = new System.Drawing.Point(39, 17);
  305. this.label1.Name = "label1";
  306. this.label1.Size = new System.Drawing.Size(22, 21);
  307. this.label1.TabIndex = 217;
  308. this.label1.Text = "1";
  309. //
  310. // checkLoop0Board1
  311. //
  312. this.checkLoop0Board1.AutoSize = true;
  313. this.checkLoop0Board1.BackColor = System.Drawing.Color.Transparent;
  314. this.checkLoop0Board1.Checked = true;
  315. this.checkLoop0Board1.CheckState = System.Windows.Forms.CheckState.Checked;
  316. this.checkLoop0Board1.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  317. this.checkLoop0Board1.FlatAppearance.BorderSize = 0;
  318. this.checkLoop0Board1.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  319. this.checkLoop0Board1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  320. this.checkLoop0Board1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  321. this.checkLoop0Board1.Font = new System.Drawing.Font("굴림", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  322. this.checkLoop0Board1.Location = new System.Drawing.Point(16, 100);
  323. this.checkLoop0Board1.Name = "checkLoop0Board1";
  324. this.checkLoop0Board1.Size = new System.Drawing.Size(15, 14);
  325. this.checkLoop0Board1.TabIndex = 33;
  326. this.checkLoop0Board1.UseVisualStyleBackColor = false;
  327. //
  328. // checkLoop1Board1
  329. //
  330. this.checkLoop1Board1.AutoSize = true;
  331. this.checkLoop1Board1.BackColor = System.Drawing.Color.Transparent;
  332. this.checkLoop1Board1.Checked = true;
  333. this.checkLoop1Board1.CheckState = System.Windows.Forms.CheckState.Checked;
  334. this.checkLoop1Board1.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  335. this.checkLoop1Board1.Location = new System.Drawing.Point(16, 145);
  336. this.checkLoop1Board1.Name = "checkLoop1Board1";
  337. this.checkLoop1Board1.Size = new System.Drawing.Size(15, 14);
  338. this.checkLoop1Board1.TabIndex = 34;
  339. this.checkLoop1Board1.UseVisualStyleBackColor = false;
  340. //
  341. // button1
  342. //
  343. this.button1.BackColor = System.Drawing.Color.LightGray;
  344. this.button1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage")));
  345. this.button1.FlatAppearance.BorderSize = 0;
  346. this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  347. this.button1.Location = new System.Drawing.Point(22, 15);
  348. this.button1.Name = "button1";
  349. this.button1.Size = new System.Drawing.Size(117, 37);
  350. this.button1.TabIndex = 152;
  351. this.button1.UseVisualStyleBackColor = false;
  352. //
  353. // txtThisReceiverID
  354. //
  355. this.txtThisReceiverID.BackColor = System.Drawing.Color.Black;
  356. this.txtThisReceiverID.Font = new System.Drawing.Font("굴림", 20F, System.Drawing.FontStyle.Bold);
  357. this.txtThisReceiverID.ForeColor = System.Drawing.Color.White;
  358. this.txtThisReceiverID.Location = new System.Drawing.Point(140, 15);
  359. this.txtThisReceiverID.MaxLength = 2;
  360. this.txtThisReceiverID.Name = "txtThisReceiverID";
  361. this.txtThisReceiverID.ReadOnly = true;
  362. this.txtThisReceiverID.Size = new System.Drawing.Size(39, 38);
  363. this.txtThisReceiverID.TabIndex = 151;
  364. this.txtThisReceiverID.Text = "01";
  365. this.txtThisReceiverID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  366. //
  367. // panelBoard9
  368. //
  369. this.panelBoard9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard9.BackgroundImage")));
  370. this.panelBoard9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  371. this.panelBoard9.Controls.Add(this.label11);
  372. this.panelBoard9.Controls.Add(this.checkLoop1Board9);
  373. this.panelBoard9.Controls.Add(this.checkLoop0Board9);
  374. this.panelBoard9.Location = new System.Drawing.Point(640, 292);
  375. this.panelBoard9.Name = "panelBoard9";
  376. this.panelBoard9.Size = new System.Drawing.Size(103, 177);
  377. this.panelBoard9.TabIndex = 150;
  378. //
  379. // label11
  380. //
  381. this.label11.AutoSize = true;
  382. this.label11.BackColor = System.Drawing.Color.Transparent;
  383. this.label11.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  384. this.label11.Location = new System.Drawing.Point(39, 17);
  385. this.label11.Name = "label11";
  386. this.label11.Size = new System.Drawing.Size(22, 21);
  387. this.label11.TabIndex = 218;
  388. this.label11.Text = "9";
  389. //
  390. // checkLoop1Board9
  391. //
  392. this.checkLoop1Board9.AutoSize = true;
  393. this.checkLoop1Board9.BackColor = System.Drawing.Color.Transparent;
  394. this.checkLoop1Board9.Checked = true;
  395. this.checkLoop1Board9.CheckState = System.Windows.Forms.CheckState.Checked;
  396. this.checkLoop1Board9.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  397. this.checkLoop1Board9.Location = new System.Drawing.Point(16, 145);
  398. this.checkLoop1Board9.Name = "checkLoop1Board9";
  399. this.checkLoop1Board9.Size = new System.Drawing.Size(15, 14);
  400. this.checkLoop1Board9.TabIndex = 34;
  401. this.checkLoop1Board9.UseVisualStyleBackColor = false;
  402. //
  403. // checkLoop0Board9
  404. //
  405. this.checkLoop0Board9.AutoSize = true;
  406. this.checkLoop0Board9.BackColor = System.Drawing.Color.Transparent;
  407. this.checkLoop0Board9.Checked = true;
  408. this.checkLoop0Board9.CheckState = System.Windows.Forms.CheckState.Checked;
  409. this.checkLoop0Board9.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  410. this.checkLoop0Board9.Location = new System.Drawing.Point(16, 100);
  411. this.checkLoop0Board9.Name = "checkLoop0Board9";
  412. this.checkLoop0Board9.Size = new System.Drawing.Size(15, 14);
  413. this.checkLoop0Board9.TabIndex = 33;
  414. this.checkLoop0Board9.UseVisualStyleBackColor = false;
  415. //
  416. // panelBoard10
  417. //
  418. this.panelBoard10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard10.BackgroundImage")));
  419. this.panelBoard10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  420. this.panelBoard10.Controls.Add(this.label12);
  421. this.panelBoard10.Controls.Add(this.checkLoop0Board10);
  422. this.panelBoard10.Controls.Add(this.checkLoop1Board10);
  423. this.panelBoard10.Location = new System.Drawing.Point(791, 292);
  424. this.panelBoard10.Name = "panelBoard10";
  425. this.panelBoard10.Size = new System.Drawing.Size(103, 177);
  426. this.panelBoard10.TabIndex = 149;
  427. //
  428. // label12
  429. //
  430. this.label12.AutoSize = true;
  431. this.label12.BackColor = System.Drawing.Color.Transparent;
  432. this.label12.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  433. this.label12.Location = new System.Drawing.Point(35, 17);
  434. this.label12.Name = "label12";
  435. this.label12.Size = new System.Drawing.Size(34, 21);
  436. this.label12.TabIndex = 218;
  437. this.label12.Text = "10";
  438. //
  439. // checkLoop0Board10
  440. //
  441. this.checkLoop0Board10.AutoSize = true;
  442. this.checkLoop0Board10.BackColor = System.Drawing.Color.Transparent;
  443. this.checkLoop0Board10.Checked = true;
  444. this.checkLoop0Board10.CheckState = System.Windows.Forms.CheckState.Checked;
  445. this.checkLoop0Board10.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  446. this.checkLoop0Board10.Location = new System.Drawing.Point(16, 100);
  447. this.checkLoop0Board10.Name = "checkLoop0Board10";
  448. this.checkLoop0Board10.Size = new System.Drawing.Size(15, 14);
  449. this.checkLoop0Board10.TabIndex = 33;
  450. this.checkLoop0Board10.UseVisualStyleBackColor = false;
  451. //
  452. // checkLoop1Board10
  453. //
  454. this.checkLoop1Board10.AutoSize = true;
  455. this.checkLoop1Board10.BackColor = System.Drawing.Color.Transparent;
  456. this.checkLoop1Board10.Checked = true;
  457. this.checkLoop1Board10.CheckState = System.Windows.Forms.CheckState.Checked;
  458. this.checkLoop1Board10.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  459. this.checkLoop1Board10.Location = new System.Drawing.Point(16, 145);
  460. this.checkLoop1Board10.Name = "checkLoop1Board10";
  461. this.checkLoop1Board10.Size = new System.Drawing.Size(15, 14);
  462. this.checkLoop1Board10.TabIndex = 34;
  463. this.checkLoop1Board10.UseVisualStyleBackColor = false;
  464. //
  465. // panelBoard11
  466. //
  467. this.panelBoard11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard11.BackgroundImage")));
  468. this.panelBoard11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  469. this.panelBoard11.Controls.Add(this.label13);
  470. this.panelBoard11.Controls.Add(this.checkLoop1Board11);
  471. this.panelBoard11.Controls.Add(this.checkLoop0Board11);
  472. this.panelBoard11.Location = new System.Drawing.Point(187, 519);
  473. this.panelBoard11.Name = "panelBoard11";
  474. this.panelBoard11.Size = new System.Drawing.Size(103, 177);
  475. this.panelBoard11.TabIndex = 148;
  476. //
  477. // label13
  478. //
  479. this.label13.AutoSize = true;
  480. this.label13.BackColor = System.Drawing.Color.Transparent;
  481. this.label13.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  482. this.label13.Location = new System.Drawing.Point(35, 17);
  483. this.label13.Name = "label13";
  484. this.label13.Size = new System.Drawing.Size(34, 21);
  485. this.label13.TabIndex = 218;
  486. this.label13.Text = "11";
  487. //
  488. // checkLoop1Board11
  489. //
  490. this.checkLoop1Board11.AutoSize = true;
  491. this.checkLoop1Board11.BackColor = System.Drawing.Color.Transparent;
  492. this.checkLoop1Board11.Checked = true;
  493. this.checkLoop1Board11.CheckState = System.Windows.Forms.CheckState.Checked;
  494. this.checkLoop1Board11.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  495. this.checkLoop1Board11.Location = new System.Drawing.Point(16, 145);
  496. this.checkLoop1Board11.Name = "checkLoop1Board11";
  497. this.checkLoop1Board11.Size = new System.Drawing.Size(15, 14);
  498. this.checkLoop1Board11.TabIndex = 34;
  499. this.checkLoop1Board11.UseVisualStyleBackColor = false;
  500. //
  501. // checkLoop0Board11
  502. //
  503. this.checkLoop0Board11.AutoSize = true;
  504. this.checkLoop0Board11.BackColor = System.Drawing.Color.Transparent;
  505. this.checkLoop0Board11.Checked = true;
  506. this.checkLoop0Board11.CheckState = System.Windows.Forms.CheckState.Checked;
  507. this.checkLoop0Board11.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  508. this.checkLoop0Board11.Location = new System.Drawing.Point(16, 100);
  509. this.checkLoop0Board11.Name = "checkLoop0Board11";
  510. this.checkLoop0Board11.Size = new System.Drawing.Size(15, 14);
  511. this.checkLoop0Board11.TabIndex = 33;
  512. this.checkLoop0Board11.UseVisualStyleBackColor = false;
  513. //
  514. // panelBoard12
  515. //
  516. this.panelBoard12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard12.BackgroundImage")));
  517. this.panelBoard12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  518. this.panelBoard12.Controls.Add(this.label14);
  519. this.panelBoard12.Controls.Add(this.checkLoop0Board12);
  520. this.panelBoard12.Controls.Add(this.checkLoop1Board12);
  521. this.panelBoard12.Location = new System.Drawing.Point(338, 519);
  522. this.panelBoard12.Name = "panelBoard12";
  523. this.panelBoard12.Size = new System.Drawing.Size(103, 177);
  524. this.panelBoard12.TabIndex = 147;
  525. //
  526. // label14
  527. //
  528. this.label14.AutoSize = true;
  529. this.label14.BackColor = System.Drawing.Color.Transparent;
  530. this.label14.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  531. this.label14.Location = new System.Drawing.Point(35, 17);
  532. this.label14.Name = "label14";
  533. this.label14.Size = new System.Drawing.Size(34, 21);
  534. this.label14.TabIndex = 219;
  535. this.label14.Text = "12";
  536. //
  537. // checkLoop0Board12
  538. //
  539. this.checkLoop0Board12.AutoSize = true;
  540. this.checkLoop0Board12.BackColor = System.Drawing.Color.Transparent;
  541. this.checkLoop0Board12.Checked = true;
  542. this.checkLoop0Board12.CheckState = System.Windows.Forms.CheckState.Checked;
  543. this.checkLoop0Board12.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  544. this.checkLoop0Board12.Location = new System.Drawing.Point(16, 100);
  545. this.checkLoop0Board12.Name = "checkLoop0Board12";
  546. this.checkLoop0Board12.Size = new System.Drawing.Size(15, 14);
  547. this.checkLoop0Board12.TabIndex = 33;
  548. this.checkLoop0Board12.UseVisualStyleBackColor = false;
  549. //
  550. // checkLoop1Board12
  551. //
  552. this.checkLoop1Board12.AutoSize = true;
  553. this.checkLoop1Board12.BackColor = System.Drawing.Color.Transparent;
  554. this.checkLoop1Board12.Checked = true;
  555. this.checkLoop1Board12.CheckState = System.Windows.Forms.CheckState.Checked;
  556. this.checkLoop1Board12.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  557. this.checkLoop1Board12.Location = new System.Drawing.Point(16, 145);
  558. this.checkLoop1Board12.Name = "checkLoop1Board12";
  559. this.checkLoop1Board12.Size = new System.Drawing.Size(15, 14);
  560. this.checkLoop1Board12.TabIndex = 34;
  561. this.checkLoop1Board12.UseVisualStyleBackColor = false;
  562. //
  563. // panelBoard13
  564. //
  565. this.panelBoard13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard13.BackgroundImage")));
  566. this.panelBoard13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  567. this.panelBoard13.Controls.Add(this.label15);
  568. this.panelBoard13.Controls.Add(this.checkLoop1Board13);
  569. this.panelBoard13.Controls.Add(this.checkLoop0Board13);
  570. this.panelBoard13.Location = new System.Drawing.Point(489, 519);
  571. this.panelBoard13.Name = "panelBoard13";
  572. this.panelBoard13.Size = new System.Drawing.Size(103, 177);
  573. this.panelBoard13.TabIndex = 146;
  574. //
  575. // label15
  576. //
  577. this.label15.AutoSize = true;
  578. this.label15.BackColor = System.Drawing.Color.Transparent;
  579. this.label15.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  580. this.label15.Location = new System.Drawing.Point(35, 17);
  581. this.label15.Name = "label15";
  582. this.label15.Size = new System.Drawing.Size(34, 21);
  583. this.label15.TabIndex = 218;
  584. this.label15.Text = "13";
  585. //
  586. // checkLoop1Board13
  587. //
  588. this.checkLoop1Board13.AutoSize = true;
  589. this.checkLoop1Board13.BackColor = System.Drawing.Color.Transparent;
  590. this.checkLoop1Board13.Checked = true;
  591. this.checkLoop1Board13.CheckState = System.Windows.Forms.CheckState.Checked;
  592. this.checkLoop1Board13.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  593. this.checkLoop1Board13.Location = new System.Drawing.Point(16, 145);
  594. this.checkLoop1Board13.Name = "checkLoop1Board13";
  595. this.checkLoop1Board13.Size = new System.Drawing.Size(15, 14);
  596. this.checkLoop1Board13.TabIndex = 34;
  597. this.checkLoop1Board13.UseVisualStyleBackColor = false;
  598. //
  599. // checkLoop0Board13
  600. //
  601. this.checkLoop0Board13.AutoSize = true;
  602. this.checkLoop0Board13.BackColor = System.Drawing.Color.Transparent;
  603. this.checkLoop0Board13.Checked = true;
  604. this.checkLoop0Board13.CheckState = System.Windows.Forms.CheckState.Checked;
  605. this.checkLoop0Board13.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  606. this.checkLoop0Board13.Location = new System.Drawing.Point(16, 100);
  607. this.checkLoop0Board13.Name = "checkLoop0Board13";
  608. this.checkLoop0Board13.Size = new System.Drawing.Size(15, 14);
  609. this.checkLoop0Board13.TabIndex = 33;
  610. this.checkLoop0Board13.UseVisualStyleBackColor = false;
  611. //
  612. // panelBoard14
  613. //
  614. this.panelBoard14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard14.BackgroundImage")));
  615. this.panelBoard14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  616. this.panelBoard14.Controls.Add(this.label16);
  617. this.panelBoard14.Controls.Add(this.checkLoop0Board14);
  618. this.panelBoard14.Controls.Add(this.checkLoop1Board14);
  619. this.panelBoard14.Location = new System.Drawing.Point(640, 519);
  620. this.panelBoard14.Name = "panelBoard14";
  621. this.panelBoard14.Size = new System.Drawing.Size(103, 177);
  622. this.panelBoard14.TabIndex = 145;
  623. //
  624. // label16
  625. //
  626. this.label16.AutoSize = true;
  627. this.label16.BackColor = System.Drawing.Color.Transparent;
  628. this.label16.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  629. this.label16.Location = new System.Drawing.Point(35, 17);
  630. this.label16.Name = "label16";
  631. this.label16.Size = new System.Drawing.Size(34, 21);
  632. this.label16.TabIndex = 218;
  633. this.label16.Text = "14";
  634. //
  635. // checkLoop0Board14
  636. //
  637. this.checkLoop0Board14.AutoSize = true;
  638. this.checkLoop0Board14.BackColor = System.Drawing.Color.Transparent;
  639. this.checkLoop0Board14.Checked = true;
  640. this.checkLoop0Board14.CheckState = System.Windows.Forms.CheckState.Checked;
  641. this.checkLoop0Board14.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  642. this.checkLoop0Board14.Location = new System.Drawing.Point(16, 100);
  643. this.checkLoop0Board14.Name = "checkLoop0Board14";
  644. this.checkLoop0Board14.Size = new System.Drawing.Size(15, 14);
  645. this.checkLoop0Board14.TabIndex = 33;
  646. this.checkLoop0Board14.UseVisualStyleBackColor = false;
  647. //
  648. // checkLoop1Board14
  649. //
  650. this.checkLoop1Board14.AutoSize = true;
  651. this.checkLoop1Board14.BackColor = System.Drawing.Color.Transparent;
  652. this.checkLoop1Board14.Checked = true;
  653. this.checkLoop1Board14.CheckState = System.Windows.Forms.CheckState.Checked;
  654. this.checkLoop1Board14.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  655. this.checkLoop1Board14.Location = new System.Drawing.Point(16, 145);
  656. this.checkLoop1Board14.Name = "checkLoop1Board14";
  657. this.checkLoop1Board14.Size = new System.Drawing.Size(15, 14);
  658. this.checkLoop1Board14.TabIndex = 34;
  659. this.checkLoop1Board14.UseVisualStyleBackColor = false;
  660. //
  661. // panelBoard15
  662. //
  663. this.panelBoard15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard15.BackgroundImage")));
  664. this.panelBoard15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  665. this.panelBoard15.Controls.Add(this.label17);
  666. this.panelBoard15.Controls.Add(this.checkLoop1Board15);
  667. this.panelBoard15.Controls.Add(this.checkLoop0Board15);
  668. this.panelBoard15.Location = new System.Drawing.Point(791, 519);
  669. this.panelBoard15.Name = "panelBoard15";
  670. this.panelBoard15.Size = new System.Drawing.Size(103, 177);
  671. this.panelBoard15.TabIndex = 144;
  672. //
  673. // label17
  674. //
  675. this.label17.AutoSize = true;
  676. this.label17.BackColor = System.Drawing.Color.Transparent;
  677. this.label17.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  678. this.label17.Location = new System.Drawing.Point(35, 17);
  679. this.label17.Name = "label17";
  680. this.label17.Size = new System.Drawing.Size(34, 21);
  681. this.label17.TabIndex = 218;
  682. this.label17.Text = "15";
  683. //
  684. // checkLoop1Board15
  685. //
  686. this.checkLoop1Board15.AutoSize = true;
  687. this.checkLoop1Board15.BackColor = System.Drawing.Color.Transparent;
  688. this.checkLoop1Board15.Checked = true;
  689. this.checkLoop1Board15.CheckState = System.Windows.Forms.CheckState.Checked;
  690. this.checkLoop1Board15.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  691. this.checkLoop1Board15.Location = new System.Drawing.Point(16, 145);
  692. this.checkLoop1Board15.Name = "checkLoop1Board15";
  693. this.checkLoop1Board15.Size = new System.Drawing.Size(15, 14);
  694. this.checkLoop1Board15.TabIndex = 34;
  695. this.checkLoop1Board15.UseVisualStyleBackColor = false;
  696. //
  697. // checkLoop0Board15
  698. //
  699. this.checkLoop0Board15.AutoSize = true;
  700. this.checkLoop0Board15.BackColor = System.Drawing.Color.Transparent;
  701. this.checkLoop0Board15.Checked = true;
  702. this.checkLoop0Board15.CheckState = System.Windows.Forms.CheckState.Checked;
  703. this.checkLoop0Board15.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  704. this.checkLoop0Board15.Location = new System.Drawing.Point(16, 100);
  705. this.checkLoop0Board15.Name = "checkLoop0Board15";
  706. this.checkLoop0Board15.Size = new System.Drawing.Size(15, 14);
  707. this.checkLoop0Board15.TabIndex = 33;
  708. this.checkLoop0Board15.UseVisualStyleBackColor = false;
  709. //
  710. // panelBoard16
  711. //
  712. this.panelBoard16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard16.BackgroundImage")));
  713. this.panelBoard16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  714. this.panelBoard16.Controls.Add(this.label19);
  715. this.panelBoard16.Controls.Add(this.checkLoop0Board16);
  716. this.panelBoard16.Controls.Add(this.checkLoop1Board16);
  717. this.panelBoard16.Location = new System.Drawing.Point(989, 152);
  718. this.panelBoard16.Name = "panelBoard16";
  719. this.panelBoard16.Size = new System.Drawing.Size(72, 214);
  720. this.panelBoard16.TabIndex = 143;
  721. this.panelBoard16.Visible = false;
  722. //
  723. // label19
  724. //
  725. this.label19.AutoSize = true;
  726. this.label19.BackColor = System.Drawing.Color.White;
  727. this.label19.Location = new System.Drawing.Point(23, 45);
  728. this.label19.Name = "label19";
  729. this.label19.Size = new System.Drawing.Size(24, 16);
  730. this.label19.TabIndex = 218;
  731. this.label19.Text = "16";
  732. //
  733. // checkLoop0Board16
  734. //
  735. this.checkLoop0Board16.AutoSize = true;
  736. this.checkLoop0Board16.BackColor = System.Drawing.Color.LemonChiffon;
  737. this.checkLoop0Board16.Checked = true;
  738. this.checkLoop0Board16.CheckState = System.Windows.Forms.CheckState.Checked;
  739. this.checkLoop0Board16.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  740. this.checkLoop0Board16.Location = new System.Drawing.Point(29, 133);
  741. this.checkLoop0Board16.Name = "checkLoop0Board16";
  742. this.checkLoop0Board16.Size = new System.Drawing.Size(15, 14);
  743. this.checkLoop0Board16.TabIndex = 33;
  744. this.checkLoop0Board16.UseVisualStyleBackColor = false;
  745. //
  746. // checkLoop1Board16
  747. //
  748. this.checkLoop1Board16.AutoSize = true;
  749. this.checkLoop1Board16.BackColor = System.Drawing.Color.LightCyan;
  750. this.checkLoop1Board16.Checked = true;
  751. this.checkLoop1Board16.CheckState = System.Windows.Forms.CheckState.Checked;
  752. this.checkLoop1Board16.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  753. this.checkLoop1Board16.Location = new System.Drawing.Point(29, 183);
  754. this.checkLoop1Board16.Name = "checkLoop1Board16";
  755. this.checkLoop1Board16.Size = new System.Drawing.Size(15, 14);
  756. this.checkLoop1Board16.TabIndex = 34;
  757. this.checkLoop1Board16.UseVisualStyleBackColor = false;
  758. //
  759. // panelBoard8
  760. //
  761. this.panelBoard8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard8.BackgroundImage")));
  762. this.panelBoard8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  763. this.panelBoard8.Controls.Add(this.label10);
  764. this.panelBoard8.Controls.Add(this.checkLoop0Board8);
  765. this.panelBoard8.Controls.Add(this.checkLoop1Board8);
  766. this.panelBoard8.Location = new System.Drawing.Point(489, 292);
  767. this.panelBoard8.Name = "panelBoard8";
  768. this.panelBoard8.Size = new System.Drawing.Size(103, 177);
  769. this.panelBoard8.TabIndex = 142;
  770. //
  771. // label10
  772. //
  773. this.label10.AutoSize = true;
  774. this.label10.BackColor = System.Drawing.Color.Transparent;
  775. this.label10.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  776. this.label10.Location = new System.Drawing.Point(39, 17);
  777. this.label10.Name = "label10";
  778. this.label10.Size = new System.Drawing.Size(22, 21);
  779. this.label10.TabIndex = 218;
  780. this.label10.Text = "8";
  781. //
  782. // checkLoop0Board8
  783. //
  784. this.checkLoop0Board8.AutoSize = true;
  785. this.checkLoop0Board8.BackColor = System.Drawing.Color.Transparent;
  786. this.checkLoop0Board8.Checked = true;
  787. this.checkLoop0Board8.CheckState = System.Windows.Forms.CheckState.Checked;
  788. this.checkLoop0Board8.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  789. this.checkLoop0Board8.Location = new System.Drawing.Point(16, 100);
  790. this.checkLoop0Board8.Name = "checkLoop0Board8";
  791. this.checkLoop0Board8.Size = new System.Drawing.Size(15, 14);
  792. this.checkLoop0Board8.TabIndex = 33;
  793. this.checkLoop0Board8.UseVisualStyleBackColor = false;
  794. //
  795. // checkLoop1Board8
  796. //
  797. this.checkLoop1Board8.AutoSize = true;
  798. this.checkLoop1Board8.BackColor = System.Drawing.Color.Transparent;
  799. this.checkLoop1Board8.Checked = true;
  800. this.checkLoop1Board8.CheckState = System.Windows.Forms.CheckState.Checked;
  801. this.checkLoop1Board8.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  802. this.checkLoop1Board8.Location = new System.Drawing.Point(16, 145);
  803. this.checkLoop1Board8.Name = "checkLoop1Board8";
  804. this.checkLoop1Board8.Size = new System.Drawing.Size(15, 14);
  805. this.checkLoop1Board8.TabIndex = 34;
  806. this.checkLoop1Board8.UseVisualStyleBackColor = false;
  807. //
  808. // panelBoard7
  809. //
  810. this.panelBoard7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard7.BackgroundImage")));
  811. this.panelBoard7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  812. this.panelBoard7.Controls.Add(this.label9);
  813. this.panelBoard7.Controls.Add(this.checkLoop1Board7);
  814. this.panelBoard7.Controls.Add(this.checkLoop0Board7);
  815. this.panelBoard7.Location = new System.Drawing.Point(338, 292);
  816. this.panelBoard7.Name = "panelBoard7";
  817. this.panelBoard7.Size = new System.Drawing.Size(103, 177);
  818. this.panelBoard7.TabIndex = 141;
  819. //
  820. // label9
  821. //
  822. this.label9.AutoSize = true;
  823. this.label9.BackColor = System.Drawing.Color.Transparent;
  824. this.label9.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  825. this.label9.Location = new System.Drawing.Point(39, 17);
  826. this.label9.Name = "label9";
  827. this.label9.Size = new System.Drawing.Size(22, 21);
  828. this.label9.TabIndex = 218;
  829. this.label9.Text = "7";
  830. //
  831. // checkLoop1Board7
  832. //
  833. this.checkLoop1Board7.AutoSize = true;
  834. this.checkLoop1Board7.BackColor = System.Drawing.Color.Transparent;
  835. this.checkLoop1Board7.Checked = true;
  836. this.checkLoop1Board7.CheckState = System.Windows.Forms.CheckState.Checked;
  837. this.checkLoop1Board7.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  838. this.checkLoop1Board7.Location = new System.Drawing.Point(16, 145);
  839. this.checkLoop1Board7.Name = "checkLoop1Board7";
  840. this.checkLoop1Board7.Size = new System.Drawing.Size(15, 14);
  841. this.checkLoop1Board7.TabIndex = 34;
  842. this.checkLoop1Board7.UseVisualStyleBackColor = false;
  843. //
  844. // checkLoop0Board7
  845. //
  846. this.checkLoop0Board7.AutoSize = true;
  847. this.checkLoop0Board7.BackColor = System.Drawing.Color.Transparent;
  848. this.checkLoop0Board7.Checked = true;
  849. this.checkLoop0Board7.CheckState = System.Windows.Forms.CheckState.Checked;
  850. this.checkLoop0Board7.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  851. this.checkLoop0Board7.Location = new System.Drawing.Point(16, 100);
  852. this.checkLoop0Board7.Name = "checkLoop0Board7";
  853. this.checkLoop0Board7.Size = new System.Drawing.Size(15, 14);
  854. this.checkLoop0Board7.TabIndex = 33;
  855. this.checkLoop0Board7.UseVisualStyleBackColor = false;
  856. //
  857. // panelBoard6
  858. //
  859. this.panelBoard6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard6.BackgroundImage")));
  860. this.panelBoard6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  861. this.panelBoard6.Controls.Add(this.label8);
  862. this.panelBoard6.Controls.Add(this.checkLoop0Board6);
  863. this.panelBoard6.Controls.Add(this.checkLoop1Board6);
  864. this.panelBoard6.Location = new System.Drawing.Point(187, 292);
  865. this.panelBoard6.Name = "panelBoard6";
  866. this.panelBoard6.Size = new System.Drawing.Size(103, 177);
  867. this.panelBoard6.TabIndex = 140;
  868. //
  869. // label8
  870. //
  871. this.label8.AutoSize = true;
  872. this.label8.BackColor = System.Drawing.Color.Transparent;
  873. this.label8.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  874. this.label8.Location = new System.Drawing.Point(39, 17);
  875. this.label8.Name = "label8";
  876. this.label8.Size = new System.Drawing.Size(22, 21);
  877. this.label8.TabIndex = 218;
  878. this.label8.Text = "6";
  879. //
  880. // checkLoop0Board6
  881. //
  882. this.checkLoop0Board6.AutoSize = true;
  883. this.checkLoop0Board6.BackColor = System.Drawing.Color.Transparent;
  884. this.checkLoop0Board6.Checked = true;
  885. this.checkLoop0Board6.CheckState = System.Windows.Forms.CheckState.Checked;
  886. this.checkLoop0Board6.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  887. this.checkLoop0Board6.Location = new System.Drawing.Point(16, 100);
  888. this.checkLoop0Board6.Name = "checkLoop0Board6";
  889. this.checkLoop0Board6.Size = new System.Drawing.Size(15, 14);
  890. this.checkLoop0Board6.TabIndex = 33;
  891. this.checkLoop0Board6.UseVisualStyleBackColor = false;
  892. //
  893. // checkLoop1Board6
  894. //
  895. this.checkLoop1Board6.AutoSize = true;
  896. this.checkLoop1Board6.BackColor = System.Drawing.Color.Transparent;
  897. this.checkLoop1Board6.Checked = true;
  898. this.checkLoop1Board6.CheckState = System.Windows.Forms.CheckState.Checked;
  899. this.checkLoop1Board6.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  900. this.checkLoop1Board6.Location = new System.Drawing.Point(16, 145);
  901. this.checkLoop1Board6.Name = "checkLoop1Board6";
  902. this.checkLoop1Board6.Size = new System.Drawing.Size(15, 14);
  903. this.checkLoop1Board6.TabIndex = 34;
  904. this.checkLoop1Board6.UseVisualStyleBackColor = false;
  905. //
  906. // panelBoard5
  907. //
  908. this.panelBoard5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard5.BackgroundImage")));
  909. this.panelBoard5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  910. this.panelBoard5.Controls.Add(this.label7);
  911. this.panelBoard5.Controls.Add(this.checkLoop1Board5);
  912. this.panelBoard5.Controls.Add(this.checkLoop0Board5);
  913. this.panelBoard5.Location = new System.Drawing.Point(791, 66);
  914. this.panelBoard5.Name = "panelBoard5";
  915. this.panelBoard5.Size = new System.Drawing.Size(103, 177);
  916. this.panelBoard5.TabIndex = 139;
  917. //
  918. // label7
  919. //
  920. this.label7.AutoSize = true;
  921. this.label7.BackColor = System.Drawing.Color.Transparent;
  922. this.label7.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  923. this.label7.Location = new System.Drawing.Point(39, 17);
  924. this.label7.Name = "label7";
  925. this.label7.Size = new System.Drawing.Size(22, 21);
  926. this.label7.TabIndex = 218;
  927. this.label7.Text = "5";
  928. //
  929. // checkLoop1Board5
  930. //
  931. this.checkLoop1Board5.AutoSize = true;
  932. this.checkLoop1Board5.BackColor = System.Drawing.Color.Transparent;
  933. this.checkLoop1Board5.Checked = true;
  934. this.checkLoop1Board5.CheckState = System.Windows.Forms.CheckState.Checked;
  935. this.checkLoop1Board5.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  936. this.checkLoop1Board5.Location = new System.Drawing.Point(16, 145);
  937. this.checkLoop1Board5.Name = "checkLoop1Board5";
  938. this.checkLoop1Board5.Size = new System.Drawing.Size(15, 14);
  939. this.checkLoop1Board5.TabIndex = 34;
  940. this.checkLoop1Board5.UseVisualStyleBackColor = false;
  941. //
  942. // checkLoop0Board5
  943. //
  944. this.checkLoop0Board5.AutoSize = true;
  945. this.checkLoop0Board5.BackColor = System.Drawing.Color.Transparent;
  946. this.checkLoop0Board5.Checked = true;
  947. this.checkLoop0Board5.CheckState = System.Windows.Forms.CheckState.Checked;
  948. this.checkLoop0Board5.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  949. this.checkLoop0Board5.Location = new System.Drawing.Point(16, 100);
  950. this.checkLoop0Board5.Name = "checkLoop0Board5";
  951. this.checkLoop0Board5.Size = new System.Drawing.Size(15, 14);
  952. this.checkLoop0Board5.TabIndex = 33;
  953. this.checkLoop0Board5.UseVisualStyleBackColor = false;
  954. //
  955. // panelBoard4
  956. //
  957. this.panelBoard4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard4.BackgroundImage")));
  958. this.panelBoard4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  959. this.panelBoard4.Controls.Add(this.label6);
  960. this.panelBoard4.Controls.Add(this.checkLoop0Board4);
  961. this.panelBoard4.Controls.Add(this.checkLoop1Board4);
  962. this.panelBoard4.Location = new System.Drawing.Point(640, 66);
  963. this.panelBoard4.Name = "panelBoard4";
  964. this.panelBoard4.Size = new System.Drawing.Size(103, 177);
  965. this.panelBoard4.TabIndex = 138;
  966. //
  967. // label6
  968. //
  969. this.label6.AutoSize = true;
  970. this.label6.BackColor = System.Drawing.Color.Transparent;
  971. this.label6.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  972. this.label6.Location = new System.Drawing.Point(39, 17);
  973. this.label6.Name = "label6";
  974. this.label6.Size = new System.Drawing.Size(22, 21);
  975. this.label6.TabIndex = 218;
  976. this.label6.Text = "4";
  977. //
  978. // checkLoop0Board4
  979. //
  980. this.checkLoop0Board4.AutoSize = true;
  981. this.checkLoop0Board4.BackColor = System.Drawing.Color.Transparent;
  982. this.checkLoop0Board4.Checked = true;
  983. this.checkLoop0Board4.CheckState = System.Windows.Forms.CheckState.Checked;
  984. this.checkLoop0Board4.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  985. this.checkLoop0Board4.Location = new System.Drawing.Point(16, 100);
  986. this.checkLoop0Board4.Name = "checkLoop0Board4";
  987. this.checkLoop0Board4.Size = new System.Drawing.Size(15, 14);
  988. this.checkLoop0Board4.TabIndex = 33;
  989. this.checkLoop0Board4.UseVisualStyleBackColor = false;
  990. //
  991. // checkLoop1Board4
  992. //
  993. this.checkLoop1Board4.AutoSize = true;
  994. this.checkLoop1Board4.BackColor = System.Drawing.Color.Transparent;
  995. this.checkLoop1Board4.Checked = true;
  996. this.checkLoop1Board4.CheckState = System.Windows.Forms.CheckState.Checked;
  997. this.checkLoop1Board4.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  998. this.checkLoop1Board4.Location = new System.Drawing.Point(16, 145);
  999. this.checkLoop1Board4.Name = "checkLoop1Board4";
  1000. this.checkLoop1Board4.Size = new System.Drawing.Size(15, 14);
  1001. this.checkLoop1Board4.TabIndex = 34;
  1002. this.checkLoop1Board4.UseVisualStyleBackColor = false;
  1003. //
  1004. // panelBoard3
  1005. //
  1006. this.panelBoard3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard3.BackgroundImage")));
  1007. this.panelBoard3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1008. this.panelBoard3.Controls.Add(this.label5);
  1009. this.panelBoard3.Controls.Add(this.checkLoop1Board3);
  1010. this.panelBoard3.Controls.Add(this.checkLoop0Board3);
  1011. this.panelBoard3.Location = new System.Drawing.Point(489, 66);
  1012. this.panelBoard3.Name = "panelBoard3";
  1013. this.panelBoard3.Size = new System.Drawing.Size(103, 177);
  1014. this.panelBoard3.TabIndex = 137;
  1015. //
  1016. // label5
  1017. //
  1018. this.label5.AutoSize = true;
  1019. this.label5.BackColor = System.Drawing.Color.Transparent;
  1020. this.label5.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  1021. this.label5.Location = new System.Drawing.Point(39, 17);
  1022. this.label5.Name = "label5";
  1023. this.label5.Size = new System.Drawing.Size(22, 21);
  1024. this.label5.TabIndex = 219;
  1025. this.label5.Text = "3";
  1026. //
  1027. // checkLoop1Board3
  1028. //
  1029. this.checkLoop1Board3.AutoSize = true;
  1030. this.checkLoop1Board3.BackColor = System.Drawing.Color.Transparent;
  1031. this.checkLoop1Board3.Checked = true;
  1032. this.checkLoop1Board3.CheckState = System.Windows.Forms.CheckState.Checked;
  1033. this.checkLoop1Board3.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1034. this.checkLoop1Board3.Location = new System.Drawing.Point(16, 145);
  1035. this.checkLoop1Board3.Name = "checkLoop1Board3";
  1036. this.checkLoop1Board3.Size = new System.Drawing.Size(15, 14);
  1037. this.checkLoop1Board3.TabIndex = 34;
  1038. this.checkLoop1Board3.UseVisualStyleBackColor = false;
  1039. //
  1040. // checkLoop0Board3
  1041. //
  1042. this.checkLoop0Board3.AutoSize = true;
  1043. this.checkLoop0Board3.BackColor = System.Drawing.Color.Transparent;
  1044. this.checkLoop0Board3.Checked = true;
  1045. this.checkLoop0Board3.CheckState = System.Windows.Forms.CheckState.Checked;
  1046. this.checkLoop0Board3.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1047. this.checkLoop0Board3.Location = new System.Drawing.Point(16, 100);
  1048. this.checkLoop0Board3.Name = "checkLoop0Board3";
  1049. this.checkLoop0Board3.Size = new System.Drawing.Size(15, 14);
  1050. this.checkLoop0Board3.TabIndex = 33;
  1051. this.checkLoop0Board3.UseVisualStyleBackColor = false;
  1052. //
  1053. // panelBoard2
  1054. //
  1055. this.panelBoard2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panelBoard2.BackgroundImage")));
  1056. this.panelBoard2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1057. this.panelBoard2.Controls.Add(this.label2);
  1058. this.panelBoard2.Controls.Add(this.checkLoop0Board2);
  1059. this.panelBoard2.Controls.Add(this.checkLoop1Board2);
  1060. this.panelBoard2.Location = new System.Drawing.Point(338, 66);
  1061. this.panelBoard2.Name = "panelBoard2";
  1062. this.panelBoard2.Size = new System.Drawing.Size(103, 177);
  1063. this.panelBoard2.TabIndex = 136;
  1064. //
  1065. // label2
  1066. //
  1067. this.label2.AutoSize = true;
  1068. this.label2.BackColor = System.Drawing.Color.Transparent;
  1069. this.label2.Font = new System.Drawing.Font("돋움", 15.75F, System.Drawing.FontStyle.Bold);
  1070. this.label2.Location = new System.Drawing.Point(39, 17);
  1071. this.label2.Name = "label2";
  1072. this.label2.Size = new System.Drawing.Size(22, 21);
  1073. this.label2.TabIndex = 218;
  1074. this.label2.Text = "2";
  1075. //
  1076. // checkLoop0Board2
  1077. //
  1078. this.checkLoop0Board2.AutoSize = true;
  1079. this.checkLoop0Board2.BackColor = System.Drawing.Color.Transparent;
  1080. this.checkLoop0Board2.Checked = true;
  1081. this.checkLoop0Board2.CheckState = System.Windows.Forms.CheckState.Checked;
  1082. this.checkLoop0Board2.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1083. this.checkLoop0Board2.Location = new System.Drawing.Point(16, 100);
  1084. this.checkLoop0Board2.Name = "checkLoop0Board2";
  1085. this.checkLoop0Board2.Size = new System.Drawing.Size(15, 14);
  1086. this.checkLoop0Board2.TabIndex = 33;
  1087. this.checkLoop0Board2.UseVisualStyleBackColor = false;
  1088. //
  1089. // checkLoop1Board2
  1090. //
  1091. this.checkLoop1Board2.AutoSize = true;
  1092. this.checkLoop1Board2.BackColor = System.Drawing.Color.Transparent;
  1093. this.checkLoop1Board2.Checked = true;
  1094. this.checkLoop1Board2.CheckState = System.Windows.Forms.CheckState.Checked;
  1095. this.checkLoop1Board2.Font = new System.Drawing.Font("굴림", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1096. this.checkLoop1Board2.Location = new System.Drawing.Point(16, 145);
  1097. this.checkLoop1Board2.Name = "checkLoop1Board2";
  1098. this.checkLoop1Board2.Size = new System.Drawing.Size(15, 14);
  1099. this.checkLoop1Board2.TabIndex = 34;
  1100. this.checkLoop1Board2.UseVisualStyleBackColor = false;
  1101. //
  1102. // btnBoardSave
  1103. //
  1104. this.btnBoardSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnBoardSave.BackgroundImage")));
  1105. this.btnBoardSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1106. this.btnBoardSave.FlatAppearance.BorderSize = 0;
  1107. this.btnBoardSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1108. this.btnBoardSave.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1109. this.btnBoardSave.ForeColor = System.Drawing.Color.White;
  1110. this.btnBoardSave.Location = new System.Drawing.Point(878, 15);
  1111. this.btnBoardSave.Name = "btnBoardSave";
  1112. this.btnBoardSave.Size = new System.Drawing.Size(183, 40);
  1113. this.btnBoardSave.TabIndex = 134;
  1114. this.btnBoardSave.Text = "적용하기";
  1115. this.btnBoardSave.UseVisualStyleBackColor = true;
  1116. this.btnBoardSave.Click += new System.EventHandler(this.btnBoardSave_Click);
  1117. //
  1118. // tabPage_Repeater
  1119. //
  1120. this.tabPage_Repeater.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage_Repeater.BackgroundImage")));
  1121. this.tabPage_Repeater.Controls.Add(this.label_UI_CircuitCut);
  1122. this.tabPage_Repeater.Controls.Add(this.label_UI_CircuitCut_Color);
  1123. this.tabPage_Repeater.Controls.Add(this.label_UI_RepeaterCut);
  1124. this.tabPage_Repeater.Controls.Add(this.label_UI_RepeaterCut_Color);
  1125. this.tabPage_Repeater.Controls.Add(this.label_UI_Unuse);
  1126. this.tabPage_Repeater.Controls.Add(this.label_UI_Unuse_Color);
  1127. this.tabPage_Repeater.Controls.Add(this.label_UI_Use);
  1128. this.tabPage_Repeater.Controls.Add(this.label_UI_Comment);
  1129. this.tabPage_Repeater.Controls.Add(this.label_UI_Use_Color);
  1130. this.tabPage_Repeater.Controls.Add(this.label_Comment);
  1131. this.tabPage_Repeater.Controls.Add(this.label20);
  1132. this.tabPage_Repeater.Controls.Add(this.btnOK);
  1133. this.tabPage_Repeater.Controls.Add(this.btnRepeaterAllInfo);
  1134. this.tabPage_Repeater.Controls.Add(this.btnInputOpen);
  1135. this.tabPage_Repeater.Controls.Add(this.label18);
  1136. this.tabPage_Repeater.Controls.Add(this.txtLoopNo);
  1137. this.tabPage_Repeater.Controls.Add(this.txtBoardID);
  1138. this.tabPage_Repeater.Controls.Add(this.txtThisReceiverID2);
  1139. this.tabPage_Repeater.Controls.Add(this.groupRepeater);
  1140. this.tabPage_Repeater.Location = new System.Drawing.Point(4, 26);
  1141. this.tabPage_Repeater.Name = "tabPage_Repeater";
  1142. this.tabPage_Repeater.Padding = new System.Windows.Forms.Padding(3);
  1143. this.tabPage_Repeater.Size = new System.Drawing.Size(1072, 728);
  1144. this.tabPage_Repeater.TabIndex = 1;
  1145. this.tabPage_Repeater.Text = "중계기차단";
  1146. this.tabPage_Repeater.UseVisualStyleBackColor = true;
  1147. //
  1148. // label_UI_CircuitCut
  1149. //
  1150. this.label_UI_CircuitCut.AutoSize = true;
  1151. this.label_UI_CircuitCut.Font = new System.Drawing.Font("굴림", 9F);
  1152. this.label_UI_CircuitCut.Location = new System.Drawing.Point(981, 231);
  1153. this.label_UI_CircuitCut.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  1154. this.label_UI_CircuitCut.Name = "label_UI_CircuitCut";
  1155. this.label_UI_CircuitCut.Size = new System.Drawing.Size(53, 12);
  1156. this.label_UI_CircuitCut.TabIndex = 113;
  1157. this.label_UI_CircuitCut.Text = "회로차단";
  1158. //
  1159. // label_UI_CircuitCut_Color
  1160. //
  1161. this.label_UI_CircuitCut_Color.BackColor = System.Drawing.Color.Pink;
  1162. this.label_UI_CircuitCut_Color.Location = new System.Drawing.Point(961, 229);
  1163. this.label_UI_CircuitCut_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1164. this.label_UI_CircuitCut_Color.Name = "label_UI_CircuitCut_Color";
  1165. this.label_UI_CircuitCut_Color.Size = new System.Drawing.Size(15, 17);
  1166. this.label_UI_CircuitCut_Color.TabIndex = 112;
  1167. //
  1168. // label_UI_RepeaterCut
  1169. //
  1170. this.label_UI_RepeaterCut.AutoSize = true;
  1171. this.label_UI_RepeaterCut.Font = new System.Drawing.Font("굴림", 9F);
  1172. this.label_UI_RepeaterCut.Location = new System.Drawing.Point(981, 210);
  1173. this.label_UI_RepeaterCut.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  1174. this.label_UI_RepeaterCut.Name = "label_UI_RepeaterCut";
  1175. this.label_UI_RepeaterCut.Size = new System.Drawing.Size(65, 12);
  1176. this.label_UI_RepeaterCut.TabIndex = 111;
  1177. this.label_UI_RepeaterCut.Text = "중계기차단";
  1178. //
  1179. // label_UI_RepeaterCut_Color
  1180. //
  1181. this.label_UI_RepeaterCut_Color.BackColor = System.Drawing.Color.Silver;
  1182. this.label_UI_RepeaterCut_Color.Location = new System.Drawing.Point(961, 208);
  1183. this.label_UI_RepeaterCut_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1184. this.label_UI_RepeaterCut_Color.Name = "label_UI_RepeaterCut_Color";
  1185. this.label_UI_RepeaterCut_Color.Size = new System.Drawing.Size(15, 17);
  1186. this.label_UI_RepeaterCut_Color.TabIndex = 110;
  1187. //
  1188. // label_UI_Unuse
  1189. //
  1190. this.label_UI_Unuse.AutoSize = true;
  1191. this.label_UI_Unuse.Font = new System.Drawing.Font("굴림", 9F);
  1192. this.label_UI_Unuse.Location = new System.Drawing.Point(981, 189);
  1193. this.label_UI_Unuse.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  1194. this.label_UI_Unuse.Name = "label_UI_Unuse";
  1195. this.label_UI_Unuse.Size = new System.Drawing.Size(41, 12);
  1196. this.label_UI_Unuse.TabIndex = 109;
  1197. this.label_UI_Unuse.Text = "비사용";
  1198. //
  1199. // label_UI_Unuse_Color
  1200. //
  1201. this.label_UI_Unuse_Color.BackColor = System.Drawing.Color.White;
  1202. this.label_UI_Unuse_Color.Location = new System.Drawing.Point(961, 187);
  1203. this.label_UI_Unuse_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1204. this.label_UI_Unuse_Color.Name = "label_UI_Unuse_Color";
  1205. this.label_UI_Unuse_Color.Size = new System.Drawing.Size(15, 17);
  1206. this.label_UI_Unuse_Color.TabIndex = 108;
  1207. //
  1208. // label_UI_Use
  1209. //
  1210. this.label_UI_Use.AutoSize = true;
  1211. this.label_UI_Use.Font = new System.Drawing.Font("굴림", 9F);
  1212. this.label_UI_Use.Location = new System.Drawing.Point(981, 169);
  1213. this.label_UI_Use.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  1214. this.label_UI_Use.Name = "label_UI_Use";
  1215. this.label_UI_Use.Size = new System.Drawing.Size(29, 12);
  1216. this.label_UI_Use.TabIndex = 107;
  1217. this.label_UI_Use.Text = "사용";
  1218. //
  1219. // label_UI_Comment
  1220. //
  1221. this.label_UI_Comment.AutoSize = true;
  1222. this.label_UI_Comment.Font = new System.Drawing.Font("굴림", 9F);
  1223. this.label_UI_Comment.Location = new System.Drawing.Point(949, 146);
  1224. this.label_UI_Comment.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  1225. this.label_UI_Comment.Name = "label_UI_Comment";
  1226. this.label_UI_Comment.Size = new System.Drawing.Size(73, 12);
  1227. this.label_UI_Comment.TabIndex = 106;
  1228. this.label_UI_Comment.Text = "중계기범례 :";
  1229. //
  1230. // label_UI_Use_Color
  1231. //
  1232. this.label_UI_Use_Color.BackColor = System.Drawing.Color.Aqua;
  1233. this.label_UI_Use_Color.Location = new System.Drawing.Point(961, 167);
  1234. this.label_UI_Use_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1235. this.label_UI_Use_Color.Name = "label_UI_Use_Color";
  1236. this.label_UI_Use_Color.Size = new System.Drawing.Size(15, 17);
  1237. this.label_UI_Use_Color.TabIndex = 105;
  1238. //
  1239. // label_Comment
  1240. //
  1241. this.label_Comment.AutoSize = true;
  1242. this.label_Comment.ForeColor = System.Drawing.Color.LightCoral;
  1243. this.label_Comment.Location = new System.Drawing.Point(120, 35);
  1244. this.label_Comment.Name = "label_Comment";
  1245. this.label_Comment.Size = new System.Drawing.Size(40, 16);
  1246. this.label_Comment.TabIndex = 74;
  1247. this.label_Comment.Text = "상태";
  1248. this.label_Comment.Visible = false;
  1249. //
  1250. // label20
  1251. //
  1252. this.label20.AutoSize = true;
  1253. this.label20.ForeColor = System.Drawing.Color.LightCoral;
  1254. this.label20.Location = new System.Drawing.Point(26, 16);
  1255. this.label20.Name = "label20";
  1256. this.label20.Size = new System.Drawing.Size(23, 16);
  1257. this.label20.TabIndex = 73;
  1258. this.label20.Text = " ";
  1259. this.label20.Visible = false;
  1260. //
  1261. // btnOK
  1262. //
  1263. this.btnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOK.BackgroundImage")));
  1264. this.btnOK.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1265. this.btnOK.FlatAppearance.BorderSize = 0;
  1266. this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1267. this.btnOK.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);
  1268. this.btnOK.ForeColor = System.Drawing.Color.White;
  1269. this.btnOK.Location = new System.Drawing.Point(331, 63);
  1270. this.btnOK.Margin = new System.Windows.Forms.Padding(4);
  1271. this.btnOK.Name = "btnOK";
  1272. this.btnOK.Size = new System.Drawing.Size(83, 33);
  1273. this.btnOK.TabIndex = 71;
  1274. this.btnOK.TabStop = false;
  1275. this.btnOK.Text = "확인";
  1276. this.btnOK.UseVisualStyleBackColor = true;
  1277. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  1278. //
  1279. // btnRepeaterAllInfo
  1280. //
  1281. this.btnRepeaterAllInfo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnRepeaterAllInfo.BackgroundImage")));
  1282. this.btnRepeaterAllInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1283. this.btnRepeaterAllInfo.FlatAppearance.BorderSize = 0;
  1284. this.btnRepeaterAllInfo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1285. this.btnRepeaterAllInfo.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);
  1286. this.btnRepeaterAllInfo.ForeColor = System.Drawing.Color.White;
  1287. this.btnRepeaterAllInfo.Location = new System.Drawing.Point(782, 63);
  1288. this.btnRepeaterAllInfo.Margin = new System.Windows.Forms.Padding(4);
  1289. this.btnRepeaterAllInfo.Name = "btnRepeaterAllInfo";
  1290. this.btnRepeaterAllInfo.Size = new System.Drawing.Size(159, 33);
  1291. this.btnRepeaterAllInfo.TabIndex = 72;
  1292. this.btnRepeaterAllInfo.TabStop = false;
  1293. this.btnRepeaterAllInfo.Text = "읽기명령";
  1294. this.btnRepeaterAllInfo.UseVisualStyleBackColor = true;
  1295. this.btnRepeaterAllInfo.Click += new System.EventHandler(this.btnRepeaterAllInfo_Click);
  1296. //
  1297. // btnInputOpen
  1298. //
  1299. this.btnInputOpen.BackColor = System.Drawing.Color.LightGray;
  1300. this.btnInputOpen.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnInputOpen.BackgroundImage")));
  1301. this.btnInputOpen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1302. this.btnInputOpen.FlatAppearance.BorderSize = 0;
  1303. this.btnInputOpen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1304. this.btnInputOpen.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);
  1305. this.btnInputOpen.ForeColor = System.Drawing.Color.White;
  1306. this.btnInputOpen.Location = new System.Drawing.Point(119, 63);
  1307. this.btnInputOpen.Name = "btnInputOpen";
  1308. this.btnInputOpen.Size = new System.Drawing.Size(104, 33);
  1309. this.btnInputOpen.TabIndex = 70;
  1310. this.btnInputOpen.TabStop = false;
  1311. this.btnInputOpen.Text = "계통검색";
  1312. this.btnInputOpen.UseVisualStyleBackColor = false;
  1313. this.btnInputOpen.Click += new System.EventHandler(this.btnInputOpen_Click);
  1314. //
  1315. // label18
  1316. //
  1317. this.label18.AutoSize = true;
  1318. this.label18.Font = new System.Drawing.Font("돋움", 10F, System.Drawing.FontStyle.Bold);
  1319. this.label18.Location = new System.Drawing.Point(433, 75);
  1320. this.label18.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  1321. this.label18.Name = "label18";
  1322. this.label18.Size = new System.Drawing.Size(244, 14);
  1323. this.label18.TabIndex = 69;
  1324. this.label18.Text = "01:수신기-01:통신보드-1:LOOP";
  1325. //
  1326. // txtLoopNo
  1327. //
  1328. this.txtLoopNo.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1329. this.txtLoopNo.Location = new System.Drawing.Point(301, 63);
  1330. this.txtLoopNo.MaxLength = 1;
  1331. this.txtLoopNo.Name = "txtLoopNo";
  1332. this.txtLoopNo.Size = new System.Drawing.Size(30, 32);
  1333. this.txtLoopNo.TabIndex = 68;
  1334. this.txtLoopNo.Text = "0";
  1335. this.txtLoopNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1336. //
  1337. // txtBoardID
  1338. //
  1339. this.txtBoardID.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1340. this.txtBoardID.Location = new System.Drawing.Point(262, 63);
  1341. this.txtBoardID.MaxLength = 2;
  1342. this.txtBoardID.Name = "txtBoardID";
  1343. this.txtBoardID.Size = new System.Drawing.Size(39, 32);
  1344. this.txtBoardID.TabIndex = 67;
  1345. this.txtBoardID.Text = "01";
  1346. this.txtBoardID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1347. //
  1348. // txtThisReceiverID2
  1349. //
  1350. this.txtThisReceiverID2.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1351. this.txtThisReceiverID2.Location = new System.Drawing.Point(223, 63);
  1352. this.txtThisReceiverID2.MaxLength = 2;
  1353. this.txtThisReceiverID2.Name = "txtThisReceiverID2";
  1354. this.txtThisReceiverID2.ReadOnly = true;
  1355. this.txtThisReceiverID2.Size = new System.Drawing.Size(39, 32);
  1356. this.txtThisReceiverID2.TabIndex = 66;
  1357. this.txtThisReceiverID2.Text = "01";
  1358. this.txtThisReceiverID2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1359. //
  1360. // groupRepeater
  1361. //
  1362. this.groupRepeater.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));
  1363. this.groupRepeater.Controls.Add(this.label21);
  1364. this.groupRepeater.Controls.Add(this.btnOutWrite);
  1365. this.groupRepeater.Controls.Add(this.btnInWrite);
  1366. this.groupRepeater.Controls.Add(this.panelRepeaterSize);
  1367. this.groupRepeater.Controls.Add(this.dataGridView2);
  1368. this.groupRepeater.Controls.Add(this.label4);
  1369. this.groupRepeater.Controls.Add(this.label22);
  1370. this.groupRepeater.Controls.Add(this.chkDeviceCutFlag);
  1371. this.groupRepeater.Controls.Add(this.txtDeviceMemo);
  1372. this.groupRepeater.Controls.Add(this.txtPositionName);
  1373. this.groupRepeater.Controls.Add(this.txtDeviceTypeName);
  1374. this.groupRepeater.Controls.Add(this.label70);
  1375. this.groupRepeater.Controls.Add(this.panel2);
  1376. this.groupRepeater.Controls.Add(this.label74);
  1377. this.groupRepeater.Controls.Add(this.label73);
  1378. this.groupRepeater.Location = new System.Drawing.Point(123, 115);
  1379. this.groupRepeater.Name = "groupRepeater";
  1380. this.groupRepeater.Size = new System.Drawing.Size(818, 478);
  1381. this.groupRepeater.TabIndex = 45;
  1382. this.groupRepeater.TabStop = false;
  1383. this.groupRepeater.Text = "중계기(1~127)";
  1384. //
  1385. // label21
  1386. //
  1387. this.label21.AutoSize = true;
  1388. this.label21.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1389. this.label21.Location = new System.Drawing.Point(88, 410);
  1390. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1391. this.label21.Name = "label21";
  1392. this.label21.Size = new System.Drawing.Size(167, 15);
  1393. this.label21.TabIndex = 74;
  1394. this.label21.Text = "C:연감지기, D:열감지기";
  1395. //
  1396. // btnOutWrite
  1397. //
  1398. this.btnOutWrite.BackColor = System.Drawing.Color.MintCream;
  1399. this.btnOutWrite.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1400. this.btnOutWrite.Location = new System.Drawing.Point(704, 333);
  1401. this.btnOutWrite.Name = "btnOutWrite";
  1402. this.btnOutWrite.Size = new System.Drawing.Size(50, 49);
  1403. this.btnOutWrite.TabIndex = 73;
  1404. this.btnOutWrite.Text = "쓰기";
  1405. this.btnOutWrite.UseVisualStyleBackColor = false;
  1406. this.btnOutWrite.Click += new System.EventHandler(this.btnOutWrite_Click);
  1407. //
  1408. // btnInWrite
  1409. //
  1410. this.btnInWrite.BackColor = System.Drawing.Color.Gold;
  1411. this.btnInWrite.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1412. this.btnInWrite.Location = new System.Drawing.Point(768, 296);
  1413. this.btnInWrite.Name = "btnInWrite";
  1414. this.btnInWrite.Size = new System.Drawing.Size(50, 25);
  1415. this.btnInWrite.TabIndex = 72;
  1416. this.btnInWrite.Text = "쓰기";
  1417. this.btnInWrite.UseVisualStyleBackColor = false;
  1418. this.btnInWrite.Visible = false;
  1419. this.btnInWrite.Click += new System.EventHandler(this.btnInWrite_Click);
  1420. //
  1421. // panelRepeaterSize
  1422. //
  1423. this.panelRepeaterSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1424. this.panelRepeaterSize.Controls.Add(this.dataGridView1);
  1425. this.panelRepeaterSize.Location = new System.Drawing.Point(51, 31);
  1426. this.panelRepeaterSize.Name = "panelRepeaterSize";
  1427. this.panelRepeaterSize.Size = new System.Drawing.Size(703, 303);
  1428. this.panelRepeaterSize.TabIndex = 71;
  1429. //
  1430. // dataGridView1
  1431. //
  1432. this.dataGridView1.AllowUserToAddRows = false;
  1433. this.dataGridView1.AllowUserToDeleteRows = false;
  1434. this.dataGridView1.AllowUserToResizeColumns = false;
  1435. this.dataGridView1.AllowUserToResizeRows = false;
  1436. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1437. this.dataGridView1.ColumnHeadersVisible = false;
  1438. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1439. this.Column1,
  1440. this.Column2,
  1441. this.Column3,
  1442. this.Column4,
  1443. this.Column5,
  1444. this.Column6,
  1445. this.Column7,
  1446. this.Column8,
  1447. this.Column9,
  1448. this.Column10});
  1449. this.dataGridView1.Location = new System.Drawing.Point(-1, -1);
  1450. this.dataGridView1.Name = "dataGridView1";
  1451. this.dataGridView1.RowHeadersVisible = false;
  1452. this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1453. this.dataGridView1.RowTemplate.Height = 23;
  1454. this.dataGridView1.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1455. this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
  1456. this.dataGridView1.Size = new System.Drawing.Size(703, 302);
  1457. this.dataGridView1.TabIndex = 1;
  1458. this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
  1459. this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
  1460. //
  1461. // Column1
  1462. //
  1463. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1464. dataGridViewCellStyle5.NullValue = "1";
  1465. this.Column1.DefaultCellStyle = dataGridViewCellStyle5;
  1466. this.Column1.HeaderText = "Column1";
  1467. this.Column1.Name = "Column1";
  1468. this.Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1469. this.Column1.Width = 70;
  1470. //
  1471. // Column2
  1472. //
  1473. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1474. dataGridViewCellStyle6.NullValue = "2";
  1475. this.Column2.DefaultCellStyle = dataGridViewCellStyle6;
  1476. this.Column2.HeaderText = "Column2";
  1477. this.Column2.Name = "Column2";
  1478. this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1479. this.Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1480. this.Column2.Width = 70;
  1481. //
  1482. // Column3
  1483. //
  1484. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1485. dataGridViewCellStyle7.NullValue = "3";
  1486. this.Column3.DefaultCellStyle = dataGridViewCellStyle7;
  1487. this.Column3.HeaderText = "Column3";
  1488. this.Column3.Name = "Column3";
  1489. this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1490. this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1491. this.Column3.Width = 70;
  1492. //
  1493. // Column4
  1494. //
  1495. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1496. dataGridViewCellStyle8.NullValue = "4";
  1497. this.Column4.DefaultCellStyle = dataGridViewCellStyle8;
  1498. this.Column4.HeaderText = "Column4";
  1499. this.Column4.Name = "Column4";
  1500. this.Column4.ReadOnly = true;
  1501. this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1502. this.Column4.Width = 70;
  1503. //
  1504. // Column5
  1505. //
  1506. this.Column5.HeaderText = "Column5";
  1507. this.Column5.Name = "Column5";
  1508. this.Column5.ReadOnly = true;
  1509. this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1510. this.Column5.Width = 70;
  1511. //
  1512. // Column6
  1513. //
  1514. this.Column6.HeaderText = "Column6";
  1515. this.Column6.Name = "Column6";
  1516. this.Column6.ReadOnly = true;
  1517. this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1518. this.Column6.Width = 70;
  1519. //
  1520. // Column7
  1521. //
  1522. this.Column7.HeaderText = "Column7";
  1523. this.Column7.Name = "Column7";
  1524. this.Column7.ReadOnly = true;
  1525. this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1526. this.Column7.Width = 70;
  1527. //
  1528. // Column8
  1529. //
  1530. this.Column8.HeaderText = "Column8";
  1531. this.Column8.Name = "Column8";
  1532. this.Column8.ReadOnly = true;
  1533. this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1534. this.Column8.Width = 70;
  1535. //
  1536. // Column9
  1537. //
  1538. this.Column9.HeaderText = "Column9";
  1539. this.Column9.Name = "Column9";
  1540. this.Column9.ReadOnly = true;
  1541. this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1542. this.Column9.Width = 70;
  1543. //
  1544. // Column10
  1545. //
  1546. this.Column10.HeaderText = "Column10";
  1547. this.Column10.Name = "Column10";
  1548. this.Column10.ReadOnly = true;
  1549. this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1550. this.Column10.Width = 70;
  1551. //
  1552. // dataGridView2
  1553. //
  1554. this.dataGridView2.AllowUserToAddRows = false;
  1555. this.dataGridView2.AllowUserToDeleteRows = false;
  1556. this.dataGridView2.AllowUserToResizeColumns = false;
  1557. this.dataGridView2.AllowUserToResizeRows = false;
  1558. this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1559. this.dataGridView2.ColumnHeadersVisible = false;
  1560. this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1561. this.Column11,
  1562. this.Column12,
  1563. this.Column13,
  1564. this.Column14});
  1565. this.dataGridView2.ImeMode = System.Windows.Forms.ImeMode.Alpha;
  1566. this.dataGridView2.Location = new System.Drawing.Point(340, 333);
  1567. this.dataGridView2.Name = "dataGridView2";
  1568. this.dataGridView2.RowHeadersVisible = false;
  1569. this.dataGridView2.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1570. this.dataGridView2.RowTemplate.Height = 23;
  1571. this.dataGridView2.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1572. this.dataGridView2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
  1573. this.dataGridView2.Size = new System.Drawing.Size(364, 49);
  1574. this.dataGridView2.TabIndex = 48;
  1575. this.dataGridView2.SelectionChanged += new System.EventHandler(this.dataGridView2_SelectionChanged);
  1576. //
  1577. // Column11
  1578. //
  1579. this.Column11.HeaderText = "Column11";
  1580. this.Column11.MaxInputLength = 1;
  1581. this.Column11.Name = "Column11";
  1582. this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1583. //
  1584. // Column12
  1585. //
  1586. this.Column12.HeaderText = "Column12";
  1587. this.Column12.MaxInputLength = 1;
  1588. this.Column12.Name = "Column12";
  1589. this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1590. //
  1591. // Column13
  1592. //
  1593. this.Column13.HeaderText = "Column13";
  1594. this.Column13.MaxInputLength = 1;
  1595. this.Column13.Name = "Column13";
  1596. this.Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1597. //
  1598. // Column14
  1599. //
  1600. this.Column14.HeaderText = "Column14";
  1601. this.Column14.MaxInputLength = 1;
  1602. this.Column14.Name = "Column14";
  1603. this.Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  1604. //
  1605. // label4
  1606. //
  1607. this.label4.BackColor = System.Drawing.Color.WhiteSmoke;
  1608. this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1609. this.label4.Location = new System.Drawing.Point(255, 409);
  1610. this.label4.Name = "label4";
  1611. this.label4.Size = new System.Drawing.Size(103, 26);
  1612. this.label4.TabIndex = 69;
  1613. this.label4.Text = "회로설명";
  1614. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1615. //
  1616. // label22
  1617. //
  1618. this.label22.BackColor = System.Drawing.Color.WhiteSmoke;
  1619. this.label22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1620. this.label22.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1621. this.label22.Location = new System.Drawing.Point(255, 384);
  1622. this.label22.Name = "label22";
  1623. this.label22.Size = new System.Drawing.Size(103, 26);
  1624. this.label22.TabIndex = 61;
  1625. this.label22.Text = "연동내용/위치";
  1626. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1627. //
  1628. // chkDeviceCutFlag
  1629. //
  1630. this.chkDeviceCutFlag.Appearance = System.Windows.Forms.Appearance.Button;
  1631. this.chkDeviceCutFlag.AutoCheck = false;
  1632. this.chkDeviceCutFlag.BackColor = System.Drawing.Color.White;
  1633. this.chkDeviceCutFlag.FlatAppearance.CheckedBackColor = System.Drawing.Color.Tomato;
  1634. this.chkDeviceCutFlag.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1635. this.chkDeviceCutFlag.Location = new System.Drawing.Point(658, 409);
  1636. this.chkDeviceCutFlag.Name = "chkDeviceCutFlag";
  1637. this.chkDeviceCutFlag.Size = new System.Drawing.Size(96, 26);
  1638. this.chkDeviceCutFlag.TabIndex = 63;
  1639. this.chkDeviceCutFlag.Text = "회로차단";
  1640. this.chkDeviceCutFlag.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1641. this.chkDeviceCutFlag.UseVisualStyleBackColor = false;
  1642. this.chkDeviceCutFlag.Click += new System.EventHandler(this.chkDeviceCutFlag_Click);
  1643. //
  1644. // txtDeviceMemo
  1645. //
  1646. this.txtDeviceMemo.Location = new System.Drawing.Point(357, 409);
  1647. this.txtDeviceMemo.Name = "txtDeviceMemo";
  1648. this.txtDeviceMemo.ReadOnly = true;
  1649. this.txtDeviceMemo.Size = new System.Drawing.Size(301, 26);
  1650. this.txtDeviceMemo.TabIndex = 70;
  1651. //
  1652. // txtPositionName
  1653. //
  1654. this.txtPositionName.Location = new System.Drawing.Point(539, 384);
  1655. this.txtPositionName.Name = "txtPositionName";
  1656. this.txtPositionName.ReadOnly = true;
  1657. this.txtPositionName.Size = new System.Drawing.Size(215, 26);
  1658. this.txtPositionName.TabIndex = 68;
  1659. //
  1660. // txtDeviceTypeName
  1661. //
  1662. this.txtDeviceTypeName.Location = new System.Drawing.Point(357, 384);
  1663. this.txtDeviceTypeName.Name = "txtDeviceTypeName";
  1664. this.txtDeviceTypeName.ReadOnly = true;
  1665. this.txtDeviceTypeName.Size = new System.Drawing.Size(183, 26);
  1666. this.txtDeviceTypeName.TabIndex = 62;
  1667. //
  1668. // label70
  1669. //
  1670. this.label70.AutoSize = true;
  1671. this.label70.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1672. this.label70.Location = new System.Drawing.Point(47, 386);
  1673. this.label70.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1674. this.label70.Name = "label70";
  1675. this.label70.Size = new System.Drawing.Size(193, 15);
  1676. this.label70.TabIndex = 54;
  1677. this.label70.Text = "타입) A:2*2회로, B:4*4회로";
  1678. //
  1679. // panel2
  1680. //
  1681. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1682. this.panel2.Controls.Add(this.chkRepeaterCut);
  1683. this.panel2.Controls.Add(this.lblRepeaterName);
  1684. this.panel2.Controls.Add(this.lblRepeaterID);
  1685. this.panel2.Location = new System.Drawing.Point(51, 333);
  1686. this.panel2.Name = "panel2";
  1687. this.panel2.Size = new System.Drawing.Size(205, 49);
  1688. this.panel2.TabIndex = 53;
  1689. //
  1690. // chkRepeaterCut
  1691. //
  1692. this.chkRepeaterCut.Appearance = System.Windows.Forms.Appearance.Button;
  1693. this.chkRepeaterCut.AutoCheck = false;
  1694. this.chkRepeaterCut.Checked = true;
  1695. this.chkRepeaterCut.CheckState = System.Windows.Forms.CheckState.Checked;
  1696. this.chkRepeaterCut.FlatAppearance.CheckedBackColor = System.Drawing.Color.Red;
  1697. this.chkRepeaterCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1698. this.chkRepeaterCut.Location = new System.Drawing.Point(109, 9);
  1699. this.chkRepeaterCut.Name = "chkRepeaterCut";
  1700. this.chkRepeaterCut.Size = new System.Drawing.Size(75, 29);
  1701. this.chkRepeaterCut.TabIndex = 56;
  1702. this.chkRepeaterCut.Text = "차 단";
  1703. this.chkRepeaterCut.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1704. this.chkRepeaterCut.UseVisualStyleBackColor = true;
  1705. this.chkRepeaterCut.Click += new System.EventHandler(this.chkRepeaterCut_Click);
  1706. //
  1707. // lblRepeaterName
  1708. //
  1709. this.lblRepeaterName.AutoSize = true;
  1710. this.lblRepeaterName.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1711. this.lblRepeaterName.Location = new System.Drawing.Point(46, 15);
  1712. this.lblRepeaterName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1713. this.lblRepeaterName.Name = "lblRepeaterName";
  1714. this.lblRepeaterName.Size = new System.Drawing.Size(56, 16);
  1715. this.lblRepeaterName.TabIndex = 55;
  1716. this.lblRepeaterName.Text = "아이디";
  1717. //
  1718. // lblRepeaterID
  1719. //
  1720. this.lblRepeaterID.AutoEllipsis = true;
  1721. this.lblRepeaterID.AutoSize = true;
  1722. this.lblRepeaterID.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1723. this.lblRepeaterID.Location = new System.Drawing.Point(13, 15);
  1724. this.lblRepeaterID.Name = "lblRepeaterID";
  1725. this.lblRepeaterID.Size = new System.Drawing.Size(35, 16);
  1726. this.lblRepeaterID.TabIndex = 49;
  1727. this.lblRepeaterID.Text = "001";
  1728. this.lblRepeaterID.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1729. //
  1730. // label74
  1731. //
  1732. this.label74.BackColor = System.Drawing.Color.MintCream;
  1733. this.label74.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1734. this.label74.Location = new System.Drawing.Point(255, 357);
  1735. this.label74.Name = "label74";
  1736. this.label74.Size = new System.Drawing.Size(86, 25);
  1737. this.label74.TabIndex = 51;
  1738. this.label74.Text = "출력회로";
  1739. this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1740. //
  1741. // label73
  1742. //
  1743. this.label73.BackColor = System.Drawing.Color.Gold;
  1744. this.label73.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1745. this.label73.Location = new System.Drawing.Point(255, 333);
  1746. this.label73.Name = "label73";
  1747. this.label73.Size = new System.Drawing.Size(86, 25);
  1748. this.label73.TabIndex = 50;
  1749. this.label73.Text = "입력회로";
  1750. this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1751. //
  1752. // ImgLstBoardUseFlag
  1753. //
  1754. this.ImgLstBoardUseFlag.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImgLstBoardUseFlag.ImageStream")));
  1755. this.ImgLstBoardUseFlag.TransparentColor = System.Drawing.Color.Transparent;
  1756. this.ImgLstBoardUseFlag.Images.SetKeyName(0, "중계반_사용.gif");
  1757. this.ImgLstBoardUseFlag.Images.SetKeyName(1, "중계반_비사용0.gif");
  1758. //
  1759. // panel_Menu
  1760. //
  1761. this.panel_Menu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
  1762. this.panel_Menu.Controls.Add(this.button_Menu_RepeaterCut);
  1763. this.panel_Menu.Controls.Add(this.button_LoopCut);
  1764. this.panel_Menu.Location = new System.Drawing.Point(0, 36);
  1765. this.panel_Menu.Margin = new System.Windows.Forms.Padding(0);
  1766. this.panel_Menu.Name = "panel_Menu";
  1767. this.panel_Menu.Size = new System.Drawing.Size(1080, 54);
  1768. this.panel_Menu.TabIndex = 169;
  1769. //
  1770. // button_Menu_RepeaterCut
  1771. //
  1772. this.button_Menu_RepeaterCut.BackgroundImage = global::FPER.Properties.Resources.탭메뉴버튼_회색_100_30;
  1773. this.button_Menu_RepeaterCut.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1774. this.button_Menu_RepeaterCut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1775. this.button_Menu_RepeaterCut.FlatAppearance.BorderSize = 0;
  1776. this.button_Menu_RepeaterCut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1777. this.button_Menu_RepeaterCut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1778. this.button_Menu_RepeaterCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1779. this.button_Menu_RepeaterCut.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1780. this.button_Menu_RepeaterCut.ForeColor = System.Drawing.Color.White;
  1781. this.button_Menu_RepeaterCut.Location = new System.Drawing.Point(590, 11);
  1782. this.button_Menu_RepeaterCut.Name = "button_Menu_RepeaterCut";
  1783. this.button_Menu_RepeaterCut.Size = new System.Drawing.Size(120, 31);
  1784. this.button_Menu_RepeaterCut.TabIndex = 0;
  1785. this.button_Menu_RepeaterCut.TabStop = false;
  1786. this.button_Menu_RepeaterCut.Text = "중계기차단";
  1787. this.button_Menu_RepeaterCut.UseVisualStyleBackColor = true;
  1788. this.button_Menu_RepeaterCut.Click += new System.EventHandler(this.button_Menu_RepeaterCut_Click);
  1789. //
  1790. // button_LoopCut
  1791. //
  1792. this.button_LoopCut.BackgroundImage = global::FPER.Properties.Resources.탭메뉴버튼_회색_100_30;
  1793. this.button_LoopCut.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1794. this.button_LoopCut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1795. this.button_LoopCut.FlatAppearance.BorderSize = 0;
  1796. this.button_LoopCut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1797. this.button_LoopCut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1798. this.button_LoopCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1799. this.button_LoopCut.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1800. this.button_LoopCut.ForeColor = System.Drawing.Color.White;
  1801. this.button_LoopCut.Location = new System.Drawing.Point(400, 11);
  1802. this.button_LoopCut.Name = "button_LoopCut";
  1803. this.button_LoopCut.Size = new System.Drawing.Size(120, 31);
  1804. this.button_LoopCut.TabIndex = 0;
  1805. this.button_LoopCut.TabStop = false;
  1806. this.button_LoopCut.Text = "계통차단";
  1807. this.button_LoopCut.UseVisualStyleBackColor = true;
  1808. this.button_LoopCut.Click += new System.EventHandler(this.button_LoopCut_Click);
  1809. //
  1810. // imageList_BoardUseFlag
  1811. //
  1812. this.imageList_BoardUseFlag.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_BoardUseFlag.ImageStream")));
  1813. this.imageList_BoardUseFlag.TransparentColor = System.Drawing.Color.Transparent;
  1814. this.imageList_BoardUseFlag.Images.SetKeyName(0, "중계반_배경_짙은회색_오른쪽_103_177.JPG");
  1815. this.imageList_BoardUseFlag.Images.SetKeyName(1, "중계반_배경_옅은회색_오른쪽_103_177.JPG");
  1816. this.imageList_BoardUseFlag.Images.SetKeyName(2, "중계반_배경_짙음옅음_오른쪽_103_177.JPG");
  1817. //
  1818. // frmControlMode
  1819. //
  1820. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  1821. this.BackColor = System.Drawing.Color.WhiteSmoke;
  1822. this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
  1823. this.ClientSize = new System.Drawing.Size(1080, 824);
  1824. this.Controls.Add(this.panel_Menu);
  1825. this.Controls.Add(this.tabControl_Main);
  1826. this.Controls.Add(this.panel1);
  1827. this.Font = new System.Drawing.Font("굴림", 12F);
  1828. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  1829. this.Margin = new System.Windows.Forms.Padding(4);
  1830. this.MaximizeBox = false;
  1831. this.MinimizeBox = false;
  1832. this.Name = "frmControlMode";
  1833. this.ShowIcon = false;
  1834. this.ShowInTaskbar = false;
  1835. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  1836. this.Text = "제어";
  1837. this.Activated += new System.EventHandler(this.frmControlMode_Activated);
  1838. this.Load += new System.EventHandler(this.frmControlMode_Load);
  1839. this.Disposed += new System.EventHandler(this.frmControlMode_Disposed);
  1840. this.panel1.ResumeLayout(false);
  1841. this.panel1.PerformLayout();
  1842. this.tabControl_Main.ResumeLayout(false);
  1843. this.tabPage_Board.ResumeLayout(false);
  1844. this.tabPage_Board.PerformLayout();
  1845. this.panelBoard1.ResumeLayout(false);
  1846. this.panelBoard1.PerformLayout();
  1847. this.panelBoard9.ResumeLayout(false);
  1848. this.panelBoard9.PerformLayout();
  1849. this.panelBoard10.ResumeLayout(false);
  1850. this.panelBoard10.PerformLayout();
  1851. this.panelBoard11.ResumeLayout(false);
  1852. this.panelBoard11.PerformLayout();
  1853. this.panelBoard12.ResumeLayout(false);
  1854. this.panelBoard12.PerformLayout();
  1855. this.panelBoard13.ResumeLayout(false);
  1856. this.panelBoard13.PerformLayout();
  1857. this.panelBoard14.ResumeLayout(false);
  1858. this.panelBoard14.PerformLayout();
  1859. this.panelBoard15.ResumeLayout(false);
  1860. this.panelBoard15.PerformLayout();
  1861. this.panelBoard16.ResumeLayout(false);
  1862. this.panelBoard16.PerformLayout();
  1863. this.panelBoard8.ResumeLayout(false);
  1864. this.panelBoard8.PerformLayout();
  1865. this.panelBoard7.ResumeLayout(false);
  1866. this.panelBoard7.PerformLayout();
  1867. this.panelBoard6.ResumeLayout(false);
  1868. this.panelBoard6.PerformLayout();
  1869. this.panelBoard5.ResumeLayout(false);
  1870. this.panelBoard5.PerformLayout();
  1871. this.panelBoard4.ResumeLayout(false);
  1872. this.panelBoard4.PerformLayout();
  1873. this.panelBoard3.ResumeLayout(false);
  1874. this.panelBoard3.PerformLayout();
  1875. this.panelBoard2.ResumeLayout(false);
  1876. this.panelBoard2.PerformLayout();
  1877. this.tabPage_Repeater.ResumeLayout(false);
  1878. this.tabPage_Repeater.PerformLayout();
  1879. this.groupRepeater.ResumeLayout(false);
  1880. this.groupRepeater.PerformLayout();
  1881. this.panelRepeaterSize.ResumeLayout(false);
  1882. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  1883. ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
  1884. this.panel2.ResumeLayout(false);
  1885. this.panel2.PerformLayout();
  1886. this.panel_Menu.ResumeLayout(false);
  1887. this.ResumeLayout(false);
  1888. }
  1889. #endregion
  1890. private System.Windows.Forms.Label lblDir;
  1891. private System.Windows.Forms.Panel panel1;
  1892. private System.Windows.Forms.TabControl tabControl_Main;
  1893. private System.Windows.Forms.TabPage tabPage_Board;
  1894. private System.Windows.Forms.TabPage tabPage_Repeater;
  1895. private System.Windows.Forms.Panel panelBoard9;
  1896. private System.Windows.Forms.CheckBox checkLoop0Board9;
  1897. private System.Windows.Forms.CheckBox checkLoop1Board9;
  1898. private System.Windows.Forms.Panel panelBoard10;
  1899. private System.Windows.Forms.CheckBox checkLoop0Board10;
  1900. private System.Windows.Forms.CheckBox checkLoop1Board10;
  1901. private System.Windows.Forms.Panel panelBoard11;
  1902. private System.Windows.Forms.CheckBox checkLoop0Board11;
  1903. private System.Windows.Forms.CheckBox checkLoop1Board11;
  1904. private System.Windows.Forms.Panel panelBoard12;
  1905. private System.Windows.Forms.CheckBox checkLoop0Board12;
  1906. private System.Windows.Forms.CheckBox checkLoop1Board12;
  1907. private System.Windows.Forms.Panel panelBoard13;
  1908. private System.Windows.Forms.CheckBox checkLoop0Board13;
  1909. private System.Windows.Forms.CheckBox checkLoop1Board13;
  1910. private System.Windows.Forms.Panel panelBoard14;
  1911. private System.Windows.Forms.CheckBox checkLoop0Board14;
  1912. private System.Windows.Forms.CheckBox checkLoop1Board14;
  1913. private System.Windows.Forms.Panel panelBoard15;
  1914. private System.Windows.Forms.CheckBox checkLoop0Board15;
  1915. private System.Windows.Forms.CheckBox checkLoop1Board15;
  1916. private System.Windows.Forms.Panel panelBoard16;
  1917. private System.Windows.Forms.CheckBox checkLoop0Board16;
  1918. private System.Windows.Forms.CheckBox checkLoop1Board16;
  1919. private System.Windows.Forms.Panel panelBoard8;
  1920. private System.Windows.Forms.CheckBox checkLoop0Board8;
  1921. private System.Windows.Forms.CheckBox checkLoop1Board8;
  1922. private System.Windows.Forms.Panel panelBoard7;
  1923. private System.Windows.Forms.CheckBox checkLoop0Board7;
  1924. private System.Windows.Forms.CheckBox checkLoop1Board7;
  1925. private System.Windows.Forms.Panel panelBoard6;
  1926. private System.Windows.Forms.CheckBox checkLoop0Board6;
  1927. private System.Windows.Forms.CheckBox checkLoop1Board6;
  1928. private System.Windows.Forms.Panel panelBoard5;
  1929. private System.Windows.Forms.CheckBox checkLoop0Board5;
  1930. private System.Windows.Forms.CheckBox checkLoop1Board5;
  1931. private System.Windows.Forms.Panel panelBoard4;
  1932. private System.Windows.Forms.CheckBox checkLoop0Board4;
  1933. private System.Windows.Forms.CheckBox checkLoop1Board4;
  1934. private System.Windows.Forms.Panel panelBoard3;
  1935. private System.Windows.Forms.CheckBox checkLoop0Board3;
  1936. private System.Windows.Forms.CheckBox checkLoop1Board3;
  1937. private System.Windows.Forms.Panel panelBoard2;
  1938. private System.Windows.Forms.CheckBox checkLoop0Board2;
  1939. private System.Windows.Forms.CheckBox checkLoop1Board2;
  1940. private System.Windows.Forms.Panel panelBoard1;
  1941. private System.Windows.Forms.CheckBox checkLoop0Board1;
  1942. private System.Windows.Forms.CheckBox checkLoop1Board1;
  1943. private System.Windows.Forms.Button btnBoardSave;
  1944. private System.Windows.Forms.GroupBox groupRepeater;
  1945. private System.Windows.Forms.Label label70;
  1946. private System.Windows.Forms.Panel panel2;
  1947. private System.Windows.Forms.Label lblRepeaterID;
  1948. private System.Windows.Forms.Label label74;
  1949. private System.Windows.Forms.Label label73;
  1950. private System.Windows.Forms.DataGridView dataGridView2;
  1951. private System.Windows.Forms.DataGridViewTextBoxColumn Column11;
  1952. private System.Windows.Forms.DataGridViewTextBoxColumn Column12;
  1953. private System.Windows.Forms.DataGridViewTextBoxColumn Column13;
  1954. private System.Windows.Forms.DataGridViewTextBoxColumn Column14;
  1955. private System.Windows.Forms.TextBox txtDeviceTypeName;
  1956. private System.Windows.Forms.Label label22;
  1957. private System.Windows.Forms.CheckBox chkDeviceCutFlag;
  1958. private System.Windows.Forms.Label lblRepeaterName;
  1959. private System.Windows.Forms.Button button1;
  1960. private System.Windows.Forms.TextBox txtThisReceiverID;
  1961. private System.Windows.Forms.Button btnInputOpen;
  1962. private System.Windows.Forms.Label label18;
  1963. private System.Windows.Forms.TextBox txtLoopNo;
  1964. private System.Windows.Forms.TextBox txtBoardID;
  1965. private System.Windows.Forms.TextBox txtThisReceiverID2;
  1966. private System.Windows.Forms.ImageList ImgLstBoardUseFlag;
  1967. private System.Windows.Forms.Button btnWinClose;
  1968. private System.Windows.Forms.TextBox txtDeviceMemo;
  1969. private System.Windows.Forms.Label label4;
  1970. private System.Windows.Forms.TextBox txtPositionName;
  1971. private System.Windows.Forms.Panel panelRepeaterSize;
  1972. private System.Windows.Forms.DataGridView dataGridView1;
  1973. private System.Windows.Forms.DataGridViewComboBoxColumn Column1;
  1974. private System.Windows.Forms.DataGridViewComboBoxColumn Column2;
  1975. private System.Windows.Forms.DataGridViewComboBoxColumn Column3;
  1976. private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
  1977. private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
  1978. private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
  1979. private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
  1980. private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
  1981. private System.Windows.Forms.DataGridViewTextBoxColumn Column9;
  1982. private System.Windows.Forms.DataGridViewTextBoxColumn Column10;
  1983. private System.Windows.Forms.Button btnOK;
  1984. private System.Windows.Forms.Button btnRepeaterAllInfo;
  1985. private System.Windows.Forms.CheckBox chkRepeaterCut;
  1986. private System.Windows.Forms.Label label11;
  1987. private System.Windows.Forms.Label label12;
  1988. private System.Windows.Forms.Label label13;
  1989. private System.Windows.Forms.Label label14;
  1990. private System.Windows.Forms.Label label15;
  1991. private System.Windows.Forms.Label label16;
  1992. private System.Windows.Forms.Label label17;
  1993. private System.Windows.Forms.Label label19;
  1994. private System.Windows.Forms.Label label10;
  1995. private System.Windows.Forms.Label label9;
  1996. private System.Windows.Forms.Label label8;
  1997. private System.Windows.Forms.Label label7;
  1998. private System.Windows.Forms.Label label6;
  1999. private System.Windows.Forms.Label label5;
  2000. private System.Windows.Forms.Label label2;
  2001. private System.Windows.Forms.Label label1;
  2002. private System.Windows.Forms.Button btnInWrite;
  2003. private System.Windows.Forms.Button btnOutWrite;
  2004. private System.Windows.Forms.Label label20;
  2005. private System.Windows.Forms.Panel panel_Menu;
  2006. private System.Windows.Forms.Button button_Menu_RepeaterCut;
  2007. private System.Windows.Forms.Button button_LoopCut;
  2008. private System.Windows.Forms.Label label_Comment;
  2009. private System.Windows.Forms.ImageList imageList_BoardUseFlag;
  2010. private System.Windows.Forms.Label label_UI_RepeaterCut;
  2011. private System.Windows.Forms.Label label_UI_RepeaterCut_Color;
  2012. private System.Windows.Forms.Label label_UI_Unuse;
  2013. private System.Windows.Forms.Label label_UI_Unuse_Color;
  2014. private System.Windows.Forms.Label label_UI_Use;
  2015. private System.Windows.Forms.Label label_UI_Comment;
  2016. private System.Windows.Forms.Label label_UI_Use_Color;
  2017. private System.Windows.Forms.Label label_UI_CircuitCut;
  2018. private System.Windows.Forms.Label label_UI_CircuitCut_Color;
  2019. private System.Windows.Forms.Label label_InfoApplyComment;
  2020. private System.Windows.Forms.Label label21;
  2021. }
  2022. }