FireDesk.Designer.cs 219 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138
  1. namespace FPER
  2. {
  3. partial class FireDesk
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FireDesk));
  29. this.lblReceiverCutCnt = new System.Windows.Forms.Label();
  30. this.lblRepeaterBlockingCnt = new System.Windows.Forms.Label();
  31. this.lblDeviceWriteCnt = new System.Windows.Forms.Label();
  32. this.lblDeviceFireCnt = new System.Windows.Forms.Label();
  33. this.lblConnetErrorCnt = new System.Windows.Forms.Label();
  34. this.panel_Bottom = new System.Windows.Forms.Panel();
  35. this.label_FireAlert_inform_2th = new System.Windows.Forms.Label();
  36. this.label_FireAlert_inform_1th = new System.Windows.Forms.Label();
  37. this.cboSecondFireWarnningMessage = new System.Windows.Forms.ComboBox();
  38. this.txtFirstFireWarnningMessage = new System.Windows.Forms.TextBox();
  39. this.label_FacilityAlert_inform_1th = new System.Windows.Forms.Label();
  40. this.cboWriteWarningMessage = new System.Windows.Forms.ComboBox();
  41. this.label_FireAlert = new System.Windows.Forms.Label();
  42. this.label_FacilityAlert = new System.Windows.Forms.Label();
  43. this.panel_Middle = new System.Windows.Forms.Panel();
  44. this.label_CurrentStatus_Cut = new System.Windows.Forms.Label();
  45. this.label_CurrentStatus_Blocking = new System.Windows.Forms.Label();
  46. this.label_CurrentStatus_Error = new System.Windows.Forms.Label();
  47. this.label_CurrentStatus_Facility = new System.Windows.Forms.Label();
  48. this.label_CurrentStatus_Fire = new System.Windows.Forms.Label();
  49. this.panel_Receiver10 = new System.Windows.Forms.Panel();
  50. this.button_Recover10 = new System.Windows.Forms.Button();
  51. this.button_Receiver10 = new System.Windows.Forms.Button();
  52. this.button_Check10 = new System.Windows.Forms.Button();
  53. this.button_DeviceNotuse10 = new System.Windows.Forms.Button();
  54. this.button_DeviceCut10 = new System.Windows.Forms.Button();
  55. this.button_RepeaterError10 = new System.Windows.Forms.Button();
  56. this.button_DeviceInput10 = new System.Windows.Forms.Button();
  57. this.button_FireDetect10 = new System.Windows.Forms.Button();
  58. this.button_SearchHistory = new System.Windows.Forms.Button();
  59. this.label_ReceiverCount = new System.Windows.Forms.Label();
  60. this.label_CurrentStatus = new System.Windows.Forms.Label();
  61. this.button_SearchControl = new System.Windows.Forms.Button();
  62. this.button_MainSoundStop = new System.Windows.Forms.Button();
  63. this.panel_Receiver16 = new System.Windows.Forms.Panel();
  64. this.button_Recover16 = new System.Windows.Forms.Button();
  65. this.button_Receiver16 = new System.Windows.Forms.Button();
  66. this.button_Check16 = new System.Windows.Forms.Button();
  67. this.button_DeviceNotuse16 = new System.Windows.Forms.Button();
  68. this.button_DeviceCut16 = new System.Windows.Forms.Button();
  69. this.button_RepeaterError16 = new System.Windows.Forms.Button();
  70. this.button_DeviceInput16 = new System.Windows.Forms.Button();
  71. this.button_FireDetect16 = new System.Windows.Forms.Button();
  72. this.panel_Receiver8 = new System.Windows.Forms.Panel();
  73. this.button_Recover8 = new System.Windows.Forms.Button();
  74. this.button_Receiver8 = new System.Windows.Forms.Button();
  75. this.button_Check8 = new System.Windows.Forms.Button();
  76. this.button_DeviceNotuse8 = new System.Windows.Forms.Button();
  77. this.button_DeviceCut8 = new System.Windows.Forms.Button();
  78. this.button_RepeaterError8 = new System.Windows.Forms.Button();
  79. this.button_DeviceInput8 = new System.Windows.Forms.Button();
  80. this.button_FireDetect8 = new System.Windows.Forms.Button();
  81. this.panel_Receiver11 = new System.Windows.Forms.Panel();
  82. this.button_Recover11 = new System.Windows.Forms.Button();
  83. this.button_Receiver11 = new System.Windows.Forms.Button();
  84. this.button_Check11 = new System.Windows.Forms.Button();
  85. this.button_DeviceNotuse11 = new System.Windows.Forms.Button();
  86. this.button_DeviceCut11 = new System.Windows.Forms.Button();
  87. this.button_RepeaterError11 = new System.Windows.Forms.Button();
  88. this.button_DeviceInput11 = new System.Windows.Forms.Button();
  89. this.button_FireDetect11 = new System.Windows.Forms.Button();
  90. this.panel_Receiver12 = new System.Windows.Forms.Panel();
  91. this.button_Recover12 = new System.Windows.Forms.Button();
  92. this.button_Receiver12 = new System.Windows.Forms.Button();
  93. this.button_Check12 = new System.Windows.Forms.Button();
  94. this.button_DeviceNotuse12 = new System.Windows.Forms.Button();
  95. this.button_DeviceCut12 = new System.Windows.Forms.Button();
  96. this.button_RepeaterError12 = new System.Windows.Forms.Button();
  97. this.button_DeviceInput12 = new System.Windows.Forms.Button();
  98. this.button_FireDetect12 = new System.Windows.Forms.Button();
  99. this.panel_Receiver4 = new System.Windows.Forms.Panel();
  100. this.button_Recover4 = new System.Windows.Forms.Button();
  101. this.button_Receiver4 = new System.Windows.Forms.Button();
  102. this.button_Check4 = new System.Windows.Forms.Button();
  103. this.button_DeviceNotuse4 = new System.Windows.Forms.Button();
  104. this.button_DeviceCut4 = new System.Windows.Forms.Button();
  105. this.button_RepeaterError4 = new System.Windows.Forms.Button();
  106. this.button_DeviceInput4 = new System.Windows.Forms.Button();
  107. this.button_FireDetect4 = new System.Windows.Forms.Button();
  108. this.panel_Receiver14 = new System.Windows.Forms.Panel();
  109. this.button_Recover14 = new System.Windows.Forms.Button();
  110. this.button_Receiver14 = new System.Windows.Forms.Button();
  111. this.button_Check14 = new System.Windows.Forms.Button();
  112. this.button_DeviceNotuse14 = new System.Windows.Forms.Button();
  113. this.button_DeviceCut14 = new System.Windows.Forms.Button();
  114. this.button_RepeaterError14 = new System.Windows.Forms.Button();
  115. this.button_DeviceInput14 = new System.Windows.Forms.Button();
  116. this.button_FireDetect14 = new System.Windows.Forms.Button();
  117. this.panel_Receiver6 = new System.Windows.Forms.Panel();
  118. this.button_Recover6 = new System.Windows.Forms.Button();
  119. this.button_Receiver6 = new System.Windows.Forms.Button();
  120. this.button_Check6 = new System.Windows.Forms.Button();
  121. this.button_DeviceNotuse6 = new System.Windows.Forms.Button();
  122. this.button_DeviceCut6 = new System.Windows.Forms.Button();
  123. this.button_RepeaterError6 = new System.Windows.Forms.Button();
  124. this.button_DeviceInput6 = new System.Windows.Forms.Button();
  125. this.button_FireDetect6 = new System.Windows.Forms.Button();
  126. this.panel_Receiver2 = new System.Windows.Forms.Panel();
  127. this.button_Recover2 = new System.Windows.Forms.Button();
  128. this.button_Receiver2 = new System.Windows.Forms.Button();
  129. this.button_Check2 = new System.Windows.Forms.Button();
  130. this.button_DeviceNotuse2 = new System.Windows.Forms.Button();
  131. this.button_DeviceCut2 = new System.Windows.Forms.Button();
  132. this.button_RepeaterError2 = new System.Windows.Forms.Button();
  133. this.button_DeviceInput2 = new System.Windows.Forms.Button();
  134. this.button_FireDetect2 = new System.Windows.Forms.Button();
  135. this.panel_Receiver15 = new System.Windows.Forms.Panel();
  136. this.button_Recover15 = new System.Windows.Forms.Button();
  137. this.button_Receiver15 = new System.Windows.Forms.Button();
  138. this.button_Check15 = new System.Windows.Forms.Button();
  139. this.button_DeviceNotuse15 = new System.Windows.Forms.Button();
  140. this.button_DeviceCut15 = new System.Windows.Forms.Button();
  141. this.button_RepeaterError15 = new System.Windows.Forms.Button();
  142. this.button_DeviceInput15 = new System.Windows.Forms.Button();
  143. this.button_FireDetect15 = new System.Windows.Forms.Button();
  144. this.panel_Receiver7 = new System.Windows.Forms.Panel();
  145. this.button_Recover7 = new System.Windows.Forms.Button();
  146. this.button_Receiver7 = new System.Windows.Forms.Button();
  147. this.button_Check7 = new System.Windows.Forms.Button();
  148. this.button_DeviceNotuse7 = new System.Windows.Forms.Button();
  149. this.button_DeviceCut7 = new System.Windows.Forms.Button();
  150. this.button_RepeaterError7 = new System.Windows.Forms.Button();
  151. this.button_DeviceInput7 = new System.Windows.Forms.Button();
  152. this.button_FireDetect7 = new System.Windows.Forms.Button();
  153. this.panel_Receiver3 = new System.Windows.Forms.Panel();
  154. this.button_Recover3 = new System.Windows.Forms.Button();
  155. this.button_Receiver3 = new System.Windows.Forms.Button();
  156. this.button_Check3 = new System.Windows.Forms.Button();
  157. this.button_DeviceNotuse3 = new System.Windows.Forms.Button();
  158. this.button_DeviceCut3 = new System.Windows.Forms.Button();
  159. this.button_RepeaterError3 = new System.Windows.Forms.Button();
  160. this.button_DeviceInput3 = new System.Windows.Forms.Button();
  161. this.button_FireDetect3 = new System.Windows.Forms.Button();
  162. this.panel_Receiver13 = new System.Windows.Forms.Panel();
  163. this.button_Recover13 = new System.Windows.Forms.Button();
  164. this.button_Receiver13 = new System.Windows.Forms.Button();
  165. this.button_Check13 = new System.Windows.Forms.Button();
  166. this.button_DeviceNotuse13 = new System.Windows.Forms.Button();
  167. this.button_DeviceCut13 = new System.Windows.Forms.Button();
  168. this.button_RepeaterError13 = new System.Windows.Forms.Button();
  169. this.button_DeviceInput13 = new System.Windows.Forms.Button();
  170. this.button_FireDetect13 = new System.Windows.Forms.Button();
  171. this.panel_Receiver5 = new System.Windows.Forms.Panel();
  172. this.button_Recover5 = new System.Windows.Forms.Button();
  173. this.button_Receiver5 = new System.Windows.Forms.Button();
  174. this.button_Check5 = new System.Windows.Forms.Button();
  175. this.button_DeviceNotuse5 = new System.Windows.Forms.Button();
  176. this.button_DeviceCut5 = new System.Windows.Forms.Button();
  177. this.button_RepeaterError5 = new System.Windows.Forms.Button();
  178. this.button_DeviceInput5 = new System.Windows.Forms.Button();
  179. this.button_FireDetect5 = new System.Windows.Forms.Button();
  180. this.panel_Receiver9 = new System.Windows.Forms.Panel();
  181. this.button_Recover9 = new System.Windows.Forms.Button();
  182. this.button_Receiver9 = new System.Windows.Forms.Button();
  183. this.button_Check9 = new System.Windows.Forms.Button();
  184. this.button_DeviceNotuse9 = new System.Windows.Forms.Button();
  185. this.button_DeviceCut9 = new System.Windows.Forms.Button();
  186. this.button_RepeaterError9 = new System.Windows.Forms.Button();
  187. this.button_DeviceInput9 = new System.Windows.Forms.Button();
  188. this.button_FireDetect9 = new System.Windows.Forms.Button();
  189. this.panel_Receiver1 = new System.Windows.Forms.Panel();
  190. this.button_Recover1 = new System.Windows.Forms.Button();
  191. this.button_Receiver1 = new System.Windows.Forms.Button();
  192. this.button_Check1 = new System.Windows.Forms.Button();
  193. this.button_DeviceNotuse1 = new System.Windows.Forms.Button();
  194. this.button_DeviceCut1 = new System.Windows.Forms.Button();
  195. this.button_RepeaterError1 = new System.Windows.Forms.Button();
  196. this.button_DeviceInput1 = new System.Windows.Forms.Button();
  197. this.button_FireDetect1 = new System.Windows.Forms.Button();
  198. this.panel_Top = new System.Windows.Forms.Panel();
  199. this.lblLEDText = new System.Windows.Forms.Label();
  200. this.cboPreFireWarnningMessage = new System.Windows.Forms.ComboBox();
  201. this.label_Time = new System.Windows.Forms.Label();
  202. this.labelPreFireAlert = new System.Windows.Forms.Label();
  203. this.pictureBox_CI = new System.Windows.Forms.PictureBox();
  204. this.label_BuildingName = new System.Windows.Forms.Label();
  205. this.panel_Bottom.SuspendLayout();
  206. this.panel_Middle.SuspendLayout();
  207. this.panel_Receiver10.SuspendLayout();
  208. this.panel_Receiver16.SuspendLayout();
  209. this.panel_Receiver8.SuspendLayout();
  210. this.panel_Receiver11.SuspendLayout();
  211. this.panel_Receiver12.SuspendLayout();
  212. this.panel_Receiver4.SuspendLayout();
  213. this.panel_Receiver14.SuspendLayout();
  214. this.panel_Receiver6.SuspendLayout();
  215. this.panel_Receiver2.SuspendLayout();
  216. this.panel_Receiver15.SuspendLayout();
  217. this.panel_Receiver7.SuspendLayout();
  218. this.panel_Receiver3.SuspendLayout();
  219. this.panel_Receiver13.SuspendLayout();
  220. this.panel_Receiver5.SuspendLayout();
  221. this.panel_Receiver9.SuspendLayout();
  222. this.panel_Receiver1.SuspendLayout();
  223. this.panel_Top.SuspendLayout();
  224. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_CI)).BeginInit();
  225. this.SuspendLayout();
  226. //
  227. // lblReceiverCutCnt
  228. //
  229. this.lblReceiverCutCnt.AutoSize = true;
  230. this.lblReceiverCutCnt.BackColor = System.Drawing.Color.Transparent;
  231. this.lblReceiverCutCnt.Font = new System.Drawing.Font("맑은 고딕", 15.75F);
  232. this.lblReceiverCutCnt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  233. this.lblReceiverCutCnt.Location = new System.Drawing.Point(85, 224);
  234. this.lblReceiverCutCnt.Name = "lblReceiverCutCnt";
  235. this.lblReceiverCutCnt.Size = new System.Drawing.Size(61, 30);
  236. this.lblReceiverCutCnt.TabIndex = 18;
  237. this.lblReceiverCutCnt.Text = "0000";
  238. //
  239. // lblRepeaterBlockingCnt
  240. //
  241. this.lblRepeaterBlockingCnt.AutoSize = true;
  242. this.lblRepeaterBlockingCnt.BackColor = System.Drawing.Color.Transparent;
  243. this.lblRepeaterBlockingCnt.Font = new System.Drawing.Font("맑은 고딕", 15.75F);
  244. this.lblRepeaterBlockingCnt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  245. this.lblRepeaterBlockingCnt.Location = new System.Drawing.Point(85, 183);
  246. this.lblRepeaterBlockingCnt.Name = "lblRepeaterBlockingCnt";
  247. this.lblRepeaterBlockingCnt.Size = new System.Drawing.Size(61, 30);
  248. this.lblRepeaterBlockingCnt.TabIndex = 17;
  249. this.lblRepeaterBlockingCnt.Text = "0000";
  250. //
  251. // lblDeviceWriteCnt
  252. //
  253. this.lblDeviceWriteCnt.AutoSize = true;
  254. this.lblDeviceWriteCnt.BackColor = System.Drawing.Color.Transparent;
  255. this.lblDeviceWriteCnt.Font = new System.Drawing.Font("맑은 고딕", 15.75F);
  256. this.lblDeviceWriteCnt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  257. this.lblDeviceWriteCnt.Location = new System.Drawing.Point(85, 105);
  258. this.lblDeviceWriteCnt.Name = "lblDeviceWriteCnt";
  259. this.lblDeviceWriteCnt.Size = new System.Drawing.Size(61, 30);
  260. this.lblDeviceWriteCnt.TabIndex = 16;
  261. this.lblDeviceWriteCnt.Text = "0000";
  262. //
  263. // lblDeviceFireCnt
  264. //
  265. this.lblDeviceFireCnt.AutoSize = true;
  266. this.lblDeviceFireCnt.BackColor = System.Drawing.Color.Transparent;
  267. this.lblDeviceFireCnt.Font = new System.Drawing.Font("맑은 고딕", 15.75F);
  268. this.lblDeviceFireCnt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  269. this.lblDeviceFireCnt.Location = new System.Drawing.Point(85, 64);
  270. this.lblDeviceFireCnt.Name = "lblDeviceFireCnt";
  271. this.lblDeviceFireCnt.Size = new System.Drawing.Size(61, 30);
  272. this.lblDeviceFireCnt.TabIndex = 15;
  273. this.lblDeviceFireCnt.Text = "0000";
  274. //
  275. // lblConnetErrorCnt
  276. //
  277. this.lblConnetErrorCnt.AutoSize = true;
  278. this.lblConnetErrorCnt.BackColor = System.Drawing.Color.Transparent;
  279. this.lblConnetErrorCnt.Font = new System.Drawing.Font("맑은 고딕", 15.75F);
  280. this.lblConnetErrorCnt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  281. this.lblConnetErrorCnt.Location = new System.Drawing.Point(85, 145);
  282. this.lblConnetErrorCnt.Name = "lblConnetErrorCnt";
  283. this.lblConnetErrorCnt.Size = new System.Drawing.Size(61, 30);
  284. this.lblConnetErrorCnt.TabIndex = 14;
  285. this.lblConnetErrorCnt.Text = "0000";
  286. //
  287. // panel_Bottom
  288. //
  289. this.panel_Bottom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Bottom.BackgroundImage")));
  290. this.panel_Bottom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  291. this.panel_Bottom.Controls.Add(this.label_FireAlert_inform_2th);
  292. this.panel_Bottom.Controls.Add(this.label_FireAlert_inform_1th);
  293. this.panel_Bottom.Controls.Add(this.cboSecondFireWarnningMessage);
  294. this.panel_Bottom.Controls.Add(this.txtFirstFireWarnningMessage);
  295. this.panel_Bottom.Controls.Add(this.label_FacilityAlert_inform_1th);
  296. this.panel_Bottom.Controls.Add(this.cboWriteWarningMessage);
  297. this.panel_Bottom.Controls.Add(this.label_FireAlert);
  298. this.panel_Bottom.Controls.Add(this.label_FacilityAlert);
  299. this.panel_Bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  300. this.panel_Bottom.Location = new System.Drawing.Point(0, 903);
  301. this.panel_Bottom.Name = "panel_Bottom";
  302. this.panel_Bottom.Size = new System.Drawing.Size(1280, 121);
  303. this.panel_Bottom.TabIndex = 9;
  304. //
  305. // label_FireAlert_inform_2th
  306. //
  307. this.label_FireAlert_inform_2th.BackColor = System.Drawing.Color.Transparent;
  308. this.label_FireAlert_inform_2th.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  309. this.label_FireAlert_inform_2th.Image = ((System.Drawing.Image)(resources.GetObject("label_FireAlert_inform_2th.Image")));
  310. this.label_FireAlert_inform_2th.Location = new System.Drawing.Point(23, 88);
  311. this.label_FireAlert_inform_2th.Name = "label_FireAlert_inform_2th";
  312. this.label_FireAlert_inform_2th.Size = new System.Drawing.Size(45, 20);
  313. this.label_FireAlert_inform_2th.TabIndex = 4;
  314. this.label_FireAlert_inform_2th.Text = "6";
  315. this.label_FireAlert_inform_2th.Visible = false;
  316. //
  317. // label_FireAlert_inform_1th
  318. //
  319. this.label_FireAlert_inform_1th.BackColor = System.Drawing.Color.Transparent;
  320. this.label_FireAlert_inform_1th.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  321. this.label_FireAlert_inform_1th.Image = ((System.Drawing.Image)(resources.GetObject("label_FireAlert_inform_1th.Image")));
  322. this.label_FireAlert_inform_1th.Location = new System.Drawing.Point(24, 56);
  323. this.label_FireAlert_inform_1th.Name = "label_FireAlert_inform_1th";
  324. this.label_FireAlert_inform_1th.Size = new System.Drawing.Size(44, 17);
  325. this.label_FireAlert_inform_1th.TabIndex = 1;
  326. this.label_FireAlert_inform_1th.Visible = false;
  327. //
  328. // cboSecondFireWarnningMessage
  329. //
  330. this.cboSecondFireWarnningMessage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  331. this.cboSecondFireWarnningMessage.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  332. this.cboSecondFireWarnningMessage.FormattingEnabled = true;
  333. this.cboSecondFireWarnningMessage.Location = new System.Drawing.Point(74, 85);
  334. this.cboSecondFireWarnningMessage.MaxDropDownItems = 30;
  335. this.cboSecondFireWarnningMessage.Name = "cboSecondFireWarnningMessage";
  336. this.cboSecondFireWarnningMessage.Size = new System.Drawing.Size(557, 24);
  337. this.cboSecondFireWarnningMessage.TabIndex = 2;
  338. this.cboSecondFireWarnningMessage.Visible = false;
  339. //
  340. // txtFirstFireWarnningMessage
  341. //
  342. this.txtFirstFireWarnningMessage.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  343. this.txtFirstFireWarnningMessage.ForeColor = System.Drawing.SystemColors.WindowText;
  344. this.txtFirstFireWarnningMessage.Location = new System.Drawing.Point(74, 50);
  345. this.txtFirstFireWarnningMessage.Name = "txtFirstFireWarnningMessage";
  346. this.txtFirstFireWarnningMessage.ReadOnly = true;
  347. this.txtFirstFireWarnningMessage.Size = new System.Drawing.Size(557, 26);
  348. this.txtFirstFireWarnningMessage.TabIndex = 6;
  349. this.txtFirstFireWarnningMessage.Tag = "";
  350. this.txtFirstFireWarnningMessage.Visible = false;
  351. //
  352. // label_FacilityAlert_inform_1th
  353. //
  354. this.label_FacilityAlert_inform_1th.BackColor = System.Drawing.Color.Transparent;
  355. this.label_FacilityAlert_inform_1th.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  356. this.label_FacilityAlert_inform_1th.Image = ((System.Drawing.Image)(resources.GetObject("label_FacilityAlert_inform_1th.Image")));
  357. this.label_FacilityAlert_inform_1th.Location = new System.Drawing.Point(661, 56);
  358. this.label_FacilityAlert_inform_1th.Name = "label_FacilityAlert_inform_1th";
  359. this.label_FacilityAlert_inform_1th.Size = new System.Drawing.Size(52, 15);
  360. this.label_FacilityAlert_inform_1th.TabIndex = 17;
  361. this.label_FacilityAlert_inform_1th.Visible = false;
  362. //
  363. // cboWriteWarningMessage
  364. //
  365. this.cboWriteWarningMessage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  366. this.cboWriteWarningMessage.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  367. this.cboWriteWarningMessage.FormattingEnabled = true;
  368. this.cboWriteWarningMessage.Location = new System.Drawing.Point(719, 52);
  369. this.cboWriteWarningMessage.MaxDropDownItems = 30;
  370. this.cboWriteWarningMessage.Name = "cboWriteWarningMessage";
  371. this.cboWriteWarningMessage.Size = new System.Drawing.Size(545, 24);
  372. this.cboWriteWarningMessage.TabIndex = 16;
  373. this.cboWriteWarningMessage.Visible = false;
  374. //
  375. // label_FireAlert
  376. //
  377. this.label_FireAlert.BackColor = System.Drawing.Color.Transparent;
  378. this.label_FireAlert.Font = new System.Drawing.Font("굴림", 25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  379. this.label_FireAlert.ForeColor = System.Drawing.Color.Red;
  380. this.label_FireAlert.Location = new System.Drawing.Point(4, 0);
  381. this.label_FireAlert.Name = "label_FireAlert";
  382. this.label_FireAlert.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  383. this.label_FireAlert.Size = new System.Drawing.Size(651, 116);
  384. this.label_FireAlert.TabIndex = 8;
  385. this.label_FireAlert.Text = "화재발생";
  386. this.label_FireAlert.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  387. this.label_FireAlert.Visible = false;
  388. //
  389. // label_FacilityAlert
  390. //
  391. this.label_FacilityAlert.BackColor = System.Drawing.Color.Transparent;
  392. this.label_FacilityAlert.Font = new System.Drawing.Font("굴림", 25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  393. this.label_FacilityAlert.ForeColor = System.Drawing.Color.LightSkyBlue;
  394. this.label_FacilityAlert.Location = new System.Drawing.Point(654, 0);
  395. this.label_FacilityAlert.Name = "label_FacilityAlert";
  396. this.label_FacilityAlert.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  397. this.label_FacilityAlert.Size = new System.Drawing.Size(623, 116);
  398. this.label_FacilityAlert.TabIndex = 9;
  399. this.label_FacilityAlert.Text = "설비동작";
  400. this.label_FacilityAlert.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  401. this.label_FacilityAlert.Visible = false;
  402. //
  403. // panel_Middle
  404. //
  405. this.panel_Middle.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Middle.BackgroundImage")));
  406. this.panel_Middle.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  407. this.panel_Middle.Controls.Add(this.label_CurrentStatus_Cut);
  408. this.panel_Middle.Controls.Add(this.label_CurrentStatus_Blocking);
  409. this.panel_Middle.Controls.Add(this.label_CurrentStatus_Error);
  410. this.panel_Middle.Controls.Add(this.label_CurrentStatus_Facility);
  411. this.panel_Middle.Controls.Add(this.label_CurrentStatus_Fire);
  412. this.panel_Middle.Controls.Add(this.panel_Receiver10);
  413. this.panel_Middle.Controls.Add(this.button_SearchHistory);
  414. this.panel_Middle.Controls.Add(this.label_ReceiverCount);
  415. this.panel_Middle.Controls.Add(this.label_CurrentStatus);
  416. this.panel_Middle.Controls.Add(this.button_SearchControl);
  417. this.panel_Middle.Controls.Add(this.button_MainSoundStop);
  418. this.panel_Middle.Controls.Add(this.panel_Receiver16);
  419. this.panel_Middle.Controls.Add(this.panel_Receiver8);
  420. this.panel_Middle.Controls.Add(this.panel_Receiver11);
  421. this.panel_Middle.Controls.Add(this.panel_Receiver12);
  422. this.panel_Middle.Controls.Add(this.panel_Receiver4);
  423. this.panel_Middle.Controls.Add(this.panel_Receiver14);
  424. this.panel_Middle.Controls.Add(this.panel_Receiver6);
  425. this.panel_Middle.Controls.Add(this.panel_Receiver2);
  426. this.panel_Middle.Controls.Add(this.panel_Receiver15);
  427. this.panel_Middle.Controls.Add(this.panel_Receiver7);
  428. this.panel_Middle.Controls.Add(this.panel_Receiver3);
  429. this.panel_Middle.Controls.Add(this.panel_Receiver13);
  430. this.panel_Middle.Controls.Add(this.panel_Receiver5);
  431. this.panel_Middle.Controls.Add(this.panel_Receiver9);
  432. this.panel_Middle.Controls.Add(this.panel_Receiver1);
  433. this.panel_Middle.ForeColor = System.Drawing.SystemColors.ControlText;
  434. this.panel_Middle.Location = new System.Drawing.Point(-17, 0);
  435. this.panel_Middle.Name = "panel_Middle";
  436. this.panel_Middle.Size = new System.Drawing.Size(1330, 1011);
  437. this.panel_Middle.TabIndex = 7;
  438. //
  439. // label_CurrentStatus_Cut
  440. //
  441. this.label_CurrentStatus_Cut.BackColor = System.Drawing.Color.Transparent;
  442. this.label_CurrentStatus_Cut.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  443. this.label_CurrentStatus_Cut.ForeColor = System.Drawing.Color.White;
  444. this.label_CurrentStatus_Cut.Location = new System.Drawing.Point(614, 130);
  445. this.label_CurrentStatus_Cut.Name = "label_CurrentStatus_Cut";
  446. this.label_CurrentStatus_Cut.Size = new System.Drawing.Size(113, 34);
  447. this.label_CurrentStatus_Cut.TabIndex = 34;
  448. this.label_CurrentStatus_Cut.Text = "차단(0)";
  449. this.label_CurrentStatus_Cut.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  450. //
  451. // label_CurrentStatus_Blocking
  452. //
  453. this.label_CurrentStatus_Blocking.BackColor = System.Drawing.Color.Transparent;
  454. this.label_CurrentStatus_Blocking.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  455. this.label_CurrentStatus_Blocking.ForeColor = System.Drawing.Color.White;
  456. this.label_CurrentStatus_Blocking.Location = new System.Drawing.Point(498, 130);
  457. this.label_CurrentStatus_Blocking.Name = "label_CurrentStatus_Blocking";
  458. this.label_CurrentStatus_Blocking.Size = new System.Drawing.Size(113, 34);
  459. this.label_CurrentStatus_Blocking.TabIndex = 34;
  460. this.label_CurrentStatus_Blocking.Text = "단선(0)";
  461. this.label_CurrentStatus_Blocking.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  462. //
  463. // label_CurrentStatus_Error
  464. //
  465. this.label_CurrentStatus_Error.BackColor = System.Drawing.Color.Transparent;
  466. this.label_CurrentStatus_Error.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  467. this.label_CurrentStatus_Error.ForeColor = System.Drawing.Color.White;
  468. this.label_CurrentStatus_Error.Location = new System.Drawing.Point(382, 130);
  469. this.label_CurrentStatus_Error.Name = "label_CurrentStatus_Error";
  470. this.label_CurrentStatus_Error.Size = new System.Drawing.Size(113, 34);
  471. this.label_CurrentStatus_Error.TabIndex = 34;
  472. this.label_CurrentStatus_Error.Text = "통신(0)";
  473. this.label_CurrentStatus_Error.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  474. //
  475. // label_CurrentStatus_Facility
  476. //
  477. this.label_CurrentStatus_Facility.BackColor = System.Drawing.Color.Transparent;
  478. this.label_CurrentStatus_Facility.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  479. this.label_CurrentStatus_Facility.ForeColor = System.Drawing.Color.White;
  480. this.label_CurrentStatus_Facility.Location = new System.Drawing.Point(266, 130);
  481. this.label_CurrentStatus_Facility.Name = "label_CurrentStatus_Facility";
  482. this.label_CurrentStatus_Facility.Size = new System.Drawing.Size(113, 34);
  483. this.label_CurrentStatus_Facility.TabIndex = 34;
  484. this.label_CurrentStatus_Facility.Text = "설비(0)";
  485. this.label_CurrentStatus_Facility.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  486. //
  487. // label_CurrentStatus_Fire
  488. //
  489. this.label_CurrentStatus_Fire.BackColor = System.Drawing.Color.Transparent;
  490. this.label_CurrentStatus_Fire.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  491. this.label_CurrentStatus_Fire.ForeColor = System.Drawing.Color.White;
  492. this.label_CurrentStatus_Fire.Location = new System.Drawing.Point(150, 130);
  493. this.label_CurrentStatus_Fire.Name = "label_CurrentStatus_Fire";
  494. this.label_CurrentStatus_Fire.Size = new System.Drawing.Size(113, 34);
  495. this.label_CurrentStatus_Fire.TabIndex = 34;
  496. this.label_CurrentStatus_Fire.Text = "화재(0)";
  497. this.label_CurrentStatus_Fire.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  498. //
  499. // panel_Receiver10
  500. //
  501. this.panel_Receiver10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver10.BackgroundImage")));
  502. this.panel_Receiver10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  503. this.panel_Receiver10.Controls.Add(this.button_Recover10);
  504. this.panel_Receiver10.Controls.Add(this.button_Receiver10);
  505. this.panel_Receiver10.Controls.Add(this.button_Check10);
  506. this.panel_Receiver10.Controls.Add(this.button_DeviceNotuse10);
  507. this.panel_Receiver10.Controls.Add(this.button_DeviceCut10);
  508. this.panel_Receiver10.Controls.Add(this.button_RepeaterError10);
  509. this.panel_Receiver10.Controls.Add(this.button_DeviceInput10);
  510. this.panel_Receiver10.Controls.Add(this.button_FireDetect10);
  511. this.panel_Receiver10.Location = new System.Drawing.Point(199, 529);
  512. this.panel_Receiver10.Name = "panel_Receiver10";
  513. this.panel_Receiver10.Size = new System.Drawing.Size(148, 330);
  514. this.panel_Receiver10.TabIndex = 24;
  515. //
  516. // button_Recover10
  517. //
  518. this.button_Recover10.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  519. this.button_Recover10.Location = new System.Drawing.Point(90, 18);
  520. this.button_Recover10.Name = "button_Recover10";
  521. this.button_Recover10.Size = new System.Drawing.Size(51, 41);
  522. this.button_Recover10.TabIndex = 11;
  523. this.button_Recover10.Text = "복구";
  524. this.button_Recover10.UseVisualStyleBackColor = true;
  525. //
  526. // button_Receiver10
  527. //
  528. this.button_Receiver10.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  529. this.button_Receiver10.Location = new System.Drawing.Point(10, 18);
  530. this.button_Receiver10.Name = "button_Receiver10";
  531. this.button_Receiver10.Size = new System.Drawing.Size(79, 41);
  532. this.button_Receiver10.TabIndex = 11;
  533. this.button_Receiver10.Text = "수신기10";
  534. this.button_Receiver10.UseVisualStyleBackColor = true;
  535. //
  536. // button_Check10
  537. //
  538. this.button_Check10.BackColor = System.Drawing.Color.Transparent;
  539. this.button_Check10.FlatAppearance.BorderSize = 2;
  540. this.button_Check10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  541. this.button_Check10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  542. this.button_Check10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  543. this.button_Check10.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  544. this.button_Check10.ForeColor = System.Drawing.Color.PowderBlue;
  545. this.button_Check10.ImageIndex = 20;
  546. this.button_Check10.Location = new System.Drawing.Point(10, 65);
  547. this.button_Check10.Name = "button_Check10";
  548. this.button_Check10.Size = new System.Drawing.Size(129, 41);
  549. this.button_Check10.TabIndex = 23;
  550. this.button_Check10.Text = "점검";
  551. this.button_Check10.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  552. this.button_Check10.UseVisualStyleBackColor = false;
  553. //
  554. // button_DeviceNotuse10
  555. //
  556. this.button_DeviceNotuse10.BackColor = System.Drawing.Color.Transparent;
  557. this.button_DeviceNotuse10.FlatAppearance.BorderSize = 2;
  558. this.button_DeviceNotuse10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  559. this.button_DeviceNotuse10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  560. this.button_DeviceNotuse10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  561. this.button_DeviceNotuse10.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  562. this.button_DeviceNotuse10.ForeColor = System.Drawing.Color.PowderBlue;
  563. this.button_DeviceNotuse10.Location = new System.Drawing.Point(10, 281);
  564. this.button_DeviceNotuse10.Name = "button_DeviceNotuse10";
  565. this.button_DeviceNotuse10.Size = new System.Drawing.Size(129, 41);
  566. this.button_DeviceNotuse10.TabIndex = 23;
  567. this.button_DeviceNotuse10.Text = "차단 : 0000";
  568. this.button_DeviceNotuse10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  569. this.button_DeviceNotuse10.UseVisualStyleBackColor = false;
  570. //
  571. // button_DeviceCut10
  572. //
  573. this.button_DeviceCut10.BackColor = System.Drawing.Color.Transparent;
  574. this.button_DeviceCut10.FlatAppearance.BorderSize = 2;
  575. this.button_DeviceCut10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  576. this.button_DeviceCut10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  577. this.button_DeviceCut10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  578. this.button_DeviceCut10.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  579. this.button_DeviceCut10.ForeColor = System.Drawing.Color.PowderBlue;
  580. this.button_DeviceCut10.Location = new System.Drawing.Point(10, 239);
  581. this.button_DeviceCut10.Name = "button_DeviceCut10";
  582. this.button_DeviceCut10.Size = new System.Drawing.Size(129, 41);
  583. this.button_DeviceCut10.TabIndex = 22;
  584. this.button_DeviceCut10.Text = "단선 : 0000";
  585. this.button_DeviceCut10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  586. this.button_DeviceCut10.UseVisualStyleBackColor = false;
  587. //
  588. // button_RepeaterError10
  589. //
  590. this.button_RepeaterError10.BackColor = System.Drawing.Color.Transparent;
  591. this.button_RepeaterError10.FlatAppearance.BorderSize = 2;
  592. this.button_RepeaterError10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  593. this.button_RepeaterError10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  594. this.button_RepeaterError10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  595. this.button_RepeaterError10.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  596. this.button_RepeaterError10.ForeColor = System.Drawing.Color.PowderBlue;
  597. this.button_RepeaterError10.Location = new System.Drawing.Point(10, 197);
  598. this.button_RepeaterError10.Name = "button_RepeaterError10";
  599. this.button_RepeaterError10.Size = new System.Drawing.Size(129, 41);
  600. this.button_RepeaterError10.TabIndex = 21;
  601. this.button_RepeaterError10.Text = "통신 : 0000";
  602. this.button_RepeaterError10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  603. this.button_RepeaterError10.UseVisualStyleBackColor = false;
  604. //
  605. // button_DeviceInput10
  606. //
  607. this.button_DeviceInput10.BackColor = System.Drawing.Color.Transparent;
  608. this.button_DeviceInput10.FlatAppearance.BorderSize = 2;
  609. this.button_DeviceInput10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  610. this.button_DeviceInput10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  611. this.button_DeviceInput10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  612. this.button_DeviceInput10.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  613. this.button_DeviceInput10.ForeColor = System.Drawing.Color.PowderBlue;
  614. this.button_DeviceInput10.Location = new System.Drawing.Point(10, 155);
  615. this.button_DeviceInput10.Name = "button_DeviceInput10";
  616. this.button_DeviceInput10.Size = new System.Drawing.Size(129, 41);
  617. this.button_DeviceInput10.TabIndex = 20;
  618. this.button_DeviceInput10.Text = "설비 : 0000";
  619. this.button_DeviceInput10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  620. this.button_DeviceInput10.UseVisualStyleBackColor = false;
  621. //
  622. // button_FireDetect10
  623. //
  624. this.button_FireDetect10.BackColor = System.Drawing.Color.Transparent;
  625. this.button_FireDetect10.FlatAppearance.BorderSize = 2;
  626. this.button_FireDetect10.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  627. this.button_FireDetect10.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  628. this.button_FireDetect10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  629. this.button_FireDetect10.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  630. this.button_FireDetect10.ForeColor = System.Drawing.Color.PowderBlue;
  631. this.button_FireDetect10.Location = new System.Drawing.Point(10, 113);
  632. this.button_FireDetect10.Name = "button_FireDetect10";
  633. this.button_FireDetect10.Size = new System.Drawing.Size(129, 41);
  634. this.button_FireDetect10.TabIndex = 19;
  635. this.button_FireDetect10.Text = "화재 : 0000";
  636. this.button_FireDetect10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  637. this.button_FireDetect10.UseVisualStyleBackColor = false;
  638. //
  639. // button_SearchHistory
  640. //
  641. this.button_SearchHistory.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  642. this.button_SearchHistory.Location = new System.Drawing.Point(1086, 125);
  643. this.button_SearchHistory.Name = "button_SearchHistory";
  644. this.button_SearchHistory.Size = new System.Drawing.Size(190, 45);
  645. this.button_SearchHistory.TabIndex = 33;
  646. this.button_SearchHistory.Text = "과거내역통합 조회";
  647. this.button_SearchHistory.UseVisualStyleBackColor = true;
  648. this.button_SearchHistory.Click += new System.EventHandler(this.button_SearchHistory_Click);
  649. //
  650. // label_ReceiverCount
  651. //
  652. this.label_ReceiverCount.BackColor = System.Drawing.Color.Transparent;
  653. this.label_ReceiverCount.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold);
  654. this.label_ReceiverCount.ForeColor = System.Drawing.Color.White;
  655. this.label_ReceiverCount.Location = new System.Drawing.Point(43, 87);
  656. this.label_ReceiverCount.Name = "label_ReceiverCount";
  657. this.label_ReceiverCount.Size = new System.Drawing.Size(1233, 34);
  658. this.label_ReceiverCount.TabIndex = 3;
  659. this.label_ReceiverCount.Text = "전체 수신기 대수 : 16";
  660. this.label_ReceiverCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  661. //
  662. // label_CurrentStatus
  663. //
  664. this.label_CurrentStatus.BackColor = System.Drawing.Color.Transparent;
  665. this.label_CurrentStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
  666. this.label_CurrentStatus.ForeColor = System.Drawing.Color.White;
  667. this.label_CurrentStatus.Location = new System.Drawing.Point(43, 130);
  668. this.label_CurrentStatus.Name = "label_CurrentStatus";
  669. this.label_CurrentStatus.Size = new System.Drawing.Size(101, 34);
  670. this.label_CurrentStatus.TabIndex = 3;
  671. this.label_CurrentStatus.Text = "▶ 현황 :";
  672. this.label_CurrentStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  673. //
  674. // button_SearchControl
  675. //
  676. this.button_SearchControl.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  677. this.button_SearchControl.Location = new System.Drawing.Point(911, 125);
  678. this.button_SearchControl.Name = "button_SearchControl";
  679. this.button_SearchControl.Size = new System.Drawing.Size(170, 45);
  680. this.button_SearchControl.TabIndex = 11;
  681. this.button_SearchControl.Text = "연동상태 조회";
  682. this.button_SearchControl.UseVisualStyleBackColor = true;
  683. this.button_SearchControl.Click += new System.EventHandler(this.button_SearchControl_Click);
  684. //
  685. // button_MainSoundStop
  686. //
  687. this.button_MainSoundStop.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  688. this.button_MainSoundStop.Location = new System.Drawing.Point(736, 125);
  689. this.button_MainSoundStop.Name = "button_MainSoundStop";
  690. this.button_MainSoundStop.Size = new System.Drawing.Size(170, 45);
  691. this.button_MainSoundStop.TabIndex = 11;
  692. this.button_MainSoundStop.Text = "주경종 정지";
  693. this.button_MainSoundStop.UseVisualStyleBackColor = true;
  694. this.button_MainSoundStop.Click += new System.EventHandler(this.button_MainSoundStop_Click);
  695. //
  696. // panel_Receiver16
  697. //
  698. this.panel_Receiver16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver16.BackgroundImage")));
  699. this.panel_Receiver16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  700. this.panel_Receiver16.Controls.Add(this.button_Recover16);
  701. this.panel_Receiver16.Controls.Add(this.button_Receiver16);
  702. this.panel_Receiver16.Controls.Add(this.button_Check16);
  703. this.panel_Receiver16.Controls.Add(this.button_DeviceNotuse16);
  704. this.panel_Receiver16.Controls.Add(this.button_DeviceCut16);
  705. this.panel_Receiver16.Controls.Add(this.button_RepeaterError16);
  706. this.panel_Receiver16.Controls.Add(this.button_DeviceInput16);
  707. this.panel_Receiver16.Controls.Add(this.button_FireDetect16);
  708. this.panel_Receiver16.Location = new System.Drawing.Point(1129, 529);
  709. this.panel_Receiver16.Name = "panel_Receiver16";
  710. this.panel_Receiver16.Size = new System.Drawing.Size(148, 330);
  711. this.panel_Receiver16.TabIndex = 29;
  712. //
  713. // button_Recover16
  714. //
  715. this.button_Recover16.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  716. this.button_Recover16.Location = new System.Drawing.Point(90, 18);
  717. this.button_Recover16.Name = "button_Recover16";
  718. this.button_Recover16.Size = new System.Drawing.Size(51, 41);
  719. this.button_Recover16.TabIndex = 11;
  720. this.button_Recover16.Text = "복구";
  721. this.button_Recover16.UseVisualStyleBackColor = true;
  722. //
  723. // button_Receiver16
  724. //
  725. this.button_Receiver16.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  726. this.button_Receiver16.Location = new System.Drawing.Point(10, 18);
  727. this.button_Receiver16.Name = "button_Receiver16";
  728. this.button_Receiver16.Size = new System.Drawing.Size(79, 41);
  729. this.button_Receiver16.TabIndex = 11;
  730. this.button_Receiver16.Text = "수신기16";
  731. this.button_Receiver16.UseVisualStyleBackColor = true;
  732. //
  733. // button_Check16
  734. //
  735. this.button_Check16.BackColor = System.Drawing.Color.Transparent;
  736. this.button_Check16.FlatAppearance.BorderSize = 2;
  737. this.button_Check16.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  738. this.button_Check16.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  739. this.button_Check16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  740. this.button_Check16.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  741. this.button_Check16.ForeColor = System.Drawing.Color.PowderBlue;
  742. this.button_Check16.ImageIndex = 20;
  743. this.button_Check16.Location = new System.Drawing.Point(10, 65);
  744. this.button_Check16.Name = "button_Check16";
  745. this.button_Check16.Size = new System.Drawing.Size(129, 41);
  746. this.button_Check16.TabIndex = 23;
  747. this.button_Check16.Text = "점검";
  748. this.button_Check16.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  749. this.button_Check16.UseVisualStyleBackColor = false;
  750. //
  751. // button_DeviceNotuse16
  752. //
  753. this.button_DeviceNotuse16.BackColor = System.Drawing.Color.Transparent;
  754. this.button_DeviceNotuse16.FlatAppearance.BorderSize = 2;
  755. this.button_DeviceNotuse16.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  756. this.button_DeviceNotuse16.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  757. this.button_DeviceNotuse16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  758. this.button_DeviceNotuse16.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  759. this.button_DeviceNotuse16.ForeColor = System.Drawing.Color.PowderBlue;
  760. this.button_DeviceNotuse16.Location = new System.Drawing.Point(10, 281);
  761. this.button_DeviceNotuse16.Name = "button_DeviceNotuse16";
  762. this.button_DeviceNotuse16.Size = new System.Drawing.Size(129, 41);
  763. this.button_DeviceNotuse16.TabIndex = 23;
  764. this.button_DeviceNotuse16.Text = "차단 : 0000";
  765. this.button_DeviceNotuse16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  766. this.button_DeviceNotuse16.UseVisualStyleBackColor = false;
  767. //
  768. // button_DeviceCut16
  769. //
  770. this.button_DeviceCut16.BackColor = System.Drawing.Color.Transparent;
  771. this.button_DeviceCut16.FlatAppearance.BorderSize = 2;
  772. this.button_DeviceCut16.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  773. this.button_DeviceCut16.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  774. this.button_DeviceCut16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  775. this.button_DeviceCut16.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  776. this.button_DeviceCut16.ForeColor = System.Drawing.Color.PowderBlue;
  777. this.button_DeviceCut16.Location = new System.Drawing.Point(10, 239);
  778. this.button_DeviceCut16.Name = "button_DeviceCut16";
  779. this.button_DeviceCut16.Size = new System.Drawing.Size(129, 41);
  780. this.button_DeviceCut16.TabIndex = 22;
  781. this.button_DeviceCut16.Text = "단선 : 0000";
  782. this.button_DeviceCut16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  783. this.button_DeviceCut16.UseVisualStyleBackColor = false;
  784. //
  785. // button_RepeaterError16
  786. //
  787. this.button_RepeaterError16.BackColor = System.Drawing.Color.Transparent;
  788. this.button_RepeaterError16.FlatAppearance.BorderSize = 2;
  789. this.button_RepeaterError16.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  790. this.button_RepeaterError16.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  791. this.button_RepeaterError16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  792. this.button_RepeaterError16.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  793. this.button_RepeaterError16.ForeColor = System.Drawing.Color.PowderBlue;
  794. this.button_RepeaterError16.Location = new System.Drawing.Point(10, 197);
  795. this.button_RepeaterError16.Name = "button_RepeaterError16";
  796. this.button_RepeaterError16.Size = new System.Drawing.Size(129, 41);
  797. this.button_RepeaterError16.TabIndex = 21;
  798. this.button_RepeaterError16.Text = "통신 : 0000";
  799. this.button_RepeaterError16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  800. this.button_RepeaterError16.UseVisualStyleBackColor = false;
  801. //
  802. // button_DeviceInput16
  803. //
  804. this.button_DeviceInput16.BackColor = System.Drawing.Color.Transparent;
  805. this.button_DeviceInput16.FlatAppearance.BorderSize = 2;
  806. this.button_DeviceInput16.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  807. this.button_DeviceInput16.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  808. this.button_DeviceInput16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  809. this.button_DeviceInput16.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  810. this.button_DeviceInput16.ForeColor = System.Drawing.Color.PowderBlue;
  811. this.button_DeviceInput16.Location = new System.Drawing.Point(10, 155);
  812. this.button_DeviceInput16.Name = "button_DeviceInput16";
  813. this.button_DeviceInput16.Size = new System.Drawing.Size(129, 41);
  814. this.button_DeviceInput16.TabIndex = 20;
  815. this.button_DeviceInput16.Text = "설비 : 0000";
  816. this.button_DeviceInput16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  817. this.button_DeviceInput16.UseVisualStyleBackColor = false;
  818. //
  819. // button_FireDetect16
  820. //
  821. this.button_FireDetect16.BackColor = System.Drawing.Color.Transparent;
  822. this.button_FireDetect16.FlatAppearance.BorderSize = 2;
  823. this.button_FireDetect16.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  824. this.button_FireDetect16.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  825. this.button_FireDetect16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  826. this.button_FireDetect16.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  827. this.button_FireDetect16.ForeColor = System.Drawing.Color.PowderBlue;
  828. this.button_FireDetect16.Location = new System.Drawing.Point(10, 113);
  829. this.button_FireDetect16.Name = "button_FireDetect16";
  830. this.button_FireDetect16.Size = new System.Drawing.Size(129, 41);
  831. this.button_FireDetect16.TabIndex = 19;
  832. this.button_FireDetect16.Text = "화재 : 0000";
  833. this.button_FireDetect16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  834. this.button_FireDetect16.UseVisualStyleBackColor = false;
  835. //
  836. // panel_Receiver8
  837. //
  838. this.panel_Receiver8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver8.BackgroundImage")));
  839. this.panel_Receiver8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  840. this.panel_Receiver8.Controls.Add(this.button_Recover8);
  841. this.panel_Receiver8.Controls.Add(this.button_Receiver8);
  842. this.panel_Receiver8.Controls.Add(this.button_Check8);
  843. this.panel_Receiver8.Controls.Add(this.button_DeviceNotuse8);
  844. this.panel_Receiver8.Controls.Add(this.button_DeviceCut8);
  845. this.panel_Receiver8.Controls.Add(this.button_RepeaterError8);
  846. this.panel_Receiver8.Controls.Add(this.button_DeviceInput8);
  847. this.panel_Receiver8.Controls.Add(this.button_FireDetect8);
  848. this.panel_Receiver8.Location = new System.Drawing.Point(1129, 193);
  849. this.panel_Receiver8.Name = "panel_Receiver8";
  850. this.panel_Receiver8.Size = new System.Drawing.Size(148, 330);
  851. this.panel_Receiver8.TabIndex = 24;
  852. //
  853. // button_Recover8
  854. //
  855. this.button_Recover8.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  856. this.button_Recover8.Location = new System.Drawing.Point(90, 18);
  857. this.button_Recover8.Name = "button_Recover8";
  858. this.button_Recover8.Size = new System.Drawing.Size(51, 41);
  859. this.button_Recover8.TabIndex = 11;
  860. this.button_Recover8.Text = "복구";
  861. this.button_Recover8.UseVisualStyleBackColor = true;
  862. //
  863. // button_Receiver8
  864. //
  865. this.button_Receiver8.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  866. this.button_Receiver8.Location = new System.Drawing.Point(10, 18);
  867. this.button_Receiver8.Name = "button_Receiver8";
  868. this.button_Receiver8.Size = new System.Drawing.Size(79, 41);
  869. this.button_Receiver8.TabIndex = 11;
  870. this.button_Receiver8.Text = "수신기8";
  871. this.button_Receiver8.UseVisualStyleBackColor = true;
  872. //
  873. // button_Check8
  874. //
  875. this.button_Check8.BackColor = System.Drawing.Color.Transparent;
  876. this.button_Check8.FlatAppearance.BorderSize = 2;
  877. this.button_Check8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  878. this.button_Check8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  879. this.button_Check8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  880. this.button_Check8.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  881. this.button_Check8.ForeColor = System.Drawing.Color.PowderBlue;
  882. this.button_Check8.ImageIndex = 20;
  883. this.button_Check8.Location = new System.Drawing.Point(10, 65);
  884. this.button_Check8.Name = "button_Check8";
  885. this.button_Check8.Size = new System.Drawing.Size(129, 41);
  886. this.button_Check8.TabIndex = 23;
  887. this.button_Check8.Text = "점검";
  888. this.button_Check8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  889. this.button_Check8.UseVisualStyleBackColor = false;
  890. //
  891. // button_DeviceNotuse8
  892. //
  893. this.button_DeviceNotuse8.BackColor = System.Drawing.Color.Transparent;
  894. this.button_DeviceNotuse8.FlatAppearance.BorderSize = 2;
  895. this.button_DeviceNotuse8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  896. this.button_DeviceNotuse8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  897. this.button_DeviceNotuse8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  898. this.button_DeviceNotuse8.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  899. this.button_DeviceNotuse8.ForeColor = System.Drawing.Color.PowderBlue;
  900. this.button_DeviceNotuse8.Location = new System.Drawing.Point(10, 281);
  901. this.button_DeviceNotuse8.Name = "button_DeviceNotuse8";
  902. this.button_DeviceNotuse8.Size = new System.Drawing.Size(129, 41);
  903. this.button_DeviceNotuse8.TabIndex = 23;
  904. this.button_DeviceNotuse8.Text = "차단 : 0000";
  905. this.button_DeviceNotuse8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  906. this.button_DeviceNotuse8.UseVisualStyleBackColor = false;
  907. //
  908. // button_DeviceCut8
  909. //
  910. this.button_DeviceCut8.BackColor = System.Drawing.Color.Transparent;
  911. this.button_DeviceCut8.FlatAppearance.BorderSize = 2;
  912. this.button_DeviceCut8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  913. this.button_DeviceCut8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  914. this.button_DeviceCut8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  915. this.button_DeviceCut8.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  916. this.button_DeviceCut8.ForeColor = System.Drawing.Color.PowderBlue;
  917. this.button_DeviceCut8.Location = new System.Drawing.Point(10, 239);
  918. this.button_DeviceCut8.Name = "button_DeviceCut8";
  919. this.button_DeviceCut8.Size = new System.Drawing.Size(129, 41);
  920. this.button_DeviceCut8.TabIndex = 22;
  921. this.button_DeviceCut8.Text = "단선 : 0000";
  922. this.button_DeviceCut8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  923. this.button_DeviceCut8.UseVisualStyleBackColor = false;
  924. //
  925. // button_RepeaterError8
  926. //
  927. this.button_RepeaterError8.BackColor = System.Drawing.Color.Transparent;
  928. this.button_RepeaterError8.FlatAppearance.BorderSize = 2;
  929. this.button_RepeaterError8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  930. this.button_RepeaterError8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  931. this.button_RepeaterError8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  932. this.button_RepeaterError8.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  933. this.button_RepeaterError8.ForeColor = System.Drawing.Color.PowderBlue;
  934. this.button_RepeaterError8.Location = new System.Drawing.Point(10, 197);
  935. this.button_RepeaterError8.Name = "button_RepeaterError8";
  936. this.button_RepeaterError8.Size = new System.Drawing.Size(129, 41);
  937. this.button_RepeaterError8.TabIndex = 21;
  938. this.button_RepeaterError8.Text = "통신 : 0000";
  939. this.button_RepeaterError8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  940. this.button_RepeaterError8.UseVisualStyleBackColor = false;
  941. //
  942. // button_DeviceInput8
  943. //
  944. this.button_DeviceInput8.BackColor = System.Drawing.Color.Transparent;
  945. this.button_DeviceInput8.FlatAppearance.BorderSize = 2;
  946. this.button_DeviceInput8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  947. this.button_DeviceInput8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  948. this.button_DeviceInput8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  949. this.button_DeviceInput8.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  950. this.button_DeviceInput8.ForeColor = System.Drawing.Color.PowderBlue;
  951. this.button_DeviceInput8.Location = new System.Drawing.Point(10, 155);
  952. this.button_DeviceInput8.Name = "button_DeviceInput8";
  953. this.button_DeviceInput8.Size = new System.Drawing.Size(129, 41);
  954. this.button_DeviceInput8.TabIndex = 20;
  955. this.button_DeviceInput8.Text = "설비 : 0000";
  956. this.button_DeviceInput8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  957. this.button_DeviceInput8.UseVisualStyleBackColor = false;
  958. //
  959. // button_FireDetect8
  960. //
  961. this.button_FireDetect8.BackColor = System.Drawing.Color.Transparent;
  962. this.button_FireDetect8.FlatAppearance.BorderSize = 2;
  963. this.button_FireDetect8.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  964. this.button_FireDetect8.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  965. this.button_FireDetect8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  966. this.button_FireDetect8.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  967. this.button_FireDetect8.ForeColor = System.Drawing.Color.PowderBlue;
  968. this.button_FireDetect8.Location = new System.Drawing.Point(10, 113);
  969. this.button_FireDetect8.Name = "button_FireDetect8";
  970. this.button_FireDetect8.Size = new System.Drawing.Size(129, 41);
  971. this.button_FireDetect8.TabIndex = 19;
  972. this.button_FireDetect8.Text = "화재 : 0000";
  973. this.button_FireDetect8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  974. this.button_FireDetect8.UseVisualStyleBackColor = false;
  975. //
  976. // panel_Receiver11
  977. //
  978. this.panel_Receiver11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver11.BackgroundImage")));
  979. this.panel_Receiver11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  980. this.panel_Receiver11.Controls.Add(this.button_Recover11);
  981. this.panel_Receiver11.Controls.Add(this.button_Receiver11);
  982. this.panel_Receiver11.Controls.Add(this.button_Check11);
  983. this.panel_Receiver11.Controls.Add(this.button_DeviceNotuse11);
  984. this.panel_Receiver11.Controls.Add(this.button_DeviceCut11);
  985. this.panel_Receiver11.Controls.Add(this.button_RepeaterError11);
  986. this.panel_Receiver11.Controls.Add(this.button_DeviceInput11);
  987. this.panel_Receiver11.Controls.Add(this.button_FireDetect11);
  988. this.panel_Receiver11.Location = new System.Drawing.Point(354, 529);
  989. this.panel_Receiver11.Name = "panel_Receiver11";
  990. this.panel_Receiver11.Size = new System.Drawing.Size(148, 330);
  991. this.panel_Receiver11.TabIndex = 30;
  992. //
  993. // button_Recover11
  994. //
  995. this.button_Recover11.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  996. this.button_Recover11.Location = new System.Drawing.Point(90, 18);
  997. this.button_Recover11.Name = "button_Recover11";
  998. this.button_Recover11.Size = new System.Drawing.Size(51, 41);
  999. this.button_Recover11.TabIndex = 11;
  1000. this.button_Recover11.Text = "복구";
  1001. this.button_Recover11.UseVisualStyleBackColor = true;
  1002. //
  1003. // button_Receiver11
  1004. //
  1005. this.button_Receiver11.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1006. this.button_Receiver11.Location = new System.Drawing.Point(10, 18);
  1007. this.button_Receiver11.Name = "button_Receiver11";
  1008. this.button_Receiver11.Size = new System.Drawing.Size(79, 41);
  1009. this.button_Receiver11.TabIndex = 11;
  1010. this.button_Receiver11.Text = "수신기11";
  1011. this.button_Receiver11.UseVisualStyleBackColor = true;
  1012. //
  1013. // button_Check11
  1014. //
  1015. this.button_Check11.BackColor = System.Drawing.Color.Transparent;
  1016. this.button_Check11.FlatAppearance.BorderSize = 2;
  1017. this.button_Check11.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1018. this.button_Check11.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1019. this.button_Check11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1020. this.button_Check11.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1021. this.button_Check11.ForeColor = System.Drawing.Color.PowderBlue;
  1022. this.button_Check11.ImageIndex = 20;
  1023. this.button_Check11.Location = new System.Drawing.Point(10, 65);
  1024. this.button_Check11.Name = "button_Check11";
  1025. this.button_Check11.Size = new System.Drawing.Size(129, 41);
  1026. this.button_Check11.TabIndex = 23;
  1027. this.button_Check11.Text = "점검";
  1028. this.button_Check11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  1029. this.button_Check11.UseVisualStyleBackColor = false;
  1030. //
  1031. // button_DeviceNotuse11
  1032. //
  1033. this.button_DeviceNotuse11.BackColor = System.Drawing.Color.Transparent;
  1034. this.button_DeviceNotuse11.FlatAppearance.BorderSize = 2;
  1035. this.button_DeviceNotuse11.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1036. this.button_DeviceNotuse11.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1037. this.button_DeviceNotuse11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1038. this.button_DeviceNotuse11.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1039. this.button_DeviceNotuse11.ForeColor = System.Drawing.Color.PowderBlue;
  1040. this.button_DeviceNotuse11.Location = new System.Drawing.Point(10, 281);
  1041. this.button_DeviceNotuse11.Name = "button_DeviceNotuse11";
  1042. this.button_DeviceNotuse11.Size = new System.Drawing.Size(129, 41);
  1043. this.button_DeviceNotuse11.TabIndex = 23;
  1044. this.button_DeviceNotuse11.Text = "차단 : 0000";
  1045. this.button_DeviceNotuse11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1046. this.button_DeviceNotuse11.UseVisualStyleBackColor = false;
  1047. //
  1048. // button_DeviceCut11
  1049. //
  1050. this.button_DeviceCut11.BackColor = System.Drawing.Color.Transparent;
  1051. this.button_DeviceCut11.FlatAppearance.BorderSize = 2;
  1052. this.button_DeviceCut11.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1053. this.button_DeviceCut11.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1054. this.button_DeviceCut11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1055. this.button_DeviceCut11.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1056. this.button_DeviceCut11.ForeColor = System.Drawing.Color.PowderBlue;
  1057. this.button_DeviceCut11.Location = new System.Drawing.Point(10, 239);
  1058. this.button_DeviceCut11.Name = "button_DeviceCut11";
  1059. this.button_DeviceCut11.Size = new System.Drawing.Size(129, 41);
  1060. this.button_DeviceCut11.TabIndex = 22;
  1061. this.button_DeviceCut11.Text = "단선 : 0000";
  1062. this.button_DeviceCut11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1063. this.button_DeviceCut11.UseVisualStyleBackColor = false;
  1064. //
  1065. // button_RepeaterError11
  1066. //
  1067. this.button_RepeaterError11.BackColor = System.Drawing.Color.Transparent;
  1068. this.button_RepeaterError11.FlatAppearance.BorderSize = 2;
  1069. this.button_RepeaterError11.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1070. this.button_RepeaterError11.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1071. this.button_RepeaterError11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1072. this.button_RepeaterError11.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1073. this.button_RepeaterError11.ForeColor = System.Drawing.Color.PowderBlue;
  1074. this.button_RepeaterError11.Location = new System.Drawing.Point(10, 197);
  1075. this.button_RepeaterError11.Name = "button_RepeaterError11";
  1076. this.button_RepeaterError11.Size = new System.Drawing.Size(129, 41);
  1077. this.button_RepeaterError11.TabIndex = 21;
  1078. this.button_RepeaterError11.Text = "통신 : 0000";
  1079. this.button_RepeaterError11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1080. this.button_RepeaterError11.UseVisualStyleBackColor = false;
  1081. //
  1082. // button_DeviceInput11
  1083. //
  1084. this.button_DeviceInput11.BackColor = System.Drawing.Color.Transparent;
  1085. this.button_DeviceInput11.FlatAppearance.BorderSize = 2;
  1086. this.button_DeviceInput11.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1087. this.button_DeviceInput11.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1088. this.button_DeviceInput11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1089. this.button_DeviceInput11.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1090. this.button_DeviceInput11.ForeColor = System.Drawing.Color.PowderBlue;
  1091. this.button_DeviceInput11.Location = new System.Drawing.Point(10, 155);
  1092. this.button_DeviceInput11.Name = "button_DeviceInput11";
  1093. this.button_DeviceInput11.Size = new System.Drawing.Size(129, 41);
  1094. this.button_DeviceInput11.TabIndex = 20;
  1095. this.button_DeviceInput11.Text = "설비 : 0000";
  1096. this.button_DeviceInput11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1097. this.button_DeviceInput11.UseVisualStyleBackColor = false;
  1098. //
  1099. // button_FireDetect11
  1100. //
  1101. this.button_FireDetect11.BackColor = System.Drawing.Color.Transparent;
  1102. this.button_FireDetect11.FlatAppearance.BorderSize = 2;
  1103. this.button_FireDetect11.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1104. this.button_FireDetect11.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1105. this.button_FireDetect11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1106. this.button_FireDetect11.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1107. this.button_FireDetect11.ForeColor = System.Drawing.Color.PowderBlue;
  1108. this.button_FireDetect11.Location = new System.Drawing.Point(10, 113);
  1109. this.button_FireDetect11.Name = "button_FireDetect11";
  1110. this.button_FireDetect11.Size = new System.Drawing.Size(129, 41);
  1111. this.button_FireDetect11.TabIndex = 19;
  1112. this.button_FireDetect11.Text = "화재 : 0000";
  1113. this.button_FireDetect11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1114. this.button_FireDetect11.UseVisualStyleBackColor = false;
  1115. //
  1116. // panel_Receiver12
  1117. //
  1118. this.panel_Receiver12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver12.BackgroundImage")));
  1119. this.panel_Receiver12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1120. this.panel_Receiver12.Controls.Add(this.button_Recover12);
  1121. this.panel_Receiver12.Controls.Add(this.button_Receiver12);
  1122. this.panel_Receiver12.Controls.Add(this.button_Check12);
  1123. this.panel_Receiver12.Controls.Add(this.button_DeviceNotuse12);
  1124. this.panel_Receiver12.Controls.Add(this.button_DeviceCut12);
  1125. this.panel_Receiver12.Controls.Add(this.button_RepeaterError12);
  1126. this.panel_Receiver12.Controls.Add(this.button_DeviceInput12);
  1127. this.panel_Receiver12.Controls.Add(this.button_FireDetect12);
  1128. this.panel_Receiver12.Location = new System.Drawing.Point(509, 529);
  1129. this.panel_Receiver12.Name = "panel_Receiver12";
  1130. this.panel_Receiver12.Size = new System.Drawing.Size(148, 330);
  1131. this.panel_Receiver12.TabIndex = 30;
  1132. //
  1133. // button_Recover12
  1134. //
  1135. this.button_Recover12.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  1136. this.button_Recover12.Location = new System.Drawing.Point(90, 18);
  1137. this.button_Recover12.Name = "button_Recover12";
  1138. this.button_Recover12.Size = new System.Drawing.Size(51, 41);
  1139. this.button_Recover12.TabIndex = 11;
  1140. this.button_Recover12.Text = "복구";
  1141. this.button_Recover12.UseVisualStyleBackColor = true;
  1142. //
  1143. // button_Receiver12
  1144. //
  1145. this.button_Receiver12.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1146. this.button_Receiver12.Location = new System.Drawing.Point(10, 18);
  1147. this.button_Receiver12.Name = "button_Receiver12";
  1148. this.button_Receiver12.Size = new System.Drawing.Size(79, 41);
  1149. this.button_Receiver12.TabIndex = 11;
  1150. this.button_Receiver12.Text = "수신기12";
  1151. this.button_Receiver12.UseVisualStyleBackColor = true;
  1152. //
  1153. // button_Check12
  1154. //
  1155. this.button_Check12.BackColor = System.Drawing.Color.Transparent;
  1156. this.button_Check12.FlatAppearance.BorderSize = 2;
  1157. this.button_Check12.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1158. this.button_Check12.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1159. this.button_Check12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1160. this.button_Check12.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1161. this.button_Check12.ForeColor = System.Drawing.Color.PowderBlue;
  1162. this.button_Check12.ImageIndex = 20;
  1163. this.button_Check12.Location = new System.Drawing.Point(10, 65);
  1164. this.button_Check12.Name = "button_Check12";
  1165. this.button_Check12.Size = new System.Drawing.Size(129, 41);
  1166. this.button_Check12.TabIndex = 23;
  1167. this.button_Check12.Text = "점검";
  1168. this.button_Check12.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  1169. this.button_Check12.UseVisualStyleBackColor = false;
  1170. //
  1171. // button_DeviceNotuse12
  1172. //
  1173. this.button_DeviceNotuse12.BackColor = System.Drawing.Color.Transparent;
  1174. this.button_DeviceNotuse12.FlatAppearance.BorderSize = 2;
  1175. this.button_DeviceNotuse12.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1176. this.button_DeviceNotuse12.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1177. this.button_DeviceNotuse12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1178. this.button_DeviceNotuse12.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1179. this.button_DeviceNotuse12.ForeColor = System.Drawing.Color.PowderBlue;
  1180. this.button_DeviceNotuse12.Location = new System.Drawing.Point(10, 281);
  1181. this.button_DeviceNotuse12.Name = "button_DeviceNotuse12";
  1182. this.button_DeviceNotuse12.Size = new System.Drawing.Size(129, 41);
  1183. this.button_DeviceNotuse12.TabIndex = 23;
  1184. this.button_DeviceNotuse12.Text = "차단 : 0000";
  1185. this.button_DeviceNotuse12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1186. this.button_DeviceNotuse12.UseVisualStyleBackColor = false;
  1187. //
  1188. // button_DeviceCut12
  1189. //
  1190. this.button_DeviceCut12.BackColor = System.Drawing.Color.Transparent;
  1191. this.button_DeviceCut12.FlatAppearance.BorderSize = 2;
  1192. this.button_DeviceCut12.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1193. this.button_DeviceCut12.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1194. this.button_DeviceCut12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1195. this.button_DeviceCut12.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1196. this.button_DeviceCut12.ForeColor = System.Drawing.Color.PowderBlue;
  1197. this.button_DeviceCut12.Location = new System.Drawing.Point(10, 239);
  1198. this.button_DeviceCut12.Name = "button_DeviceCut12";
  1199. this.button_DeviceCut12.Size = new System.Drawing.Size(129, 41);
  1200. this.button_DeviceCut12.TabIndex = 22;
  1201. this.button_DeviceCut12.Text = "단선 : 0000";
  1202. this.button_DeviceCut12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1203. this.button_DeviceCut12.UseVisualStyleBackColor = false;
  1204. //
  1205. // button_RepeaterError12
  1206. //
  1207. this.button_RepeaterError12.BackColor = System.Drawing.Color.Transparent;
  1208. this.button_RepeaterError12.FlatAppearance.BorderSize = 2;
  1209. this.button_RepeaterError12.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1210. this.button_RepeaterError12.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1211. this.button_RepeaterError12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1212. this.button_RepeaterError12.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1213. this.button_RepeaterError12.ForeColor = System.Drawing.Color.PowderBlue;
  1214. this.button_RepeaterError12.Location = new System.Drawing.Point(10, 197);
  1215. this.button_RepeaterError12.Name = "button_RepeaterError12";
  1216. this.button_RepeaterError12.Size = new System.Drawing.Size(129, 41);
  1217. this.button_RepeaterError12.TabIndex = 21;
  1218. this.button_RepeaterError12.Text = "통신 : 0000";
  1219. this.button_RepeaterError12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1220. this.button_RepeaterError12.UseVisualStyleBackColor = false;
  1221. //
  1222. // button_DeviceInput12
  1223. //
  1224. this.button_DeviceInput12.BackColor = System.Drawing.Color.Transparent;
  1225. this.button_DeviceInput12.FlatAppearance.BorderSize = 2;
  1226. this.button_DeviceInput12.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1227. this.button_DeviceInput12.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1228. this.button_DeviceInput12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1229. this.button_DeviceInput12.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1230. this.button_DeviceInput12.ForeColor = System.Drawing.Color.PowderBlue;
  1231. this.button_DeviceInput12.Location = new System.Drawing.Point(10, 155);
  1232. this.button_DeviceInput12.Name = "button_DeviceInput12";
  1233. this.button_DeviceInput12.Size = new System.Drawing.Size(129, 41);
  1234. this.button_DeviceInput12.TabIndex = 20;
  1235. this.button_DeviceInput12.Text = "설비 : 0000";
  1236. this.button_DeviceInput12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1237. this.button_DeviceInput12.UseVisualStyleBackColor = false;
  1238. //
  1239. // button_FireDetect12
  1240. //
  1241. this.button_FireDetect12.BackColor = System.Drawing.Color.Transparent;
  1242. this.button_FireDetect12.FlatAppearance.BorderSize = 2;
  1243. this.button_FireDetect12.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1244. this.button_FireDetect12.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1245. this.button_FireDetect12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1246. this.button_FireDetect12.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1247. this.button_FireDetect12.ForeColor = System.Drawing.Color.PowderBlue;
  1248. this.button_FireDetect12.Location = new System.Drawing.Point(10, 113);
  1249. this.button_FireDetect12.Name = "button_FireDetect12";
  1250. this.button_FireDetect12.Size = new System.Drawing.Size(129, 41);
  1251. this.button_FireDetect12.TabIndex = 19;
  1252. this.button_FireDetect12.Text = "화재 : 0000";
  1253. this.button_FireDetect12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1254. this.button_FireDetect12.UseVisualStyleBackColor = false;
  1255. //
  1256. // panel_Receiver4
  1257. //
  1258. this.panel_Receiver4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver4.BackgroundImage")));
  1259. this.panel_Receiver4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1260. this.panel_Receiver4.Controls.Add(this.button_Recover4);
  1261. this.panel_Receiver4.Controls.Add(this.button_Receiver4);
  1262. this.panel_Receiver4.Controls.Add(this.button_Check4);
  1263. this.panel_Receiver4.Controls.Add(this.button_DeviceNotuse4);
  1264. this.panel_Receiver4.Controls.Add(this.button_DeviceCut4);
  1265. this.panel_Receiver4.Controls.Add(this.button_RepeaterError4);
  1266. this.panel_Receiver4.Controls.Add(this.button_DeviceInput4);
  1267. this.panel_Receiver4.Controls.Add(this.button_FireDetect4);
  1268. this.panel_Receiver4.Location = new System.Drawing.Point(509, 193);
  1269. this.panel_Receiver4.Name = "panel_Receiver4";
  1270. this.panel_Receiver4.Size = new System.Drawing.Size(148, 330);
  1271. this.panel_Receiver4.TabIndex = 24;
  1272. //
  1273. // button_Recover4
  1274. //
  1275. this.button_Recover4.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  1276. this.button_Recover4.Location = new System.Drawing.Point(90, 18);
  1277. this.button_Recover4.Name = "button_Recover4";
  1278. this.button_Recover4.Size = new System.Drawing.Size(51, 41);
  1279. this.button_Recover4.TabIndex = 11;
  1280. this.button_Recover4.Text = "복구";
  1281. this.button_Recover4.UseVisualStyleBackColor = true;
  1282. //
  1283. // button_Receiver4
  1284. //
  1285. this.button_Receiver4.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1286. this.button_Receiver4.Location = new System.Drawing.Point(10, 18);
  1287. this.button_Receiver4.Name = "button_Receiver4";
  1288. this.button_Receiver4.Size = new System.Drawing.Size(79, 41);
  1289. this.button_Receiver4.TabIndex = 11;
  1290. this.button_Receiver4.Text = "수신기4";
  1291. this.button_Receiver4.UseVisualStyleBackColor = true;
  1292. //
  1293. // button_Check4
  1294. //
  1295. this.button_Check4.BackColor = System.Drawing.Color.Transparent;
  1296. this.button_Check4.FlatAppearance.BorderSize = 2;
  1297. this.button_Check4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1298. this.button_Check4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1299. this.button_Check4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1300. this.button_Check4.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1301. this.button_Check4.ForeColor = System.Drawing.Color.PowderBlue;
  1302. this.button_Check4.ImageIndex = 20;
  1303. this.button_Check4.Location = new System.Drawing.Point(10, 65);
  1304. this.button_Check4.Name = "button_Check4";
  1305. this.button_Check4.Size = new System.Drawing.Size(129, 41);
  1306. this.button_Check4.TabIndex = 23;
  1307. this.button_Check4.Text = "점검";
  1308. this.button_Check4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  1309. this.button_Check4.UseVisualStyleBackColor = false;
  1310. //
  1311. // button_DeviceNotuse4
  1312. //
  1313. this.button_DeviceNotuse4.BackColor = System.Drawing.Color.Transparent;
  1314. this.button_DeviceNotuse4.FlatAppearance.BorderSize = 2;
  1315. this.button_DeviceNotuse4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1316. this.button_DeviceNotuse4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1317. this.button_DeviceNotuse4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1318. this.button_DeviceNotuse4.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1319. this.button_DeviceNotuse4.ForeColor = System.Drawing.Color.PowderBlue;
  1320. this.button_DeviceNotuse4.Location = new System.Drawing.Point(10, 281);
  1321. this.button_DeviceNotuse4.Name = "button_DeviceNotuse4";
  1322. this.button_DeviceNotuse4.Size = new System.Drawing.Size(129, 41);
  1323. this.button_DeviceNotuse4.TabIndex = 23;
  1324. this.button_DeviceNotuse4.Text = "차단 : 0000";
  1325. this.button_DeviceNotuse4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1326. this.button_DeviceNotuse4.UseVisualStyleBackColor = false;
  1327. //
  1328. // button_DeviceCut4
  1329. //
  1330. this.button_DeviceCut4.BackColor = System.Drawing.Color.Transparent;
  1331. this.button_DeviceCut4.FlatAppearance.BorderSize = 2;
  1332. this.button_DeviceCut4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1333. this.button_DeviceCut4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1334. this.button_DeviceCut4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1335. this.button_DeviceCut4.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1336. this.button_DeviceCut4.ForeColor = System.Drawing.Color.PowderBlue;
  1337. this.button_DeviceCut4.Location = new System.Drawing.Point(10, 239);
  1338. this.button_DeviceCut4.Name = "button_DeviceCut4";
  1339. this.button_DeviceCut4.Size = new System.Drawing.Size(129, 41);
  1340. this.button_DeviceCut4.TabIndex = 22;
  1341. this.button_DeviceCut4.Text = "단선 : 0000";
  1342. this.button_DeviceCut4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1343. this.button_DeviceCut4.UseVisualStyleBackColor = false;
  1344. //
  1345. // button_RepeaterError4
  1346. //
  1347. this.button_RepeaterError4.BackColor = System.Drawing.Color.Transparent;
  1348. this.button_RepeaterError4.FlatAppearance.BorderSize = 2;
  1349. this.button_RepeaterError4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1350. this.button_RepeaterError4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1351. this.button_RepeaterError4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1352. this.button_RepeaterError4.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1353. this.button_RepeaterError4.ForeColor = System.Drawing.Color.PowderBlue;
  1354. this.button_RepeaterError4.Location = new System.Drawing.Point(10, 197);
  1355. this.button_RepeaterError4.Name = "button_RepeaterError4";
  1356. this.button_RepeaterError4.Size = new System.Drawing.Size(129, 41);
  1357. this.button_RepeaterError4.TabIndex = 21;
  1358. this.button_RepeaterError4.Text = "통신 : 0000";
  1359. this.button_RepeaterError4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1360. this.button_RepeaterError4.UseVisualStyleBackColor = false;
  1361. //
  1362. // button_DeviceInput4
  1363. //
  1364. this.button_DeviceInput4.BackColor = System.Drawing.Color.Transparent;
  1365. this.button_DeviceInput4.FlatAppearance.BorderSize = 2;
  1366. this.button_DeviceInput4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1367. this.button_DeviceInput4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1368. this.button_DeviceInput4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1369. this.button_DeviceInput4.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1370. this.button_DeviceInput4.ForeColor = System.Drawing.Color.PowderBlue;
  1371. this.button_DeviceInput4.Location = new System.Drawing.Point(10, 155);
  1372. this.button_DeviceInput4.Name = "button_DeviceInput4";
  1373. this.button_DeviceInput4.Size = new System.Drawing.Size(129, 41);
  1374. this.button_DeviceInput4.TabIndex = 20;
  1375. this.button_DeviceInput4.Text = "설비 : 0000";
  1376. this.button_DeviceInput4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1377. this.button_DeviceInput4.UseVisualStyleBackColor = false;
  1378. //
  1379. // button_FireDetect4
  1380. //
  1381. this.button_FireDetect4.BackColor = System.Drawing.Color.Transparent;
  1382. this.button_FireDetect4.FlatAppearance.BorderSize = 2;
  1383. this.button_FireDetect4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1384. this.button_FireDetect4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1385. this.button_FireDetect4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1386. this.button_FireDetect4.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1387. this.button_FireDetect4.ForeColor = System.Drawing.Color.PowderBlue;
  1388. this.button_FireDetect4.Location = new System.Drawing.Point(10, 113);
  1389. this.button_FireDetect4.Name = "button_FireDetect4";
  1390. this.button_FireDetect4.Size = new System.Drawing.Size(129, 41);
  1391. this.button_FireDetect4.TabIndex = 19;
  1392. this.button_FireDetect4.Text = "화재 : 0000";
  1393. this.button_FireDetect4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1394. this.button_FireDetect4.UseVisualStyleBackColor = false;
  1395. //
  1396. // panel_Receiver14
  1397. //
  1398. this.panel_Receiver14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver14.BackgroundImage")));
  1399. this.panel_Receiver14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1400. this.panel_Receiver14.Controls.Add(this.button_Recover14);
  1401. this.panel_Receiver14.Controls.Add(this.button_Receiver14);
  1402. this.panel_Receiver14.Controls.Add(this.button_Check14);
  1403. this.panel_Receiver14.Controls.Add(this.button_DeviceNotuse14);
  1404. this.panel_Receiver14.Controls.Add(this.button_DeviceCut14);
  1405. this.panel_Receiver14.Controls.Add(this.button_RepeaterError14);
  1406. this.panel_Receiver14.Controls.Add(this.button_DeviceInput14);
  1407. this.panel_Receiver14.Controls.Add(this.button_FireDetect14);
  1408. this.panel_Receiver14.Location = new System.Drawing.Point(819, 529);
  1409. this.panel_Receiver14.Name = "panel_Receiver14";
  1410. this.panel_Receiver14.Size = new System.Drawing.Size(148, 330);
  1411. this.panel_Receiver14.TabIndex = 31;
  1412. //
  1413. // button_Recover14
  1414. //
  1415. this.button_Recover14.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  1416. this.button_Recover14.Location = new System.Drawing.Point(90, 18);
  1417. this.button_Recover14.Name = "button_Recover14";
  1418. this.button_Recover14.Size = new System.Drawing.Size(51, 41);
  1419. this.button_Recover14.TabIndex = 11;
  1420. this.button_Recover14.Text = "복구";
  1421. this.button_Recover14.UseVisualStyleBackColor = true;
  1422. //
  1423. // button_Receiver14
  1424. //
  1425. this.button_Receiver14.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1426. this.button_Receiver14.Location = new System.Drawing.Point(10, 18);
  1427. this.button_Receiver14.Name = "button_Receiver14";
  1428. this.button_Receiver14.Size = new System.Drawing.Size(79, 41);
  1429. this.button_Receiver14.TabIndex = 11;
  1430. this.button_Receiver14.Text = "수신기14";
  1431. this.button_Receiver14.UseVisualStyleBackColor = true;
  1432. //
  1433. // button_Check14
  1434. //
  1435. this.button_Check14.BackColor = System.Drawing.Color.Transparent;
  1436. this.button_Check14.FlatAppearance.BorderSize = 2;
  1437. this.button_Check14.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1438. this.button_Check14.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1439. this.button_Check14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1440. this.button_Check14.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1441. this.button_Check14.ForeColor = System.Drawing.Color.PowderBlue;
  1442. this.button_Check14.ImageIndex = 20;
  1443. this.button_Check14.Location = new System.Drawing.Point(10, 65);
  1444. this.button_Check14.Name = "button_Check14";
  1445. this.button_Check14.Size = new System.Drawing.Size(129, 41);
  1446. this.button_Check14.TabIndex = 23;
  1447. this.button_Check14.Text = "점검";
  1448. this.button_Check14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  1449. this.button_Check14.UseVisualStyleBackColor = false;
  1450. //
  1451. // button_DeviceNotuse14
  1452. //
  1453. this.button_DeviceNotuse14.BackColor = System.Drawing.Color.Transparent;
  1454. this.button_DeviceNotuse14.FlatAppearance.BorderSize = 2;
  1455. this.button_DeviceNotuse14.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1456. this.button_DeviceNotuse14.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1457. this.button_DeviceNotuse14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1458. this.button_DeviceNotuse14.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1459. this.button_DeviceNotuse14.ForeColor = System.Drawing.Color.PowderBlue;
  1460. this.button_DeviceNotuse14.Location = new System.Drawing.Point(10, 281);
  1461. this.button_DeviceNotuse14.Name = "button_DeviceNotuse14";
  1462. this.button_DeviceNotuse14.Size = new System.Drawing.Size(129, 41);
  1463. this.button_DeviceNotuse14.TabIndex = 23;
  1464. this.button_DeviceNotuse14.Text = "차단 : 0000";
  1465. this.button_DeviceNotuse14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1466. this.button_DeviceNotuse14.UseVisualStyleBackColor = false;
  1467. //
  1468. // button_DeviceCut14
  1469. //
  1470. this.button_DeviceCut14.BackColor = System.Drawing.Color.Transparent;
  1471. this.button_DeviceCut14.FlatAppearance.BorderSize = 2;
  1472. this.button_DeviceCut14.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1473. this.button_DeviceCut14.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1474. this.button_DeviceCut14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1475. this.button_DeviceCut14.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1476. this.button_DeviceCut14.ForeColor = System.Drawing.Color.PowderBlue;
  1477. this.button_DeviceCut14.Location = new System.Drawing.Point(10, 239);
  1478. this.button_DeviceCut14.Name = "button_DeviceCut14";
  1479. this.button_DeviceCut14.Size = new System.Drawing.Size(129, 41);
  1480. this.button_DeviceCut14.TabIndex = 22;
  1481. this.button_DeviceCut14.Text = "단선 : 0000";
  1482. this.button_DeviceCut14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1483. this.button_DeviceCut14.UseVisualStyleBackColor = false;
  1484. //
  1485. // button_RepeaterError14
  1486. //
  1487. this.button_RepeaterError14.BackColor = System.Drawing.Color.Transparent;
  1488. this.button_RepeaterError14.FlatAppearance.BorderSize = 2;
  1489. this.button_RepeaterError14.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1490. this.button_RepeaterError14.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1491. this.button_RepeaterError14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1492. this.button_RepeaterError14.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1493. this.button_RepeaterError14.ForeColor = System.Drawing.Color.PowderBlue;
  1494. this.button_RepeaterError14.Location = new System.Drawing.Point(10, 197);
  1495. this.button_RepeaterError14.Name = "button_RepeaterError14";
  1496. this.button_RepeaterError14.Size = new System.Drawing.Size(129, 41);
  1497. this.button_RepeaterError14.TabIndex = 21;
  1498. this.button_RepeaterError14.Text = "통신 : 0000";
  1499. this.button_RepeaterError14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1500. this.button_RepeaterError14.UseVisualStyleBackColor = false;
  1501. //
  1502. // button_DeviceInput14
  1503. //
  1504. this.button_DeviceInput14.BackColor = System.Drawing.Color.Transparent;
  1505. this.button_DeviceInput14.FlatAppearance.BorderSize = 2;
  1506. this.button_DeviceInput14.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1507. this.button_DeviceInput14.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1508. this.button_DeviceInput14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1509. this.button_DeviceInput14.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1510. this.button_DeviceInput14.ForeColor = System.Drawing.Color.PowderBlue;
  1511. this.button_DeviceInput14.Location = new System.Drawing.Point(10, 155);
  1512. this.button_DeviceInput14.Name = "button_DeviceInput14";
  1513. this.button_DeviceInput14.Size = new System.Drawing.Size(129, 41);
  1514. this.button_DeviceInput14.TabIndex = 20;
  1515. this.button_DeviceInput14.Text = "설비 : 0000";
  1516. this.button_DeviceInput14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1517. this.button_DeviceInput14.UseVisualStyleBackColor = false;
  1518. //
  1519. // button_FireDetect14
  1520. //
  1521. this.button_FireDetect14.BackColor = System.Drawing.Color.Transparent;
  1522. this.button_FireDetect14.FlatAppearance.BorderSize = 2;
  1523. this.button_FireDetect14.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1524. this.button_FireDetect14.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1525. this.button_FireDetect14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1526. this.button_FireDetect14.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1527. this.button_FireDetect14.ForeColor = System.Drawing.Color.PowderBlue;
  1528. this.button_FireDetect14.Location = new System.Drawing.Point(10, 113);
  1529. this.button_FireDetect14.Name = "button_FireDetect14";
  1530. this.button_FireDetect14.Size = new System.Drawing.Size(129, 41);
  1531. this.button_FireDetect14.TabIndex = 19;
  1532. this.button_FireDetect14.Text = "화재 : 0000";
  1533. this.button_FireDetect14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1534. this.button_FireDetect14.UseVisualStyleBackColor = false;
  1535. //
  1536. // panel_Receiver6
  1537. //
  1538. this.panel_Receiver6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver6.BackgroundImage")));
  1539. this.panel_Receiver6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1540. this.panel_Receiver6.Controls.Add(this.button_Recover6);
  1541. this.panel_Receiver6.Controls.Add(this.button_Receiver6);
  1542. this.panel_Receiver6.Controls.Add(this.button_Check6);
  1543. this.panel_Receiver6.Controls.Add(this.button_DeviceNotuse6);
  1544. this.panel_Receiver6.Controls.Add(this.button_DeviceCut6);
  1545. this.panel_Receiver6.Controls.Add(this.button_RepeaterError6);
  1546. this.panel_Receiver6.Controls.Add(this.button_DeviceInput6);
  1547. this.panel_Receiver6.Controls.Add(this.button_FireDetect6);
  1548. this.panel_Receiver6.Location = new System.Drawing.Point(819, 193);
  1549. this.panel_Receiver6.Name = "panel_Receiver6";
  1550. this.panel_Receiver6.Size = new System.Drawing.Size(148, 330);
  1551. this.panel_Receiver6.TabIndex = 24;
  1552. //
  1553. // button_Recover6
  1554. //
  1555. this.button_Recover6.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  1556. this.button_Recover6.Location = new System.Drawing.Point(90, 18);
  1557. this.button_Recover6.Name = "button_Recover6";
  1558. this.button_Recover6.Size = new System.Drawing.Size(51, 41);
  1559. this.button_Recover6.TabIndex = 11;
  1560. this.button_Recover6.Text = "복구";
  1561. this.button_Recover6.UseVisualStyleBackColor = true;
  1562. //
  1563. // button_Receiver6
  1564. //
  1565. this.button_Receiver6.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1566. this.button_Receiver6.Location = new System.Drawing.Point(10, 18);
  1567. this.button_Receiver6.Name = "button_Receiver6";
  1568. this.button_Receiver6.Size = new System.Drawing.Size(79, 41);
  1569. this.button_Receiver6.TabIndex = 11;
  1570. this.button_Receiver6.Text = "수신기6";
  1571. this.button_Receiver6.UseVisualStyleBackColor = true;
  1572. //
  1573. // button_Check6
  1574. //
  1575. this.button_Check6.BackColor = System.Drawing.Color.Transparent;
  1576. this.button_Check6.FlatAppearance.BorderSize = 2;
  1577. this.button_Check6.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1578. this.button_Check6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1579. this.button_Check6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1580. this.button_Check6.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1581. this.button_Check6.ForeColor = System.Drawing.Color.PowderBlue;
  1582. this.button_Check6.ImageIndex = 20;
  1583. this.button_Check6.Location = new System.Drawing.Point(10, 65);
  1584. this.button_Check6.Name = "button_Check6";
  1585. this.button_Check6.Size = new System.Drawing.Size(129, 41);
  1586. this.button_Check6.TabIndex = 23;
  1587. this.button_Check6.Text = "점검";
  1588. this.button_Check6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  1589. this.button_Check6.UseVisualStyleBackColor = false;
  1590. //
  1591. // button_DeviceNotuse6
  1592. //
  1593. this.button_DeviceNotuse6.BackColor = System.Drawing.Color.Transparent;
  1594. this.button_DeviceNotuse6.FlatAppearance.BorderSize = 2;
  1595. this.button_DeviceNotuse6.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1596. this.button_DeviceNotuse6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1597. this.button_DeviceNotuse6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1598. this.button_DeviceNotuse6.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1599. this.button_DeviceNotuse6.ForeColor = System.Drawing.Color.PowderBlue;
  1600. this.button_DeviceNotuse6.Location = new System.Drawing.Point(10, 281);
  1601. this.button_DeviceNotuse6.Name = "button_DeviceNotuse6";
  1602. this.button_DeviceNotuse6.Size = new System.Drawing.Size(129, 41);
  1603. this.button_DeviceNotuse6.TabIndex = 23;
  1604. this.button_DeviceNotuse6.Text = "차단 : 0000";
  1605. this.button_DeviceNotuse6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1606. this.button_DeviceNotuse6.UseVisualStyleBackColor = false;
  1607. //
  1608. // button_DeviceCut6
  1609. //
  1610. this.button_DeviceCut6.BackColor = System.Drawing.Color.Transparent;
  1611. this.button_DeviceCut6.FlatAppearance.BorderSize = 2;
  1612. this.button_DeviceCut6.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1613. this.button_DeviceCut6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1614. this.button_DeviceCut6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1615. this.button_DeviceCut6.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1616. this.button_DeviceCut6.ForeColor = System.Drawing.Color.PowderBlue;
  1617. this.button_DeviceCut6.Location = new System.Drawing.Point(10, 239);
  1618. this.button_DeviceCut6.Name = "button_DeviceCut6";
  1619. this.button_DeviceCut6.Size = new System.Drawing.Size(129, 41);
  1620. this.button_DeviceCut6.TabIndex = 22;
  1621. this.button_DeviceCut6.Text = "단선 : 0000";
  1622. this.button_DeviceCut6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1623. this.button_DeviceCut6.UseVisualStyleBackColor = false;
  1624. //
  1625. // button_RepeaterError6
  1626. //
  1627. this.button_RepeaterError6.BackColor = System.Drawing.Color.Transparent;
  1628. this.button_RepeaterError6.FlatAppearance.BorderSize = 2;
  1629. this.button_RepeaterError6.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1630. this.button_RepeaterError6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1631. this.button_RepeaterError6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1632. this.button_RepeaterError6.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1633. this.button_RepeaterError6.ForeColor = System.Drawing.Color.PowderBlue;
  1634. this.button_RepeaterError6.Location = new System.Drawing.Point(10, 197);
  1635. this.button_RepeaterError6.Name = "button_RepeaterError6";
  1636. this.button_RepeaterError6.Size = new System.Drawing.Size(129, 41);
  1637. this.button_RepeaterError6.TabIndex = 21;
  1638. this.button_RepeaterError6.Text = "통신 : 0000";
  1639. this.button_RepeaterError6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1640. this.button_RepeaterError6.UseVisualStyleBackColor = false;
  1641. //
  1642. // button_DeviceInput6
  1643. //
  1644. this.button_DeviceInput6.BackColor = System.Drawing.Color.Transparent;
  1645. this.button_DeviceInput6.FlatAppearance.BorderSize = 2;
  1646. this.button_DeviceInput6.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1647. this.button_DeviceInput6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1648. this.button_DeviceInput6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1649. this.button_DeviceInput6.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1650. this.button_DeviceInput6.ForeColor = System.Drawing.Color.PowderBlue;
  1651. this.button_DeviceInput6.Location = new System.Drawing.Point(10, 155);
  1652. this.button_DeviceInput6.Name = "button_DeviceInput6";
  1653. this.button_DeviceInput6.Size = new System.Drawing.Size(129, 41);
  1654. this.button_DeviceInput6.TabIndex = 20;
  1655. this.button_DeviceInput6.Text = "설비 : 0000";
  1656. this.button_DeviceInput6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1657. this.button_DeviceInput6.UseVisualStyleBackColor = false;
  1658. //
  1659. // button_FireDetect6
  1660. //
  1661. this.button_FireDetect6.BackColor = System.Drawing.Color.Transparent;
  1662. this.button_FireDetect6.FlatAppearance.BorderSize = 2;
  1663. this.button_FireDetect6.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1664. this.button_FireDetect6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1665. this.button_FireDetect6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1666. this.button_FireDetect6.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1667. this.button_FireDetect6.ForeColor = System.Drawing.Color.PowderBlue;
  1668. this.button_FireDetect6.Location = new System.Drawing.Point(10, 113);
  1669. this.button_FireDetect6.Name = "button_FireDetect6";
  1670. this.button_FireDetect6.Size = new System.Drawing.Size(129, 41);
  1671. this.button_FireDetect6.TabIndex = 19;
  1672. this.button_FireDetect6.Text = "화재 : 0000";
  1673. this.button_FireDetect6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1674. this.button_FireDetect6.UseVisualStyleBackColor = false;
  1675. //
  1676. // panel_Receiver2
  1677. //
  1678. this.panel_Receiver2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver2.BackgroundImage")));
  1679. this.panel_Receiver2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1680. this.panel_Receiver2.Controls.Add(this.button_Recover2);
  1681. this.panel_Receiver2.Controls.Add(this.button_Receiver2);
  1682. this.panel_Receiver2.Controls.Add(this.button_Check2);
  1683. this.panel_Receiver2.Controls.Add(this.button_DeviceNotuse2);
  1684. this.panel_Receiver2.Controls.Add(this.button_DeviceCut2);
  1685. this.panel_Receiver2.Controls.Add(this.button_RepeaterError2);
  1686. this.panel_Receiver2.Controls.Add(this.button_DeviceInput2);
  1687. this.panel_Receiver2.Controls.Add(this.button_FireDetect2);
  1688. this.panel_Receiver2.Location = new System.Drawing.Point(199, 193);
  1689. this.panel_Receiver2.Name = "panel_Receiver2";
  1690. this.panel_Receiver2.Size = new System.Drawing.Size(148, 330);
  1691. this.panel_Receiver2.TabIndex = 24;
  1692. //
  1693. // button_Recover2
  1694. //
  1695. this.button_Recover2.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  1696. this.button_Recover2.Location = new System.Drawing.Point(90, 18);
  1697. this.button_Recover2.Name = "button_Recover2";
  1698. this.button_Recover2.Size = new System.Drawing.Size(51, 41);
  1699. this.button_Recover2.TabIndex = 11;
  1700. this.button_Recover2.Text = "복구";
  1701. this.button_Recover2.UseVisualStyleBackColor = true;
  1702. //
  1703. // button_Receiver2
  1704. //
  1705. this.button_Receiver2.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1706. this.button_Receiver2.Location = new System.Drawing.Point(10, 18);
  1707. this.button_Receiver2.Name = "button_Receiver2";
  1708. this.button_Receiver2.Size = new System.Drawing.Size(79, 41);
  1709. this.button_Receiver2.TabIndex = 11;
  1710. this.button_Receiver2.Text = "수신기2";
  1711. this.button_Receiver2.UseVisualStyleBackColor = true;
  1712. //
  1713. // button_Check2
  1714. //
  1715. this.button_Check2.BackColor = System.Drawing.Color.Transparent;
  1716. this.button_Check2.FlatAppearance.BorderSize = 2;
  1717. this.button_Check2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1718. this.button_Check2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1719. this.button_Check2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1720. this.button_Check2.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1721. this.button_Check2.ForeColor = System.Drawing.Color.PowderBlue;
  1722. this.button_Check2.ImageIndex = 20;
  1723. this.button_Check2.Location = new System.Drawing.Point(10, 65);
  1724. this.button_Check2.Name = "button_Check2";
  1725. this.button_Check2.Size = new System.Drawing.Size(129, 41);
  1726. this.button_Check2.TabIndex = 23;
  1727. this.button_Check2.Text = "점검";
  1728. this.button_Check2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  1729. this.button_Check2.UseVisualStyleBackColor = false;
  1730. //
  1731. // button_DeviceNotuse2
  1732. //
  1733. this.button_DeviceNotuse2.BackColor = System.Drawing.Color.Transparent;
  1734. this.button_DeviceNotuse2.FlatAppearance.BorderSize = 2;
  1735. this.button_DeviceNotuse2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1736. this.button_DeviceNotuse2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1737. this.button_DeviceNotuse2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1738. this.button_DeviceNotuse2.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1739. this.button_DeviceNotuse2.ForeColor = System.Drawing.Color.PowderBlue;
  1740. this.button_DeviceNotuse2.Location = new System.Drawing.Point(10, 281);
  1741. this.button_DeviceNotuse2.Name = "button_DeviceNotuse2";
  1742. this.button_DeviceNotuse2.Size = new System.Drawing.Size(129, 41);
  1743. this.button_DeviceNotuse2.TabIndex = 23;
  1744. this.button_DeviceNotuse2.Text = "차단 : 0000";
  1745. this.button_DeviceNotuse2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1746. this.button_DeviceNotuse2.UseVisualStyleBackColor = false;
  1747. //
  1748. // button_DeviceCut2
  1749. //
  1750. this.button_DeviceCut2.BackColor = System.Drawing.Color.Transparent;
  1751. this.button_DeviceCut2.FlatAppearance.BorderSize = 2;
  1752. this.button_DeviceCut2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1753. this.button_DeviceCut2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1754. this.button_DeviceCut2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1755. this.button_DeviceCut2.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1756. this.button_DeviceCut2.ForeColor = System.Drawing.Color.PowderBlue;
  1757. this.button_DeviceCut2.Location = new System.Drawing.Point(10, 239);
  1758. this.button_DeviceCut2.Name = "button_DeviceCut2";
  1759. this.button_DeviceCut2.Size = new System.Drawing.Size(129, 41);
  1760. this.button_DeviceCut2.TabIndex = 22;
  1761. this.button_DeviceCut2.Text = "단선 : 0000";
  1762. this.button_DeviceCut2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1763. this.button_DeviceCut2.UseVisualStyleBackColor = false;
  1764. //
  1765. // button_RepeaterError2
  1766. //
  1767. this.button_RepeaterError2.BackColor = System.Drawing.Color.Transparent;
  1768. this.button_RepeaterError2.FlatAppearance.BorderSize = 2;
  1769. this.button_RepeaterError2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1770. this.button_RepeaterError2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1771. this.button_RepeaterError2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1772. this.button_RepeaterError2.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1773. this.button_RepeaterError2.ForeColor = System.Drawing.Color.PowderBlue;
  1774. this.button_RepeaterError2.Location = new System.Drawing.Point(10, 197);
  1775. this.button_RepeaterError2.Name = "button_RepeaterError2";
  1776. this.button_RepeaterError2.Size = new System.Drawing.Size(129, 41);
  1777. this.button_RepeaterError2.TabIndex = 21;
  1778. this.button_RepeaterError2.Text = "통신 : 0000";
  1779. this.button_RepeaterError2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1780. this.button_RepeaterError2.UseVisualStyleBackColor = false;
  1781. //
  1782. // button_DeviceInput2
  1783. //
  1784. this.button_DeviceInput2.BackColor = System.Drawing.Color.Transparent;
  1785. this.button_DeviceInput2.FlatAppearance.BorderSize = 2;
  1786. this.button_DeviceInput2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1787. this.button_DeviceInput2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1788. this.button_DeviceInput2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1789. this.button_DeviceInput2.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1790. this.button_DeviceInput2.ForeColor = System.Drawing.Color.PowderBlue;
  1791. this.button_DeviceInput2.Location = new System.Drawing.Point(10, 155);
  1792. this.button_DeviceInput2.Name = "button_DeviceInput2";
  1793. this.button_DeviceInput2.Size = new System.Drawing.Size(129, 41);
  1794. this.button_DeviceInput2.TabIndex = 20;
  1795. this.button_DeviceInput2.Text = "설비 : 0000";
  1796. this.button_DeviceInput2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1797. this.button_DeviceInput2.UseVisualStyleBackColor = false;
  1798. //
  1799. // button_FireDetect2
  1800. //
  1801. this.button_FireDetect2.BackColor = System.Drawing.Color.Transparent;
  1802. this.button_FireDetect2.FlatAppearance.BorderSize = 2;
  1803. this.button_FireDetect2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1804. this.button_FireDetect2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1805. this.button_FireDetect2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1806. this.button_FireDetect2.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1807. this.button_FireDetect2.ForeColor = System.Drawing.Color.PowderBlue;
  1808. this.button_FireDetect2.Location = new System.Drawing.Point(10, 113);
  1809. this.button_FireDetect2.Name = "button_FireDetect2";
  1810. this.button_FireDetect2.Size = new System.Drawing.Size(129, 41);
  1811. this.button_FireDetect2.TabIndex = 19;
  1812. this.button_FireDetect2.Text = "화재 : 0000";
  1813. this.button_FireDetect2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1814. this.button_FireDetect2.UseVisualStyleBackColor = false;
  1815. //
  1816. // panel_Receiver15
  1817. //
  1818. this.panel_Receiver15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver15.BackgroundImage")));
  1819. this.panel_Receiver15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1820. this.panel_Receiver15.Controls.Add(this.button_Recover15);
  1821. this.panel_Receiver15.Controls.Add(this.button_Receiver15);
  1822. this.panel_Receiver15.Controls.Add(this.button_Check15);
  1823. this.panel_Receiver15.Controls.Add(this.button_DeviceNotuse15);
  1824. this.panel_Receiver15.Controls.Add(this.button_DeviceCut15);
  1825. this.panel_Receiver15.Controls.Add(this.button_RepeaterError15);
  1826. this.panel_Receiver15.Controls.Add(this.button_DeviceInput15);
  1827. this.panel_Receiver15.Controls.Add(this.button_FireDetect15);
  1828. this.panel_Receiver15.Location = new System.Drawing.Point(974, 529);
  1829. this.panel_Receiver15.Name = "panel_Receiver15";
  1830. this.panel_Receiver15.Size = new System.Drawing.Size(148, 330);
  1831. this.panel_Receiver15.TabIndex = 26;
  1832. //
  1833. // button_Recover15
  1834. //
  1835. this.button_Recover15.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  1836. this.button_Recover15.Location = new System.Drawing.Point(90, 18);
  1837. this.button_Recover15.Name = "button_Recover15";
  1838. this.button_Recover15.Size = new System.Drawing.Size(51, 41);
  1839. this.button_Recover15.TabIndex = 11;
  1840. this.button_Recover15.Text = "복구";
  1841. this.button_Recover15.UseVisualStyleBackColor = true;
  1842. //
  1843. // button_Receiver15
  1844. //
  1845. this.button_Receiver15.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1846. this.button_Receiver15.Location = new System.Drawing.Point(10, 18);
  1847. this.button_Receiver15.Name = "button_Receiver15";
  1848. this.button_Receiver15.Size = new System.Drawing.Size(79, 41);
  1849. this.button_Receiver15.TabIndex = 11;
  1850. this.button_Receiver15.Text = "수신기15";
  1851. this.button_Receiver15.UseVisualStyleBackColor = true;
  1852. //
  1853. // button_Check15
  1854. //
  1855. this.button_Check15.BackColor = System.Drawing.Color.Transparent;
  1856. this.button_Check15.FlatAppearance.BorderSize = 2;
  1857. this.button_Check15.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1858. this.button_Check15.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1859. this.button_Check15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1860. this.button_Check15.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1861. this.button_Check15.ForeColor = System.Drawing.Color.PowderBlue;
  1862. this.button_Check15.ImageIndex = 20;
  1863. this.button_Check15.Location = new System.Drawing.Point(10, 65);
  1864. this.button_Check15.Name = "button_Check15";
  1865. this.button_Check15.Size = new System.Drawing.Size(129, 41);
  1866. this.button_Check15.TabIndex = 23;
  1867. this.button_Check15.Text = "점검";
  1868. this.button_Check15.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  1869. this.button_Check15.UseVisualStyleBackColor = false;
  1870. //
  1871. // button_DeviceNotuse15
  1872. //
  1873. this.button_DeviceNotuse15.BackColor = System.Drawing.Color.Transparent;
  1874. this.button_DeviceNotuse15.FlatAppearance.BorderSize = 2;
  1875. this.button_DeviceNotuse15.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1876. this.button_DeviceNotuse15.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1877. this.button_DeviceNotuse15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1878. this.button_DeviceNotuse15.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1879. this.button_DeviceNotuse15.ForeColor = System.Drawing.Color.PowderBlue;
  1880. this.button_DeviceNotuse15.Location = new System.Drawing.Point(10, 281);
  1881. this.button_DeviceNotuse15.Name = "button_DeviceNotuse15";
  1882. this.button_DeviceNotuse15.Size = new System.Drawing.Size(129, 41);
  1883. this.button_DeviceNotuse15.TabIndex = 23;
  1884. this.button_DeviceNotuse15.Text = "차단 : 0000";
  1885. this.button_DeviceNotuse15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1886. this.button_DeviceNotuse15.UseVisualStyleBackColor = false;
  1887. //
  1888. // button_DeviceCut15
  1889. //
  1890. this.button_DeviceCut15.BackColor = System.Drawing.Color.Transparent;
  1891. this.button_DeviceCut15.FlatAppearance.BorderSize = 2;
  1892. this.button_DeviceCut15.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1893. this.button_DeviceCut15.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1894. this.button_DeviceCut15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1895. this.button_DeviceCut15.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1896. this.button_DeviceCut15.ForeColor = System.Drawing.Color.PowderBlue;
  1897. this.button_DeviceCut15.Location = new System.Drawing.Point(10, 239);
  1898. this.button_DeviceCut15.Name = "button_DeviceCut15";
  1899. this.button_DeviceCut15.Size = new System.Drawing.Size(129, 41);
  1900. this.button_DeviceCut15.TabIndex = 22;
  1901. this.button_DeviceCut15.Text = "단선 : 0000";
  1902. this.button_DeviceCut15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1903. this.button_DeviceCut15.UseVisualStyleBackColor = false;
  1904. //
  1905. // button_RepeaterError15
  1906. //
  1907. this.button_RepeaterError15.BackColor = System.Drawing.Color.Transparent;
  1908. this.button_RepeaterError15.FlatAppearance.BorderSize = 2;
  1909. this.button_RepeaterError15.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1910. this.button_RepeaterError15.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1911. this.button_RepeaterError15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1912. this.button_RepeaterError15.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1913. this.button_RepeaterError15.ForeColor = System.Drawing.Color.PowderBlue;
  1914. this.button_RepeaterError15.Location = new System.Drawing.Point(10, 197);
  1915. this.button_RepeaterError15.Name = "button_RepeaterError15";
  1916. this.button_RepeaterError15.Size = new System.Drawing.Size(129, 41);
  1917. this.button_RepeaterError15.TabIndex = 21;
  1918. this.button_RepeaterError15.Text = "통신 : 0000";
  1919. this.button_RepeaterError15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1920. this.button_RepeaterError15.UseVisualStyleBackColor = false;
  1921. //
  1922. // button_DeviceInput15
  1923. //
  1924. this.button_DeviceInput15.BackColor = System.Drawing.Color.Transparent;
  1925. this.button_DeviceInput15.FlatAppearance.BorderSize = 2;
  1926. this.button_DeviceInput15.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1927. this.button_DeviceInput15.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1928. this.button_DeviceInput15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1929. this.button_DeviceInput15.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1930. this.button_DeviceInput15.ForeColor = System.Drawing.Color.PowderBlue;
  1931. this.button_DeviceInput15.Location = new System.Drawing.Point(10, 155);
  1932. this.button_DeviceInput15.Name = "button_DeviceInput15";
  1933. this.button_DeviceInput15.Size = new System.Drawing.Size(129, 41);
  1934. this.button_DeviceInput15.TabIndex = 20;
  1935. this.button_DeviceInput15.Text = "설비 : 0000";
  1936. this.button_DeviceInput15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1937. this.button_DeviceInput15.UseVisualStyleBackColor = false;
  1938. //
  1939. // button_FireDetect15
  1940. //
  1941. this.button_FireDetect15.BackColor = System.Drawing.Color.Transparent;
  1942. this.button_FireDetect15.FlatAppearance.BorderSize = 2;
  1943. this.button_FireDetect15.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1944. this.button_FireDetect15.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1945. this.button_FireDetect15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1946. this.button_FireDetect15.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  1947. this.button_FireDetect15.ForeColor = System.Drawing.Color.PowderBlue;
  1948. this.button_FireDetect15.Location = new System.Drawing.Point(10, 113);
  1949. this.button_FireDetect15.Name = "button_FireDetect15";
  1950. this.button_FireDetect15.Size = new System.Drawing.Size(129, 41);
  1951. this.button_FireDetect15.TabIndex = 19;
  1952. this.button_FireDetect15.Text = "화재 : 0000";
  1953. this.button_FireDetect15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1954. this.button_FireDetect15.UseVisualStyleBackColor = false;
  1955. //
  1956. // panel_Receiver7
  1957. //
  1958. this.panel_Receiver7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver7.BackgroundImage")));
  1959. this.panel_Receiver7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1960. this.panel_Receiver7.Controls.Add(this.button_Recover7);
  1961. this.panel_Receiver7.Controls.Add(this.button_Receiver7);
  1962. this.panel_Receiver7.Controls.Add(this.button_Check7);
  1963. this.panel_Receiver7.Controls.Add(this.button_DeviceNotuse7);
  1964. this.panel_Receiver7.Controls.Add(this.button_DeviceCut7);
  1965. this.panel_Receiver7.Controls.Add(this.button_RepeaterError7);
  1966. this.panel_Receiver7.Controls.Add(this.button_DeviceInput7);
  1967. this.panel_Receiver7.Controls.Add(this.button_FireDetect7);
  1968. this.panel_Receiver7.Location = new System.Drawing.Point(974, 193);
  1969. this.panel_Receiver7.Name = "panel_Receiver7";
  1970. this.panel_Receiver7.Size = new System.Drawing.Size(148, 330);
  1971. this.panel_Receiver7.TabIndex = 12;
  1972. //
  1973. // button_Recover7
  1974. //
  1975. this.button_Recover7.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  1976. this.button_Recover7.Location = new System.Drawing.Point(90, 18);
  1977. this.button_Recover7.Name = "button_Recover7";
  1978. this.button_Recover7.Size = new System.Drawing.Size(51, 41);
  1979. this.button_Recover7.TabIndex = 11;
  1980. this.button_Recover7.Text = "복구";
  1981. this.button_Recover7.UseVisualStyleBackColor = true;
  1982. //
  1983. // button_Receiver7
  1984. //
  1985. this.button_Receiver7.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  1986. this.button_Receiver7.Location = new System.Drawing.Point(10, 18);
  1987. this.button_Receiver7.Name = "button_Receiver7";
  1988. this.button_Receiver7.Size = new System.Drawing.Size(79, 41);
  1989. this.button_Receiver7.TabIndex = 11;
  1990. this.button_Receiver7.Text = "수신기7";
  1991. this.button_Receiver7.UseVisualStyleBackColor = true;
  1992. //
  1993. // button_Check7
  1994. //
  1995. this.button_Check7.BackColor = System.Drawing.Color.Transparent;
  1996. this.button_Check7.FlatAppearance.BorderSize = 2;
  1997. this.button_Check7.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  1998. this.button_Check7.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  1999. this.button_Check7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2000. this.button_Check7.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2001. this.button_Check7.ForeColor = System.Drawing.Color.PowderBlue;
  2002. this.button_Check7.ImageIndex = 20;
  2003. this.button_Check7.Location = new System.Drawing.Point(10, 65);
  2004. this.button_Check7.Name = "button_Check7";
  2005. this.button_Check7.Size = new System.Drawing.Size(129, 41);
  2006. this.button_Check7.TabIndex = 23;
  2007. this.button_Check7.Text = "점검";
  2008. this.button_Check7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2009. this.button_Check7.UseVisualStyleBackColor = false;
  2010. //
  2011. // button_DeviceNotuse7
  2012. //
  2013. this.button_DeviceNotuse7.BackColor = System.Drawing.Color.Transparent;
  2014. this.button_DeviceNotuse7.FlatAppearance.BorderSize = 2;
  2015. this.button_DeviceNotuse7.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2016. this.button_DeviceNotuse7.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2017. this.button_DeviceNotuse7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2018. this.button_DeviceNotuse7.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2019. this.button_DeviceNotuse7.ForeColor = System.Drawing.Color.PowderBlue;
  2020. this.button_DeviceNotuse7.Location = new System.Drawing.Point(10, 281);
  2021. this.button_DeviceNotuse7.Name = "button_DeviceNotuse7";
  2022. this.button_DeviceNotuse7.Size = new System.Drawing.Size(129, 41);
  2023. this.button_DeviceNotuse7.TabIndex = 23;
  2024. this.button_DeviceNotuse7.Text = "차단 : 0000";
  2025. this.button_DeviceNotuse7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2026. this.button_DeviceNotuse7.UseVisualStyleBackColor = false;
  2027. //
  2028. // button_DeviceCut7
  2029. //
  2030. this.button_DeviceCut7.BackColor = System.Drawing.Color.Transparent;
  2031. this.button_DeviceCut7.FlatAppearance.BorderSize = 2;
  2032. this.button_DeviceCut7.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2033. this.button_DeviceCut7.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2034. this.button_DeviceCut7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2035. this.button_DeviceCut7.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2036. this.button_DeviceCut7.ForeColor = System.Drawing.Color.PowderBlue;
  2037. this.button_DeviceCut7.Location = new System.Drawing.Point(10, 239);
  2038. this.button_DeviceCut7.Name = "button_DeviceCut7";
  2039. this.button_DeviceCut7.Size = new System.Drawing.Size(129, 41);
  2040. this.button_DeviceCut7.TabIndex = 22;
  2041. this.button_DeviceCut7.Text = "단선 : 0000";
  2042. this.button_DeviceCut7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2043. this.button_DeviceCut7.UseVisualStyleBackColor = false;
  2044. //
  2045. // button_RepeaterError7
  2046. //
  2047. this.button_RepeaterError7.BackColor = System.Drawing.Color.Transparent;
  2048. this.button_RepeaterError7.FlatAppearance.BorderSize = 2;
  2049. this.button_RepeaterError7.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2050. this.button_RepeaterError7.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2051. this.button_RepeaterError7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2052. this.button_RepeaterError7.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2053. this.button_RepeaterError7.ForeColor = System.Drawing.Color.PowderBlue;
  2054. this.button_RepeaterError7.Location = new System.Drawing.Point(10, 197);
  2055. this.button_RepeaterError7.Name = "button_RepeaterError7";
  2056. this.button_RepeaterError7.Size = new System.Drawing.Size(129, 41);
  2057. this.button_RepeaterError7.TabIndex = 21;
  2058. this.button_RepeaterError7.Text = "통신 : 0000";
  2059. this.button_RepeaterError7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2060. this.button_RepeaterError7.UseVisualStyleBackColor = false;
  2061. //
  2062. // button_DeviceInput7
  2063. //
  2064. this.button_DeviceInput7.BackColor = System.Drawing.Color.Transparent;
  2065. this.button_DeviceInput7.FlatAppearance.BorderSize = 2;
  2066. this.button_DeviceInput7.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2067. this.button_DeviceInput7.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2068. this.button_DeviceInput7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2069. this.button_DeviceInput7.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2070. this.button_DeviceInput7.ForeColor = System.Drawing.Color.PowderBlue;
  2071. this.button_DeviceInput7.Location = new System.Drawing.Point(10, 155);
  2072. this.button_DeviceInput7.Name = "button_DeviceInput7";
  2073. this.button_DeviceInput7.Size = new System.Drawing.Size(129, 41);
  2074. this.button_DeviceInput7.TabIndex = 20;
  2075. this.button_DeviceInput7.Text = "설비 : 0000";
  2076. this.button_DeviceInput7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2077. this.button_DeviceInput7.UseVisualStyleBackColor = false;
  2078. //
  2079. // button_FireDetect7
  2080. //
  2081. this.button_FireDetect7.BackColor = System.Drawing.Color.Transparent;
  2082. this.button_FireDetect7.FlatAppearance.BorderSize = 2;
  2083. this.button_FireDetect7.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2084. this.button_FireDetect7.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2085. this.button_FireDetect7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2086. this.button_FireDetect7.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2087. this.button_FireDetect7.ForeColor = System.Drawing.Color.PowderBlue;
  2088. this.button_FireDetect7.Location = new System.Drawing.Point(10, 113);
  2089. this.button_FireDetect7.Name = "button_FireDetect7";
  2090. this.button_FireDetect7.Size = new System.Drawing.Size(129, 41);
  2091. this.button_FireDetect7.TabIndex = 19;
  2092. this.button_FireDetect7.Text = "화재 : 0000";
  2093. this.button_FireDetect7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2094. this.button_FireDetect7.UseVisualStyleBackColor = false;
  2095. //
  2096. // panel_Receiver3
  2097. //
  2098. this.panel_Receiver3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver3.BackgroundImage")));
  2099. this.panel_Receiver3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2100. this.panel_Receiver3.Controls.Add(this.button_Recover3);
  2101. this.panel_Receiver3.Controls.Add(this.button_Receiver3);
  2102. this.panel_Receiver3.Controls.Add(this.button_Check3);
  2103. this.panel_Receiver3.Controls.Add(this.button_DeviceNotuse3);
  2104. this.panel_Receiver3.Controls.Add(this.button_DeviceCut3);
  2105. this.panel_Receiver3.Controls.Add(this.button_RepeaterError3);
  2106. this.panel_Receiver3.Controls.Add(this.button_DeviceInput3);
  2107. this.panel_Receiver3.Controls.Add(this.button_FireDetect3);
  2108. this.panel_Receiver3.Location = new System.Drawing.Point(354, 193);
  2109. this.panel_Receiver3.Name = "panel_Receiver3";
  2110. this.panel_Receiver3.Size = new System.Drawing.Size(148, 330);
  2111. this.panel_Receiver3.TabIndex = 12;
  2112. //
  2113. // button_Recover3
  2114. //
  2115. this.button_Recover3.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  2116. this.button_Recover3.Location = new System.Drawing.Point(90, 18);
  2117. this.button_Recover3.Name = "button_Recover3";
  2118. this.button_Recover3.Size = new System.Drawing.Size(51, 41);
  2119. this.button_Recover3.TabIndex = 11;
  2120. this.button_Recover3.Text = "복구";
  2121. this.button_Recover3.UseVisualStyleBackColor = true;
  2122. //
  2123. // button_Receiver3
  2124. //
  2125. this.button_Receiver3.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  2126. this.button_Receiver3.Location = new System.Drawing.Point(10, 18);
  2127. this.button_Receiver3.Name = "button_Receiver3";
  2128. this.button_Receiver3.Size = new System.Drawing.Size(79, 41);
  2129. this.button_Receiver3.TabIndex = 11;
  2130. this.button_Receiver3.Text = "수신기3";
  2131. this.button_Receiver3.UseVisualStyleBackColor = true;
  2132. //
  2133. // button_Check3
  2134. //
  2135. this.button_Check3.BackColor = System.Drawing.Color.Transparent;
  2136. this.button_Check3.FlatAppearance.BorderSize = 2;
  2137. this.button_Check3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2138. this.button_Check3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2139. this.button_Check3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2140. this.button_Check3.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2141. this.button_Check3.ForeColor = System.Drawing.Color.PowderBlue;
  2142. this.button_Check3.ImageIndex = 20;
  2143. this.button_Check3.Location = new System.Drawing.Point(10, 65);
  2144. this.button_Check3.Name = "button_Check3";
  2145. this.button_Check3.Size = new System.Drawing.Size(129, 41);
  2146. this.button_Check3.TabIndex = 23;
  2147. this.button_Check3.Text = "점검";
  2148. this.button_Check3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2149. this.button_Check3.UseVisualStyleBackColor = false;
  2150. //
  2151. // button_DeviceNotuse3
  2152. //
  2153. this.button_DeviceNotuse3.BackColor = System.Drawing.Color.Transparent;
  2154. this.button_DeviceNotuse3.FlatAppearance.BorderSize = 2;
  2155. this.button_DeviceNotuse3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2156. this.button_DeviceNotuse3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2157. this.button_DeviceNotuse3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2158. this.button_DeviceNotuse3.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2159. this.button_DeviceNotuse3.ForeColor = System.Drawing.Color.PowderBlue;
  2160. this.button_DeviceNotuse3.Location = new System.Drawing.Point(10, 281);
  2161. this.button_DeviceNotuse3.Name = "button_DeviceNotuse3";
  2162. this.button_DeviceNotuse3.Size = new System.Drawing.Size(129, 41);
  2163. this.button_DeviceNotuse3.TabIndex = 23;
  2164. this.button_DeviceNotuse3.Text = "차단 : 0000";
  2165. this.button_DeviceNotuse3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2166. this.button_DeviceNotuse3.UseVisualStyleBackColor = false;
  2167. //
  2168. // button_DeviceCut3
  2169. //
  2170. this.button_DeviceCut3.BackColor = System.Drawing.Color.Transparent;
  2171. this.button_DeviceCut3.FlatAppearance.BorderSize = 2;
  2172. this.button_DeviceCut3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2173. this.button_DeviceCut3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2174. this.button_DeviceCut3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2175. this.button_DeviceCut3.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2176. this.button_DeviceCut3.ForeColor = System.Drawing.Color.PowderBlue;
  2177. this.button_DeviceCut3.Location = new System.Drawing.Point(10, 239);
  2178. this.button_DeviceCut3.Name = "button_DeviceCut3";
  2179. this.button_DeviceCut3.Size = new System.Drawing.Size(129, 41);
  2180. this.button_DeviceCut3.TabIndex = 22;
  2181. this.button_DeviceCut3.Text = "단선 : 0000";
  2182. this.button_DeviceCut3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2183. this.button_DeviceCut3.UseVisualStyleBackColor = false;
  2184. //
  2185. // button_RepeaterError3
  2186. //
  2187. this.button_RepeaterError3.BackColor = System.Drawing.Color.Transparent;
  2188. this.button_RepeaterError3.FlatAppearance.BorderSize = 2;
  2189. this.button_RepeaterError3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2190. this.button_RepeaterError3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2191. this.button_RepeaterError3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2192. this.button_RepeaterError3.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2193. this.button_RepeaterError3.ForeColor = System.Drawing.Color.PowderBlue;
  2194. this.button_RepeaterError3.Location = new System.Drawing.Point(10, 197);
  2195. this.button_RepeaterError3.Name = "button_RepeaterError3";
  2196. this.button_RepeaterError3.Size = new System.Drawing.Size(129, 41);
  2197. this.button_RepeaterError3.TabIndex = 21;
  2198. this.button_RepeaterError3.Text = "통신 : 0000";
  2199. this.button_RepeaterError3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2200. this.button_RepeaterError3.UseVisualStyleBackColor = false;
  2201. //
  2202. // button_DeviceInput3
  2203. //
  2204. this.button_DeviceInput3.BackColor = System.Drawing.Color.Transparent;
  2205. this.button_DeviceInput3.FlatAppearance.BorderSize = 2;
  2206. this.button_DeviceInput3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2207. this.button_DeviceInput3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2208. this.button_DeviceInput3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2209. this.button_DeviceInput3.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2210. this.button_DeviceInput3.ForeColor = System.Drawing.Color.PowderBlue;
  2211. this.button_DeviceInput3.Location = new System.Drawing.Point(10, 155);
  2212. this.button_DeviceInput3.Name = "button_DeviceInput3";
  2213. this.button_DeviceInput3.Size = new System.Drawing.Size(129, 41);
  2214. this.button_DeviceInput3.TabIndex = 20;
  2215. this.button_DeviceInput3.Text = "설비 : 0000";
  2216. this.button_DeviceInput3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2217. this.button_DeviceInput3.UseVisualStyleBackColor = false;
  2218. //
  2219. // button_FireDetect3
  2220. //
  2221. this.button_FireDetect3.BackColor = System.Drawing.Color.Transparent;
  2222. this.button_FireDetect3.FlatAppearance.BorderSize = 2;
  2223. this.button_FireDetect3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2224. this.button_FireDetect3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2225. this.button_FireDetect3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2226. this.button_FireDetect3.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2227. this.button_FireDetect3.ForeColor = System.Drawing.Color.PowderBlue;
  2228. this.button_FireDetect3.Location = new System.Drawing.Point(10, 113);
  2229. this.button_FireDetect3.Name = "button_FireDetect3";
  2230. this.button_FireDetect3.Size = new System.Drawing.Size(129, 41);
  2231. this.button_FireDetect3.TabIndex = 19;
  2232. this.button_FireDetect3.Text = "화재 : 0000";
  2233. this.button_FireDetect3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2234. this.button_FireDetect3.UseVisualStyleBackColor = false;
  2235. //
  2236. // panel_Receiver13
  2237. //
  2238. this.panel_Receiver13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver13.BackgroundImage")));
  2239. this.panel_Receiver13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2240. this.panel_Receiver13.Controls.Add(this.button_Recover13);
  2241. this.panel_Receiver13.Controls.Add(this.button_Receiver13);
  2242. this.panel_Receiver13.Controls.Add(this.button_Check13);
  2243. this.panel_Receiver13.Controls.Add(this.button_DeviceNotuse13);
  2244. this.panel_Receiver13.Controls.Add(this.button_DeviceCut13);
  2245. this.panel_Receiver13.Controls.Add(this.button_RepeaterError13);
  2246. this.panel_Receiver13.Controls.Add(this.button_DeviceInput13);
  2247. this.panel_Receiver13.Controls.Add(this.button_FireDetect13);
  2248. this.panel_Receiver13.Location = new System.Drawing.Point(664, 529);
  2249. this.panel_Receiver13.Name = "panel_Receiver13";
  2250. this.panel_Receiver13.Size = new System.Drawing.Size(148, 330);
  2251. this.panel_Receiver13.TabIndex = 27;
  2252. //
  2253. // button_Recover13
  2254. //
  2255. this.button_Recover13.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  2256. this.button_Recover13.Location = new System.Drawing.Point(90, 18);
  2257. this.button_Recover13.Name = "button_Recover13";
  2258. this.button_Recover13.Size = new System.Drawing.Size(51, 41);
  2259. this.button_Recover13.TabIndex = 11;
  2260. this.button_Recover13.Text = "복구";
  2261. this.button_Recover13.UseVisualStyleBackColor = true;
  2262. //
  2263. // button_Receiver13
  2264. //
  2265. this.button_Receiver13.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  2266. this.button_Receiver13.Location = new System.Drawing.Point(10, 18);
  2267. this.button_Receiver13.Name = "button_Receiver13";
  2268. this.button_Receiver13.Size = new System.Drawing.Size(79, 41);
  2269. this.button_Receiver13.TabIndex = 11;
  2270. this.button_Receiver13.Text = "수신기13";
  2271. this.button_Receiver13.UseVisualStyleBackColor = true;
  2272. //
  2273. // button_Check13
  2274. //
  2275. this.button_Check13.BackColor = System.Drawing.Color.Transparent;
  2276. this.button_Check13.FlatAppearance.BorderSize = 2;
  2277. this.button_Check13.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2278. this.button_Check13.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2279. this.button_Check13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2280. this.button_Check13.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2281. this.button_Check13.ForeColor = System.Drawing.Color.PowderBlue;
  2282. this.button_Check13.ImageIndex = 20;
  2283. this.button_Check13.Location = new System.Drawing.Point(10, 65);
  2284. this.button_Check13.Name = "button_Check13";
  2285. this.button_Check13.Size = new System.Drawing.Size(129, 41);
  2286. this.button_Check13.TabIndex = 23;
  2287. this.button_Check13.Text = "점검";
  2288. this.button_Check13.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2289. this.button_Check13.UseVisualStyleBackColor = false;
  2290. //
  2291. // button_DeviceNotuse13
  2292. //
  2293. this.button_DeviceNotuse13.BackColor = System.Drawing.Color.Transparent;
  2294. this.button_DeviceNotuse13.FlatAppearance.BorderSize = 2;
  2295. this.button_DeviceNotuse13.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2296. this.button_DeviceNotuse13.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2297. this.button_DeviceNotuse13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2298. this.button_DeviceNotuse13.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2299. this.button_DeviceNotuse13.ForeColor = System.Drawing.Color.PowderBlue;
  2300. this.button_DeviceNotuse13.Location = new System.Drawing.Point(10, 281);
  2301. this.button_DeviceNotuse13.Name = "button_DeviceNotuse13";
  2302. this.button_DeviceNotuse13.Size = new System.Drawing.Size(129, 41);
  2303. this.button_DeviceNotuse13.TabIndex = 23;
  2304. this.button_DeviceNotuse13.Text = "차단 : 0000";
  2305. this.button_DeviceNotuse13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2306. this.button_DeviceNotuse13.UseVisualStyleBackColor = false;
  2307. //
  2308. // button_DeviceCut13
  2309. //
  2310. this.button_DeviceCut13.BackColor = System.Drawing.Color.Transparent;
  2311. this.button_DeviceCut13.FlatAppearance.BorderSize = 2;
  2312. this.button_DeviceCut13.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2313. this.button_DeviceCut13.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2314. this.button_DeviceCut13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2315. this.button_DeviceCut13.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2316. this.button_DeviceCut13.ForeColor = System.Drawing.Color.PowderBlue;
  2317. this.button_DeviceCut13.Location = new System.Drawing.Point(10, 239);
  2318. this.button_DeviceCut13.Name = "button_DeviceCut13";
  2319. this.button_DeviceCut13.Size = new System.Drawing.Size(129, 41);
  2320. this.button_DeviceCut13.TabIndex = 22;
  2321. this.button_DeviceCut13.Text = "단선 : 0000";
  2322. this.button_DeviceCut13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2323. this.button_DeviceCut13.UseVisualStyleBackColor = false;
  2324. //
  2325. // button_RepeaterError13
  2326. //
  2327. this.button_RepeaterError13.BackColor = System.Drawing.Color.Transparent;
  2328. this.button_RepeaterError13.FlatAppearance.BorderSize = 2;
  2329. this.button_RepeaterError13.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2330. this.button_RepeaterError13.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2331. this.button_RepeaterError13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2332. this.button_RepeaterError13.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2333. this.button_RepeaterError13.ForeColor = System.Drawing.Color.PowderBlue;
  2334. this.button_RepeaterError13.Location = new System.Drawing.Point(10, 197);
  2335. this.button_RepeaterError13.Name = "button_RepeaterError13";
  2336. this.button_RepeaterError13.Size = new System.Drawing.Size(129, 41);
  2337. this.button_RepeaterError13.TabIndex = 21;
  2338. this.button_RepeaterError13.Text = "통신 : 0000";
  2339. this.button_RepeaterError13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2340. this.button_RepeaterError13.UseVisualStyleBackColor = false;
  2341. //
  2342. // button_DeviceInput13
  2343. //
  2344. this.button_DeviceInput13.BackColor = System.Drawing.Color.Transparent;
  2345. this.button_DeviceInput13.FlatAppearance.BorderSize = 2;
  2346. this.button_DeviceInput13.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2347. this.button_DeviceInput13.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2348. this.button_DeviceInput13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2349. this.button_DeviceInput13.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2350. this.button_DeviceInput13.ForeColor = System.Drawing.Color.PowderBlue;
  2351. this.button_DeviceInput13.Location = new System.Drawing.Point(10, 155);
  2352. this.button_DeviceInput13.Name = "button_DeviceInput13";
  2353. this.button_DeviceInput13.Size = new System.Drawing.Size(129, 41);
  2354. this.button_DeviceInput13.TabIndex = 20;
  2355. this.button_DeviceInput13.Text = "설비 : 0000";
  2356. this.button_DeviceInput13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2357. this.button_DeviceInput13.UseVisualStyleBackColor = false;
  2358. //
  2359. // button_FireDetect13
  2360. //
  2361. this.button_FireDetect13.BackColor = System.Drawing.Color.Transparent;
  2362. this.button_FireDetect13.FlatAppearance.BorderSize = 2;
  2363. this.button_FireDetect13.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2364. this.button_FireDetect13.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2365. this.button_FireDetect13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2366. this.button_FireDetect13.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2367. this.button_FireDetect13.ForeColor = System.Drawing.Color.PowderBlue;
  2368. this.button_FireDetect13.Location = new System.Drawing.Point(10, 113);
  2369. this.button_FireDetect13.Name = "button_FireDetect13";
  2370. this.button_FireDetect13.Size = new System.Drawing.Size(129, 41);
  2371. this.button_FireDetect13.TabIndex = 19;
  2372. this.button_FireDetect13.Text = "화재 : 0000";
  2373. this.button_FireDetect13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2374. this.button_FireDetect13.UseVisualStyleBackColor = false;
  2375. //
  2376. // panel_Receiver5
  2377. //
  2378. this.panel_Receiver5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver5.BackgroundImage")));
  2379. this.panel_Receiver5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2380. this.panel_Receiver5.Controls.Add(this.button_Recover5);
  2381. this.panel_Receiver5.Controls.Add(this.button_Receiver5);
  2382. this.panel_Receiver5.Controls.Add(this.button_Check5);
  2383. this.panel_Receiver5.Controls.Add(this.button_DeviceNotuse5);
  2384. this.panel_Receiver5.Controls.Add(this.button_DeviceCut5);
  2385. this.panel_Receiver5.Controls.Add(this.button_RepeaterError5);
  2386. this.panel_Receiver5.Controls.Add(this.button_DeviceInput5);
  2387. this.panel_Receiver5.Controls.Add(this.button_FireDetect5);
  2388. this.panel_Receiver5.Location = new System.Drawing.Point(664, 193);
  2389. this.panel_Receiver5.Name = "panel_Receiver5";
  2390. this.panel_Receiver5.Size = new System.Drawing.Size(148, 330);
  2391. this.panel_Receiver5.TabIndex = 12;
  2392. //
  2393. // button_Recover5
  2394. //
  2395. this.button_Recover5.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  2396. this.button_Recover5.Location = new System.Drawing.Point(90, 18);
  2397. this.button_Recover5.Name = "button_Recover5";
  2398. this.button_Recover5.Size = new System.Drawing.Size(51, 41);
  2399. this.button_Recover5.TabIndex = 11;
  2400. this.button_Recover5.Text = "복구";
  2401. this.button_Recover5.UseVisualStyleBackColor = true;
  2402. //
  2403. // button_Receiver5
  2404. //
  2405. this.button_Receiver5.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  2406. this.button_Receiver5.Location = new System.Drawing.Point(10, 18);
  2407. this.button_Receiver5.Name = "button_Receiver5";
  2408. this.button_Receiver5.Size = new System.Drawing.Size(79, 41);
  2409. this.button_Receiver5.TabIndex = 11;
  2410. this.button_Receiver5.Text = "수신기5";
  2411. this.button_Receiver5.UseVisualStyleBackColor = true;
  2412. //
  2413. // button_Check5
  2414. //
  2415. this.button_Check5.BackColor = System.Drawing.Color.Transparent;
  2416. this.button_Check5.FlatAppearance.BorderSize = 2;
  2417. this.button_Check5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2418. this.button_Check5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2419. this.button_Check5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2420. this.button_Check5.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2421. this.button_Check5.ForeColor = System.Drawing.Color.PowderBlue;
  2422. this.button_Check5.ImageIndex = 20;
  2423. this.button_Check5.Location = new System.Drawing.Point(10, 65);
  2424. this.button_Check5.Name = "button_Check5";
  2425. this.button_Check5.Size = new System.Drawing.Size(129, 41);
  2426. this.button_Check5.TabIndex = 23;
  2427. this.button_Check5.Text = "점검";
  2428. this.button_Check5.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2429. this.button_Check5.UseVisualStyleBackColor = false;
  2430. //
  2431. // button_DeviceNotuse5
  2432. //
  2433. this.button_DeviceNotuse5.BackColor = System.Drawing.Color.Transparent;
  2434. this.button_DeviceNotuse5.FlatAppearance.BorderSize = 2;
  2435. this.button_DeviceNotuse5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2436. this.button_DeviceNotuse5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2437. this.button_DeviceNotuse5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2438. this.button_DeviceNotuse5.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2439. this.button_DeviceNotuse5.ForeColor = System.Drawing.Color.PowderBlue;
  2440. this.button_DeviceNotuse5.Location = new System.Drawing.Point(10, 281);
  2441. this.button_DeviceNotuse5.Name = "button_DeviceNotuse5";
  2442. this.button_DeviceNotuse5.Size = new System.Drawing.Size(129, 41);
  2443. this.button_DeviceNotuse5.TabIndex = 23;
  2444. this.button_DeviceNotuse5.Text = "차단 : 0000";
  2445. this.button_DeviceNotuse5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2446. this.button_DeviceNotuse5.UseVisualStyleBackColor = false;
  2447. //
  2448. // button_DeviceCut5
  2449. //
  2450. this.button_DeviceCut5.BackColor = System.Drawing.Color.Transparent;
  2451. this.button_DeviceCut5.FlatAppearance.BorderSize = 2;
  2452. this.button_DeviceCut5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2453. this.button_DeviceCut5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2454. this.button_DeviceCut5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2455. this.button_DeviceCut5.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2456. this.button_DeviceCut5.ForeColor = System.Drawing.Color.PowderBlue;
  2457. this.button_DeviceCut5.Location = new System.Drawing.Point(10, 239);
  2458. this.button_DeviceCut5.Name = "button_DeviceCut5";
  2459. this.button_DeviceCut5.Size = new System.Drawing.Size(129, 41);
  2460. this.button_DeviceCut5.TabIndex = 22;
  2461. this.button_DeviceCut5.Text = "단선 : 0000";
  2462. this.button_DeviceCut5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2463. this.button_DeviceCut5.UseVisualStyleBackColor = false;
  2464. //
  2465. // button_RepeaterError5
  2466. //
  2467. this.button_RepeaterError5.BackColor = System.Drawing.Color.Transparent;
  2468. this.button_RepeaterError5.FlatAppearance.BorderSize = 2;
  2469. this.button_RepeaterError5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2470. this.button_RepeaterError5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2471. this.button_RepeaterError5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2472. this.button_RepeaterError5.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2473. this.button_RepeaterError5.ForeColor = System.Drawing.Color.PowderBlue;
  2474. this.button_RepeaterError5.Location = new System.Drawing.Point(10, 197);
  2475. this.button_RepeaterError5.Name = "button_RepeaterError5";
  2476. this.button_RepeaterError5.Size = new System.Drawing.Size(129, 41);
  2477. this.button_RepeaterError5.TabIndex = 21;
  2478. this.button_RepeaterError5.Text = "통신 : 0000";
  2479. this.button_RepeaterError5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2480. this.button_RepeaterError5.UseVisualStyleBackColor = false;
  2481. //
  2482. // button_DeviceInput5
  2483. //
  2484. this.button_DeviceInput5.BackColor = System.Drawing.Color.Transparent;
  2485. this.button_DeviceInput5.FlatAppearance.BorderSize = 2;
  2486. this.button_DeviceInput5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2487. this.button_DeviceInput5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2488. this.button_DeviceInput5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2489. this.button_DeviceInput5.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2490. this.button_DeviceInput5.ForeColor = System.Drawing.Color.PowderBlue;
  2491. this.button_DeviceInput5.Location = new System.Drawing.Point(10, 155);
  2492. this.button_DeviceInput5.Name = "button_DeviceInput5";
  2493. this.button_DeviceInput5.Size = new System.Drawing.Size(129, 41);
  2494. this.button_DeviceInput5.TabIndex = 20;
  2495. this.button_DeviceInput5.Text = "설비 : 0000";
  2496. this.button_DeviceInput5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2497. this.button_DeviceInput5.UseVisualStyleBackColor = false;
  2498. //
  2499. // button_FireDetect5
  2500. //
  2501. this.button_FireDetect5.BackColor = System.Drawing.Color.Transparent;
  2502. this.button_FireDetect5.FlatAppearance.BorderSize = 2;
  2503. this.button_FireDetect5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2504. this.button_FireDetect5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2505. this.button_FireDetect5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2506. this.button_FireDetect5.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2507. this.button_FireDetect5.ForeColor = System.Drawing.Color.PowderBlue;
  2508. this.button_FireDetect5.Location = new System.Drawing.Point(10, 113);
  2509. this.button_FireDetect5.Name = "button_FireDetect5";
  2510. this.button_FireDetect5.Size = new System.Drawing.Size(129, 41);
  2511. this.button_FireDetect5.TabIndex = 19;
  2512. this.button_FireDetect5.Text = "화재 : 0000";
  2513. this.button_FireDetect5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2514. this.button_FireDetect5.UseVisualStyleBackColor = false;
  2515. //
  2516. // panel_Receiver9
  2517. //
  2518. this.panel_Receiver9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver9.BackgroundImage")));
  2519. this.panel_Receiver9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2520. this.panel_Receiver9.Controls.Add(this.button_Recover9);
  2521. this.panel_Receiver9.Controls.Add(this.button_Receiver9);
  2522. this.panel_Receiver9.Controls.Add(this.button_Check9);
  2523. this.panel_Receiver9.Controls.Add(this.button_DeviceNotuse9);
  2524. this.panel_Receiver9.Controls.Add(this.button_DeviceCut9);
  2525. this.panel_Receiver9.Controls.Add(this.button_RepeaterError9);
  2526. this.panel_Receiver9.Controls.Add(this.button_DeviceInput9);
  2527. this.panel_Receiver9.Controls.Add(this.button_FireDetect9);
  2528. this.panel_Receiver9.Location = new System.Drawing.Point(44, 529);
  2529. this.panel_Receiver9.Name = "panel_Receiver9";
  2530. this.panel_Receiver9.Size = new System.Drawing.Size(148, 330);
  2531. this.panel_Receiver9.TabIndex = 28;
  2532. //
  2533. // button_Recover9
  2534. //
  2535. this.button_Recover9.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  2536. this.button_Recover9.Location = new System.Drawing.Point(90, 18);
  2537. this.button_Recover9.Name = "button_Recover9";
  2538. this.button_Recover9.Size = new System.Drawing.Size(51, 41);
  2539. this.button_Recover9.TabIndex = 11;
  2540. this.button_Recover9.Text = "복구";
  2541. this.button_Recover9.UseVisualStyleBackColor = true;
  2542. //
  2543. // button_Receiver9
  2544. //
  2545. this.button_Receiver9.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  2546. this.button_Receiver9.Location = new System.Drawing.Point(10, 18);
  2547. this.button_Receiver9.Name = "button_Receiver9";
  2548. this.button_Receiver9.Size = new System.Drawing.Size(79, 41);
  2549. this.button_Receiver9.TabIndex = 11;
  2550. this.button_Receiver9.Text = "수신기9";
  2551. this.button_Receiver9.UseVisualStyleBackColor = true;
  2552. //
  2553. // button_Check9
  2554. //
  2555. this.button_Check9.BackColor = System.Drawing.Color.Transparent;
  2556. this.button_Check9.FlatAppearance.BorderSize = 2;
  2557. this.button_Check9.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2558. this.button_Check9.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2559. this.button_Check9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2560. this.button_Check9.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2561. this.button_Check9.ForeColor = System.Drawing.Color.PowderBlue;
  2562. this.button_Check9.ImageIndex = 20;
  2563. this.button_Check9.Location = new System.Drawing.Point(10, 65);
  2564. this.button_Check9.Name = "button_Check9";
  2565. this.button_Check9.Size = new System.Drawing.Size(129, 41);
  2566. this.button_Check9.TabIndex = 23;
  2567. this.button_Check9.Text = "점검";
  2568. this.button_Check9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2569. this.button_Check9.UseVisualStyleBackColor = false;
  2570. //
  2571. // button_DeviceNotuse9
  2572. //
  2573. this.button_DeviceNotuse9.BackColor = System.Drawing.Color.Transparent;
  2574. this.button_DeviceNotuse9.FlatAppearance.BorderSize = 2;
  2575. this.button_DeviceNotuse9.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2576. this.button_DeviceNotuse9.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2577. this.button_DeviceNotuse9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2578. this.button_DeviceNotuse9.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2579. this.button_DeviceNotuse9.ForeColor = System.Drawing.Color.PowderBlue;
  2580. this.button_DeviceNotuse9.Location = new System.Drawing.Point(10, 281);
  2581. this.button_DeviceNotuse9.Name = "button_DeviceNotuse9";
  2582. this.button_DeviceNotuse9.Size = new System.Drawing.Size(129, 41);
  2583. this.button_DeviceNotuse9.TabIndex = 23;
  2584. this.button_DeviceNotuse9.Text = "차단 : 0000";
  2585. this.button_DeviceNotuse9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2586. this.button_DeviceNotuse9.UseVisualStyleBackColor = false;
  2587. //
  2588. // button_DeviceCut9
  2589. //
  2590. this.button_DeviceCut9.BackColor = System.Drawing.Color.Transparent;
  2591. this.button_DeviceCut9.FlatAppearance.BorderSize = 2;
  2592. this.button_DeviceCut9.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2593. this.button_DeviceCut9.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2594. this.button_DeviceCut9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2595. this.button_DeviceCut9.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2596. this.button_DeviceCut9.ForeColor = System.Drawing.Color.PowderBlue;
  2597. this.button_DeviceCut9.Location = new System.Drawing.Point(10, 239);
  2598. this.button_DeviceCut9.Name = "button_DeviceCut9";
  2599. this.button_DeviceCut9.Size = new System.Drawing.Size(129, 41);
  2600. this.button_DeviceCut9.TabIndex = 22;
  2601. this.button_DeviceCut9.Text = "단선 : 0000";
  2602. this.button_DeviceCut9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2603. this.button_DeviceCut9.UseVisualStyleBackColor = false;
  2604. //
  2605. // button_RepeaterError9
  2606. //
  2607. this.button_RepeaterError9.BackColor = System.Drawing.Color.Transparent;
  2608. this.button_RepeaterError9.FlatAppearance.BorderSize = 2;
  2609. this.button_RepeaterError9.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2610. this.button_RepeaterError9.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2611. this.button_RepeaterError9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2612. this.button_RepeaterError9.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2613. this.button_RepeaterError9.ForeColor = System.Drawing.Color.PowderBlue;
  2614. this.button_RepeaterError9.Location = new System.Drawing.Point(10, 197);
  2615. this.button_RepeaterError9.Name = "button_RepeaterError9";
  2616. this.button_RepeaterError9.Size = new System.Drawing.Size(129, 41);
  2617. this.button_RepeaterError9.TabIndex = 21;
  2618. this.button_RepeaterError9.Text = "통신 : 0000";
  2619. this.button_RepeaterError9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2620. this.button_RepeaterError9.UseVisualStyleBackColor = false;
  2621. //
  2622. // button_DeviceInput9
  2623. //
  2624. this.button_DeviceInput9.BackColor = System.Drawing.Color.Transparent;
  2625. this.button_DeviceInput9.FlatAppearance.BorderSize = 2;
  2626. this.button_DeviceInput9.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2627. this.button_DeviceInput9.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2628. this.button_DeviceInput9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2629. this.button_DeviceInput9.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2630. this.button_DeviceInput9.ForeColor = System.Drawing.Color.PowderBlue;
  2631. this.button_DeviceInput9.Location = new System.Drawing.Point(10, 155);
  2632. this.button_DeviceInput9.Name = "button_DeviceInput9";
  2633. this.button_DeviceInput9.Size = new System.Drawing.Size(129, 41);
  2634. this.button_DeviceInput9.TabIndex = 20;
  2635. this.button_DeviceInput9.Text = "설비 : 0000";
  2636. this.button_DeviceInput9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2637. this.button_DeviceInput9.UseVisualStyleBackColor = false;
  2638. //
  2639. // button_FireDetect9
  2640. //
  2641. this.button_FireDetect9.BackColor = System.Drawing.Color.Transparent;
  2642. this.button_FireDetect9.FlatAppearance.BorderSize = 2;
  2643. this.button_FireDetect9.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2644. this.button_FireDetect9.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2645. this.button_FireDetect9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2646. this.button_FireDetect9.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2647. this.button_FireDetect9.ForeColor = System.Drawing.Color.PowderBlue;
  2648. this.button_FireDetect9.Location = new System.Drawing.Point(10, 113);
  2649. this.button_FireDetect9.Name = "button_FireDetect9";
  2650. this.button_FireDetect9.Size = new System.Drawing.Size(129, 41);
  2651. this.button_FireDetect9.TabIndex = 19;
  2652. this.button_FireDetect9.Text = "화재 : 0000";
  2653. this.button_FireDetect9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2654. this.button_FireDetect9.UseVisualStyleBackColor = false;
  2655. //
  2656. // panel_Receiver1
  2657. //
  2658. this.panel_Receiver1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Receiver1.BackgroundImage")));
  2659. this.panel_Receiver1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2660. this.panel_Receiver1.Controls.Add(this.button_Recover1);
  2661. this.panel_Receiver1.Controls.Add(this.button_Receiver1);
  2662. this.panel_Receiver1.Controls.Add(this.button_Check1);
  2663. this.panel_Receiver1.Controls.Add(this.button_DeviceNotuse1);
  2664. this.panel_Receiver1.Controls.Add(this.button_DeviceCut1);
  2665. this.panel_Receiver1.Controls.Add(this.button_RepeaterError1);
  2666. this.panel_Receiver1.Controls.Add(this.button_DeviceInput1);
  2667. this.panel_Receiver1.Controls.Add(this.button_FireDetect1);
  2668. this.panel_Receiver1.Controls.Add(this.lblReceiverCutCnt);
  2669. this.panel_Receiver1.Controls.Add(this.lblRepeaterBlockingCnt);
  2670. this.panel_Receiver1.Controls.Add(this.lblDeviceWriteCnt);
  2671. this.panel_Receiver1.Controls.Add(this.lblDeviceFireCnt);
  2672. this.panel_Receiver1.Controls.Add(this.lblConnetErrorCnt);
  2673. this.panel_Receiver1.Location = new System.Drawing.Point(44, 193);
  2674. this.panel_Receiver1.Name = "panel_Receiver1";
  2675. this.panel_Receiver1.Size = new System.Drawing.Size(148, 330);
  2676. this.panel_Receiver1.TabIndex = 12;
  2677. //
  2678. // button_Recover1
  2679. //
  2680. this.button_Recover1.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold);
  2681. this.button_Recover1.Location = new System.Drawing.Point(90, 18);
  2682. this.button_Recover1.Name = "button_Recover1";
  2683. this.button_Recover1.Size = new System.Drawing.Size(51, 41);
  2684. this.button_Recover1.TabIndex = 11;
  2685. this.button_Recover1.Text = "복구";
  2686. this.button_Recover1.UseVisualStyleBackColor = true;
  2687. //
  2688. // button_Receiver1
  2689. //
  2690. this.button_Receiver1.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  2691. this.button_Receiver1.Location = new System.Drawing.Point(10, 18);
  2692. this.button_Receiver1.Name = "button_Receiver1";
  2693. this.button_Receiver1.Size = new System.Drawing.Size(79, 41);
  2694. this.button_Receiver1.TabIndex = 11;
  2695. this.button_Receiver1.Text = "수신기1";
  2696. this.button_Receiver1.UseVisualStyleBackColor = true;
  2697. //
  2698. // button_Check1
  2699. //
  2700. this.button_Check1.BackColor = System.Drawing.Color.Transparent;
  2701. this.button_Check1.FlatAppearance.BorderSize = 2;
  2702. this.button_Check1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2703. this.button_Check1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2704. this.button_Check1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2705. this.button_Check1.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2706. this.button_Check1.ForeColor = System.Drawing.Color.PowderBlue;
  2707. this.button_Check1.ImageIndex = 20;
  2708. this.button_Check1.Location = new System.Drawing.Point(10, 65);
  2709. this.button_Check1.Name = "button_Check1";
  2710. this.button_Check1.Size = new System.Drawing.Size(129, 41);
  2711. this.button_Check1.TabIndex = 23;
  2712. this.button_Check1.Text = "점검";
  2713. this.button_Check1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2714. this.button_Check1.UseVisualStyleBackColor = false;
  2715. //
  2716. // button_DeviceNotuse1
  2717. //
  2718. this.button_DeviceNotuse1.BackColor = System.Drawing.Color.Transparent;
  2719. this.button_DeviceNotuse1.FlatAppearance.BorderSize = 2;
  2720. this.button_DeviceNotuse1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2721. this.button_DeviceNotuse1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2722. this.button_DeviceNotuse1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2723. this.button_DeviceNotuse1.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2724. this.button_DeviceNotuse1.ForeColor = System.Drawing.Color.PowderBlue;
  2725. this.button_DeviceNotuse1.Location = new System.Drawing.Point(10, 281);
  2726. this.button_DeviceNotuse1.Name = "button_DeviceNotuse1";
  2727. this.button_DeviceNotuse1.Size = new System.Drawing.Size(129, 41);
  2728. this.button_DeviceNotuse1.TabIndex = 23;
  2729. this.button_DeviceNotuse1.Text = "차단 : 0000";
  2730. this.button_DeviceNotuse1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2731. this.button_DeviceNotuse1.UseVisualStyleBackColor = false;
  2732. //
  2733. // button_DeviceCut1
  2734. //
  2735. this.button_DeviceCut1.BackColor = System.Drawing.Color.Transparent;
  2736. this.button_DeviceCut1.FlatAppearance.BorderSize = 2;
  2737. this.button_DeviceCut1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2738. this.button_DeviceCut1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2739. this.button_DeviceCut1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2740. this.button_DeviceCut1.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2741. this.button_DeviceCut1.ForeColor = System.Drawing.Color.PowderBlue;
  2742. this.button_DeviceCut1.Location = new System.Drawing.Point(10, 239);
  2743. this.button_DeviceCut1.Name = "button_DeviceCut1";
  2744. this.button_DeviceCut1.Size = new System.Drawing.Size(129, 41);
  2745. this.button_DeviceCut1.TabIndex = 22;
  2746. this.button_DeviceCut1.Text = "단선 : 0000";
  2747. this.button_DeviceCut1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2748. this.button_DeviceCut1.UseVisualStyleBackColor = false;
  2749. //
  2750. // button_RepeaterError1
  2751. //
  2752. this.button_RepeaterError1.BackColor = System.Drawing.Color.Transparent;
  2753. this.button_RepeaterError1.FlatAppearance.BorderSize = 2;
  2754. this.button_RepeaterError1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2755. this.button_RepeaterError1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2756. this.button_RepeaterError1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2757. this.button_RepeaterError1.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2758. this.button_RepeaterError1.ForeColor = System.Drawing.Color.PowderBlue;
  2759. this.button_RepeaterError1.Location = new System.Drawing.Point(10, 197);
  2760. this.button_RepeaterError1.Name = "button_RepeaterError1";
  2761. this.button_RepeaterError1.Size = new System.Drawing.Size(129, 41);
  2762. this.button_RepeaterError1.TabIndex = 21;
  2763. this.button_RepeaterError1.Text = "통신 : 0000";
  2764. this.button_RepeaterError1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2765. this.button_RepeaterError1.UseVisualStyleBackColor = false;
  2766. //
  2767. // button_DeviceInput1
  2768. //
  2769. this.button_DeviceInput1.BackColor = System.Drawing.Color.Transparent;
  2770. this.button_DeviceInput1.FlatAppearance.BorderSize = 2;
  2771. this.button_DeviceInput1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2772. this.button_DeviceInput1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2773. this.button_DeviceInput1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2774. this.button_DeviceInput1.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2775. this.button_DeviceInput1.ForeColor = System.Drawing.Color.PowderBlue;
  2776. this.button_DeviceInput1.Location = new System.Drawing.Point(10, 155);
  2777. this.button_DeviceInput1.Name = "button_DeviceInput1";
  2778. this.button_DeviceInput1.Size = new System.Drawing.Size(129, 41);
  2779. this.button_DeviceInput1.TabIndex = 20;
  2780. this.button_DeviceInput1.Text = "설비 : 0000";
  2781. this.button_DeviceInput1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2782. this.button_DeviceInput1.UseVisualStyleBackColor = false;
  2783. //
  2784. // button_FireDetect1
  2785. //
  2786. this.button_FireDetect1.BackColor = System.Drawing.Color.Transparent;
  2787. this.button_FireDetect1.FlatAppearance.BorderSize = 2;
  2788. this.button_FireDetect1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(27)))), ((int)(((byte)(27)))));
  2789. this.button_FireDetect1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(39)))), ((int)(((byte)(50)))));
  2790. this.button_FireDetect1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2791. this.button_FireDetect1.Font = new System.Drawing.Font("맑은 고딕", 13F, System.Drawing.FontStyle.Bold);
  2792. this.button_FireDetect1.ForeColor = System.Drawing.Color.PowderBlue;
  2793. this.button_FireDetect1.Location = new System.Drawing.Point(10, 113);
  2794. this.button_FireDetect1.Name = "button_FireDetect1";
  2795. this.button_FireDetect1.Size = new System.Drawing.Size(129, 41);
  2796. this.button_FireDetect1.TabIndex = 19;
  2797. this.button_FireDetect1.Text = "화재 : 0000";
  2798. this.button_FireDetect1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2799. this.button_FireDetect1.UseVisualStyleBackColor = false;
  2800. //
  2801. // panel_Top
  2802. //
  2803. this.panel_Top.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel_Top.BackgroundImage")));
  2804. this.panel_Top.Controls.Add(this.lblLEDText);
  2805. this.panel_Top.Controls.Add(this.cboPreFireWarnningMessage);
  2806. this.panel_Top.Controls.Add(this.label_Time);
  2807. this.panel_Top.Controls.Add(this.labelPreFireAlert);
  2808. this.panel_Top.Controls.Add(this.pictureBox_CI);
  2809. this.panel_Top.Controls.Add(this.label_BuildingName);
  2810. this.panel_Top.Dock = System.Windows.Forms.DockStyle.Top;
  2811. this.panel_Top.Location = new System.Drawing.Point(0, 0);
  2812. this.panel_Top.Name = "panel_Top";
  2813. this.panel_Top.Size = new System.Drawing.Size(1280, 75);
  2814. this.panel_Top.TabIndex = 0;
  2815. //
  2816. // lblLEDText
  2817. //
  2818. this.lblLEDText.BackColor = System.Drawing.Color.Transparent;
  2819. this.lblLEDText.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2820. this.lblLEDText.ForeColor = System.Drawing.Color.LightPink;
  2821. this.lblLEDText.Location = new System.Drawing.Point(941, 35);
  2822. this.lblLEDText.Name = "lblLEDText";
  2823. this.lblLEDText.Size = new System.Drawing.Size(313, 33);
  2824. this.lblLEDText.TabIndex = 37;
  2825. this.lblLEDText.Text = "스위치 주의";
  2826. this.lblLEDText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2827. this.lblLEDText.Visible = false;
  2828. //
  2829. // cboPreFireWarnningMessage
  2830. //
  2831. this.cboPreFireWarnningMessage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2832. this.cboPreFireWarnningMessage.Font = new System.Drawing.Font("굴림", 12F);
  2833. this.cboPreFireWarnningMessage.FormattingEnabled = true;
  2834. this.cboPreFireWarnningMessage.Location = new System.Drawing.Point(403, 48);
  2835. this.cboPreFireWarnningMessage.MaxDropDownItems = 30;
  2836. this.cboPreFireWarnningMessage.Name = "cboPreFireWarnningMessage";
  2837. this.cboPreFireWarnningMessage.Size = new System.Drawing.Size(443, 24);
  2838. this.cboPreFireWarnningMessage.TabIndex = 35;
  2839. this.cboPreFireWarnningMessage.Visible = false;
  2840. //
  2841. // label_Time
  2842. //
  2843. this.label_Time.BackColor = System.Drawing.Color.Transparent;
  2844. this.label_Time.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold);
  2845. this.label_Time.ForeColor = System.Drawing.Color.White;
  2846. this.label_Time.Location = new System.Drawing.Point(940, 1);
  2847. this.label_Time.Name = "label_Time";
  2848. this.label_Time.Size = new System.Drawing.Size(329, 34);
  2849. this.label_Time.TabIndex = 2;
  2850. this.label_Time.Text = "2015년 07월 15일 15:00:00";
  2851. this.label_Time.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2852. //
  2853. // labelPreFireAlert
  2854. //
  2855. this.labelPreFireAlert.BackColor = System.Drawing.Color.Transparent;
  2856. this.labelPreFireAlert.Font = new System.Drawing.Font("굴림", 23F, System.Drawing.FontStyle.Bold);
  2857. this.labelPreFireAlert.ForeColor = System.Drawing.Color.Red;
  2858. this.labelPreFireAlert.Location = new System.Drawing.Point(359, 3);
  2859. this.labelPreFireAlert.Name = "labelPreFireAlert";
  2860. this.labelPreFireAlert.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  2861. this.labelPreFireAlert.Size = new System.Drawing.Size(530, 72);
  2862. this.labelPreFireAlert.TabIndex = 36;
  2863. this.labelPreFireAlert.Text = "아날로그 감지기 PreFire 발생";
  2864. this.labelPreFireAlert.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2865. this.labelPreFireAlert.Visible = false;
  2866. //
  2867. // pictureBox_CI
  2868. //
  2869. this.pictureBox_CI.BackColor = System.Drawing.Color.Transparent;
  2870. this.pictureBox_CI.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox_CI.BackgroundImage")));
  2871. this.pictureBox_CI.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2872. this.pictureBox_CI.ErrorImage = ((System.Drawing.Image)(resources.GetObject("pictureBox_CI.ErrorImage")));
  2873. this.pictureBox_CI.Location = new System.Drawing.Point(7, 12);
  2874. this.pictureBox_CI.Name = "pictureBox_CI";
  2875. this.pictureBox_CI.Size = new System.Drawing.Size(263, 62);
  2876. this.pictureBox_CI.TabIndex = 0;
  2877. this.pictureBox_CI.TabStop = false;
  2878. //
  2879. // label_BuildingName
  2880. //
  2881. this.label_BuildingName.BackColor = System.Drawing.Color.Transparent;
  2882. this.label_BuildingName.Font = new System.Drawing.Font("맑은 고딕", 24F, System.Drawing.FontStyle.Bold);
  2883. this.label_BuildingName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  2884. this.label_BuildingName.Location = new System.Drawing.Point(269, 2);
  2885. this.label_BuildingName.Margin = new System.Windows.Forms.Padding(10, 1, 10, 2);
  2886. this.label_BuildingName.Name = "label_BuildingName";
  2887. this.label_BuildingName.Size = new System.Drawing.Size(659, 62);
  2888. this.label_BuildingName.TabIndex = 1;
  2889. this.label_BuildingName.Text = "아이콘트롤스빌딩";
  2890. this.label_BuildingName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2891. //
  2892. // FireDesk
  2893. //
  2894. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  2895. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2896. this.ClientSize = new System.Drawing.Size(1280, 1024);
  2897. this.Controls.Add(this.panel_Bottom);
  2898. this.Controls.Add(this.panel_Top);
  2899. this.Controls.Add(this.panel_Middle);
  2900. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  2901. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2902. this.IsMdiContainer = true;
  2903. this.KeyPreview = true;
  2904. this.MaximumSize = new System.Drawing.Size(1280, 1024);
  2905. this.MinimizeBox = false;
  2906. this.MinimumSize = new System.Drawing.Size(1280, 1018);
  2907. this.Name = "FireDesk";
  2908. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  2909. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  2910. this.Text = "i-소방전기용수신기";
  2911. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  2912. this.panel_Bottom.ResumeLayout(false);
  2913. this.panel_Bottom.PerformLayout();
  2914. this.panel_Middle.ResumeLayout(false);
  2915. this.panel_Receiver10.ResumeLayout(false);
  2916. this.panel_Receiver16.ResumeLayout(false);
  2917. this.panel_Receiver8.ResumeLayout(false);
  2918. this.panel_Receiver11.ResumeLayout(false);
  2919. this.panel_Receiver12.ResumeLayout(false);
  2920. this.panel_Receiver4.ResumeLayout(false);
  2921. this.panel_Receiver14.ResumeLayout(false);
  2922. this.panel_Receiver6.ResumeLayout(false);
  2923. this.panel_Receiver2.ResumeLayout(false);
  2924. this.panel_Receiver15.ResumeLayout(false);
  2925. this.panel_Receiver7.ResumeLayout(false);
  2926. this.panel_Receiver3.ResumeLayout(false);
  2927. this.panel_Receiver13.ResumeLayout(false);
  2928. this.panel_Receiver5.ResumeLayout(false);
  2929. this.panel_Receiver9.ResumeLayout(false);
  2930. this.panel_Receiver1.ResumeLayout(false);
  2931. this.panel_Receiver1.PerformLayout();
  2932. this.panel_Top.ResumeLayout(false);
  2933. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_CI)).EndInit();
  2934. this.ResumeLayout(false);
  2935. }
  2936. #endregion
  2937. private System.Windows.Forms.Panel panel_Top;
  2938. private System.Windows.Forms.Label label_FireAlert_inform_1th;
  2939. private System.Windows.Forms.TextBox txtFirstFireWarnningMessage;
  2940. private System.Windows.Forms.Label label_FireAlert_inform_2th;
  2941. private System.Windows.Forms.ComboBox cboSecondFireWarnningMessage;
  2942. private System.Windows.Forms.Label lblConnetErrorCnt;
  2943. private System.Windows.Forms.Label lblDeviceFireCnt;
  2944. private System.Windows.Forms.Label lblReceiverCutCnt;
  2945. private System.Windows.Forms.Label lblRepeaterBlockingCnt;
  2946. private System.Windows.Forms.Label lblDeviceWriteCnt;
  2947. private System.Windows.Forms.Label label_FacilityAlert_inform_1th;
  2948. private System.Windows.Forms.ComboBox cboWriteWarningMessage;
  2949. private System.Windows.Forms.Panel panel_Receiver1;
  2950. private System.Windows.Forms.Label label_Time;
  2951. private System.Windows.Forms.PictureBox pictureBox_CI;
  2952. private System.Windows.Forms.Panel panel_Middle;
  2953. private System.Windows.Forms.Panel panel_Bottom;
  2954. private System.Windows.Forms.Label label_BuildingName;
  2955. private System.Windows.Forms.Label label_FireAlert;
  2956. private System.Windows.Forms.Label label_FacilityAlert;
  2957. private System.Windows.Forms.Button button_FireDetect1;
  2958. private System.Windows.Forms.Button button_DeviceNotuse1;
  2959. private System.Windows.Forms.Button button_DeviceCut1;
  2960. private System.Windows.Forms.Button button_RepeaterError1;
  2961. private System.Windows.Forms.Button button_DeviceInput1;
  2962. private System.Windows.Forms.Button button_Recover1;
  2963. private System.Windows.Forms.Button button_Check1;
  2964. private System.Windows.Forms.Button button_SearchHistory;
  2965. private System.Windows.Forms.Label label_ReceiverCount;
  2966. private System.Windows.Forms.Label label_CurrentStatus;
  2967. private System.Windows.Forms.Button button_SearchControl;
  2968. private System.Windows.Forms.Button button_MainSoundStop;
  2969. private System.Windows.Forms.Panel panel_Receiver16;
  2970. private System.Windows.Forms.Button button_Recover16;
  2971. private System.Windows.Forms.Button button_Receiver16;
  2972. private System.Windows.Forms.Button button_Check16;
  2973. private System.Windows.Forms.Button button_DeviceNotuse16;
  2974. private System.Windows.Forms.Button button_DeviceCut16;
  2975. private System.Windows.Forms.Button button_RepeaterError16;
  2976. private System.Windows.Forms.Button button_DeviceInput16;
  2977. private System.Windows.Forms.Button button_FireDetect16;
  2978. private System.Windows.Forms.Panel panel_Receiver8;
  2979. private System.Windows.Forms.Button button_Recover8;
  2980. private System.Windows.Forms.Button button_Receiver8;
  2981. private System.Windows.Forms.Button button_Check8;
  2982. private System.Windows.Forms.Button button_DeviceNotuse8;
  2983. private System.Windows.Forms.Button button_DeviceCut8;
  2984. private System.Windows.Forms.Button button_RepeaterError8;
  2985. private System.Windows.Forms.Button button_DeviceInput8;
  2986. private System.Windows.Forms.Button button_FireDetect8;
  2987. private System.Windows.Forms.Panel panel_Receiver12;
  2988. private System.Windows.Forms.Button button_Recover12;
  2989. private System.Windows.Forms.Button button_Receiver12;
  2990. private System.Windows.Forms.Button button_Check12;
  2991. private System.Windows.Forms.Button button_DeviceNotuse12;
  2992. private System.Windows.Forms.Button button_DeviceCut12;
  2993. private System.Windows.Forms.Button button_RepeaterError12;
  2994. private System.Windows.Forms.Button button_DeviceInput12;
  2995. private System.Windows.Forms.Button button_FireDetect12;
  2996. private System.Windows.Forms.Panel panel_Receiver4;
  2997. private System.Windows.Forms.Button button_Recover4;
  2998. private System.Windows.Forms.Button button_Receiver4;
  2999. private System.Windows.Forms.Button button_Check4;
  3000. private System.Windows.Forms.Button button_DeviceNotuse4;
  3001. private System.Windows.Forms.Button button_DeviceCut4;
  3002. private System.Windows.Forms.Button button_RepeaterError4;
  3003. private System.Windows.Forms.Button button_DeviceInput4;
  3004. private System.Windows.Forms.Button button_FireDetect4;
  3005. private System.Windows.Forms.Panel panel_Receiver14;
  3006. private System.Windows.Forms.Button button_Recover14;
  3007. private System.Windows.Forms.Button button_Receiver14;
  3008. private System.Windows.Forms.Button button_Check14;
  3009. private System.Windows.Forms.Button button_DeviceNotuse14;
  3010. private System.Windows.Forms.Button button_DeviceCut14;
  3011. private System.Windows.Forms.Button button_RepeaterError14;
  3012. private System.Windows.Forms.Button button_DeviceInput14;
  3013. private System.Windows.Forms.Button button_FireDetect14;
  3014. private System.Windows.Forms.Panel panel_Receiver6;
  3015. private System.Windows.Forms.Button button_Recover6;
  3016. private System.Windows.Forms.Button button_Receiver6;
  3017. private System.Windows.Forms.Button button_Check6;
  3018. private System.Windows.Forms.Button button_DeviceNotuse6;
  3019. private System.Windows.Forms.Button button_DeviceCut6;
  3020. private System.Windows.Forms.Button button_RepeaterError6;
  3021. private System.Windows.Forms.Button button_DeviceInput6;
  3022. private System.Windows.Forms.Button button_FireDetect6;
  3023. private System.Windows.Forms.Panel panel_Receiver2;
  3024. private System.Windows.Forms.Button button_Recover2;
  3025. private System.Windows.Forms.Button button_Receiver2;
  3026. private System.Windows.Forms.Button button_Check2;
  3027. private System.Windows.Forms.Button button_DeviceNotuse2;
  3028. private System.Windows.Forms.Button button_DeviceCut2;
  3029. private System.Windows.Forms.Button button_RepeaterError2;
  3030. private System.Windows.Forms.Button button_DeviceInput2;
  3031. private System.Windows.Forms.Button button_FireDetect2;
  3032. private System.Windows.Forms.Panel panel_Receiver15;
  3033. private System.Windows.Forms.Button button_Recover15;
  3034. private System.Windows.Forms.Button button_Receiver15;
  3035. private System.Windows.Forms.Button button_Check15;
  3036. private System.Windows.Forms.Button button_DeviceNotuse15;
  3037. private System.Windows.Forms.Button button_DeviceCut15;
  3038. private System.Windows.Forms.Button button_RepeaterError15;
  3039. private System.Windows.Forms.Button button_DeviceInput15;
  3040. private System.Windows.Forms.Button button_FireDetect15;
  3041. private System.Windows.Forms.Panel panel_Receiver7;
  3042. private System.Windows.Forms.Button button_Recover7;
  3043. private System.Windows.Forms.Button button_Receiver7;
  3044. private System.Windows.Forms.Button button_Check7;
  3045. private System.Windows.Forms.Button button_DeviceNotuse7;
  3046. private System.Windows.Forms.Button button_DeviceCut7;
  3047. private System.Windows.Forms.Button button_RepeaterError7;
  3048. private System.Windows.Forms.Button button_DeviceInput7;
  3049. private System.Windows.Forms.Button button_FireDetect7;
  3050. private System.Windows.Forms.Panel panel_Receiver3;
  3051. private System.Windows.Forms.Button button_Recover3;
  3052. private System.Windows.Forms.Button button_Receiver3;
  3053. private System.Windows.Forms.Button button_Check3;
  3054. private System.Windows.Forms.Button button_DeviceNotuse3;
  3055. private System.Windows.Forms.Button button_DeviceCut3;
  3056. private System.Windows.Forms.Button button_RepeaterError3;
  3057. private System.Windows.Forms.Button button_DeviceInput3;
  3058. private System.Windows.Forms.Button button_FireDetect3;
  3059. private System.Windows.Forms.Panel panel_Receiver13;
  3060. private System.Windows.Forms.Button button_Recover13;
  3061. private System.Windows.Forms.Button button_Receiver13;
  3062. private System.Windows.Forms.Button button_Check13;
  3063. private System.Windows.Forms.Button button_DeviceNotuse13;
  3064. private System.Windows.Forms.Button button_DeviceCut13;
  3065. private System.Windows.Forms.Button button_RepeaterError13;
  3066. private System.Windows.Forms.Button button_DeviceInput13;
  3067. private System.Windows.Forms.Button button_FireDetect13;
  3068. private System.Windows.Forms.Panel panel_Receiver5;
  3069. private System.Windows.Forms.Button button_Recover5;
  3070. private System.Windows.Forms.Button button_Receiver5;
  3071. private System.Windows.Forms.Button button_Check5;
  3072. private System.Windows.Forms.Button button_DeviceNotuse5;
  3073. private System.Windows.Forms.Button button_DeviceCut5;
  3074. private System.Windows.Forms.Button button_RepeaterError5;
  3075. private System.Windows.Forms.Button button_DeviceInput5;
  3076. private System.Windows.Forms.Button button_FireDetect5;
  3077. private System.Windows.Forms.Panel panel_Receiver9;
  3078. private System.Windows.Forms.Button button_Recover9;
  3079. private System.Windows.Forms.Button button_Receiver9;
  3080. private System.Windows.Forms.Button button_Check9;
  3081. private System.Windows.Forms.Button button_DeviceNotuse9;
  3082. private System.Windows.Forms.Button button_DeviceCut9;
  3083. private System.Windows.Forms.Button button_RepeaterError9;
  3084. private System.Windows.Forms.Button button_DeviceInput9;
  3085. private System.Windows.Forms.Button button_FireDetect9;
  3086. private System.Windows.Forms.Button button_Receiver1;
  3087. private System.Windows.Forms.Panel panel_Receiver10;
  3088. private System.Windows.Forms.Button button_Recover10;
  3089. private System.Windows.Forms.Button button_Receiver10;
  3090. private System.Windows.Forms.Button button_Check10;
  3091. private System.Windows.Forms.Button button_DeviceNotuse10;
  3092. private System.Windows.Forms.Button button_DeviceCut10;
  3093. private System.Windows.Forms.Button button_RepeaterError10;
  3094. private System.Windows.Forms.Button button_DeviceInput10;
  3095. private System.Windows.Forms.Button button_FireDetect10;
  3096. private System.Windows.Forms.Panel panel_Receiver11;
  3097. private System.Windows.Forms.Button button_Recover11;
  3098. private System.Windows.Forms.Button button_Receiver11;
  3099. private System.Windows.Forms.Button button_Check11;
  3100. private System.Windows.Forms.Button button_DeviceNotuse11;
  3101. private System.Windows.Forms.Button button_DeviceCut11;
  3102. private System.Windows.Forms.Button button_RepeaterError11;
  3103. private System.Windows.Forms.Button button_DeviceInput11;
  3104. private System.Windows.Forms.Button button_FireDetect11;
  3105. private System.Windows.Forms.Label label_CurrentStatus_Cut;
  3106. private System.Windows.Forms.Label label_CurrentStatus_Blocking;
  3107. private System.Windows.Forms.Label label_CurrentStatus_Error;
  3108. private System.Windows.Forms.Label label_CurrentStatus_Facility;
  3109. private System.Windows.Forms.Label label_CurrentStatus_Fire;
  3110. private System.Windows.Forms.ComboBox cboPreFireWarnningMessage;
  3111. private System.Windows.Forms.Label labelPreFireAlert;
  3112. private System.Windows.Forms.Label lblLEDText;
  3113. }
  3114. }