Main.Designer.cs 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682
  1. using DevExpress.XtraEditors;
  2. using UAS_PLCDataReader.CustomerControl.AutoDataGridControl;
  3. using UAS_PLCDataReader.CustomerControl;
  4. using UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum;
  5. namespace UAS_PLCDataReader
  6. {
  7. partial class Main
  8. {
  9. /// <summary>
  10. /// Required designer variable.
  11. /// </summary>
  12. private System.ComponentModel.IContainer components = null;
  13. /// <summary>
  14. /// Clean up any resources being used.
  15. /// </summary>
  16. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  17. protected override void Dispose(bool disposing)
  18. {
  19. if (disposing && (components != null))
  20. {
  21. components.Dispose();
  22. }
  23. base.Dispose(disposing);
  24. }
  25. #region Windows Form Designer generated code
  26. /// <summary>
  27. /// Required method for Designer support - do not modify
  28. /// the contents of this method with the code editor.
  29. /// </summary>
  30. private void InitializeComponent()
  31. {
  32. this.components = new System.ComponentModel.Container();
  33. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
  34. this.RibbonNav = new DevExpress.XtraBars.Ribbon.RibbonControl();
  35. this.ButtonDeviceList = new DevExpress.XtraBars.BarButtonItem();
  36. this.ButtonDeviceNetSetting = new DevExpress.XtraBars.BarButtonItem();
  37. this.ButtonCommandSet = new DevExpress.XtraBars.BarButtonItem();
  38. this.ButtonPollingSetting = new DevExpress.XtraBars.BarButtonItem();
  39. this.ButtionPolling = new DevExpress.XtraBars.BarButtonItem();
  40. this.ButtonDeviceStatus = new DevExpress.XtraBars.BarButtonItem();
  41. this.ButtonWorkCenterStatus = new DevExpress.XtraBars.BarButtonItem();
  42. this.ButtonDeviceRunLog = new DevExpress.XtraBars.BarButtonItem();
  43. this.ButtonClientParam = new DevExpress.XtraBars.BarButtonItem();
  44. this.ButtonDeviceData = new DevExpress.XtraBars.BarButtonItem();
  45. this.DeviceInf = new DevExpress.XtraBars.Ribbon.RibbonPage();
  46. this.RibDeviceInf = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  47. this.DeviceCommandSetting = new DevExpress.XtraBars.Ribbon.RibbonPage();
  48. this.RibDeviceCommand = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  49. this.MainTabControl = new DevExpress.XtraTab.XtraTabControl();
  50. this.PageDeviceList = new DevExpress.XtraTab.XtraTabPage();
  51. this.ButtonAddDevice = new UAS_PLCDataReader.CustomerControl.Button.ButtonAddRow();
  52. this.ButtonDeleteDevice = new UAS_PLCDataReader.CustomerControl.Button.ButtonDeleteRow();
  53. this.ButtonSaveDevice = new UAS_PLCDataReader.CustomerControl.Button.ButtonSaveGrid();
  54. this.ComBoxDeviceListMan = new DevExpress.XtraEditors.SearchLookUpEdit();
  55. this.searchLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
  56. this.em_code = new DevExpress.XtraGrid.Columns.GridColumn();
  57. this.em_name = new DevExpress.XtraGrid.Columns.GridColumn();
  58. this.ComBoxDeviceListMan_label = new DevExpress.XtraEditors.LabelControl();
  59. this.ComboxDeviceListWC = new DevExpress.XtraEditors.ComboBoxEdit();
  60. this.ComboxDeviceListLC = new DevExpress.XtraEditors.ComboBoxEdit();
  61. this.ComboxDeviceListLC_label = new DevExpress.XtraEditors.LabelControl();
  62. this.ComboxDeviceListWC_label = new DevExpress.XtraEditors.LabelControl();
  63. this.GridDeviceList = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  64. this.GridViewDeviceList = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  65. this.DeviceListCheckedColumn = new DevExpress.XtraGrid.Columns.GridColumn();
  66. this.dpc_enableCheckEdit = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  67. this.de_id = new DevExpress.XtraGrid.Columns.GridColumn();
  68. this.de_code = new DevExpress.XtraGrid.Columns.GridColumn();
  69. this.de_name = new DevExpress.XtraGrid.Columns.GridColumn();
  70. this.de_runstatus = new DevExpress.XtraGrid.Columns.GridColumn();
  71. this.de_currentcentername = new DevExpress.XtraGrid.Columns.GridColumn();
  72. this.DeviceItemSearchLookUpEdit = new DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit();
  73. this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
  74. this.de_currentcentercode = new DevExpress.XtraGrid.Columns.GridColumn();
  75. this.de_stepcode = new DevExpress.XtraGrid.Columns.GridColumn();
  76. this.de_stepname = new DevExpress.XtraGrid.Columns.GridColumn();
  77. this.de_sourcecode = new DevExpress.XtraGrid.Columns.GridColumn();
  78. this.de_indate = new DevExpress.XtraGrid.Columns.GridColumn();
  79. this.de_spec = new DevExpress.XtraGrid.Columns.GridColumn();
  80. this.de_inman = new DevExpress.XtraGrid.Columns.GridColumn();
  81. this.de_vendcode = new DevExpress.XtraGrid.Columns.GridColumn();
  82. this.de_vendname = new DevExpress.XtraGrid.Columns.GridColumn();
  83. this.de_address = new DevExpress.XtraGrid.Columns.GridColumn();
  84. this.de_linecode = new DevExpress.XtraGrid.Columns.GridColumn();
  85. this.de_wccode = new DevExpress.XtraGrid.Columns.GridColumn();
  86. this.de_item1 = new DevExpress.XtraGrid.Columns.GridColumn();
  87. this.de_item2 = new DevExpress.XtraGrid.Columns.GridColumn();
  88. this.de_item3 = new DevExpress.XtraGrid.Columns.GridColumn();
  89. this.de_item4 = new DevExpress.XtraGrid.Columns.GridColumn();
  90. this.de_item5 = new DevExpress.XtraGrid.Columns.GridColumn();
  91. this.de_item6 = new DevExpress.XtraGrid.Columns.GridColumn();
  92. this.de_item7 = new DevExpress.XtraGrid.Columns.GridColumn();
  93. this.de_item8 = new DevExpress.XtraGrid.Columns.GridColumn();
  94. this.de_item9 = new DevExpress.XtraGrid.Columns.GridColumn();
  95. this.de_item10 = new DevExpress.XtraGrid.Columns.GridColumn();
  96. this.DataItemRepositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
  97. this.PageCommandSet = new DevExpress.XtraTab.XtraTabPage();
  98. this.ButtonDeleteCommand = new UAS_PLCDataReader.CustomerControl.Button.ButtonDeleteRow();
  99. this.Brand_label = new DevExpress.XtraEditors.LabelControl();
  100. this.Brand = new DevExpress.XtraEditors.ComboBoxEdit();
  101. this.ButtonNewCommand = new UAS_PLCDataReader.CustomerControl.Button.ButtonAddRow();
  102. this.ButtonSaveCommand = new UAS_PLCDataReader.CustomerControl.Button.ButtonSaveGrid();
  103. this.GridCommandSetting = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  104. this.GridViewCommandSet = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  105. this.CommandSetCheckedColumn = new DevExpress.XtraGrid.Columns.GridColumn();
  106. this.CheckEditCommandSet = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
  107. this.dc_id = new DevExpress.XtraGrid.Columns.GridColumn();
  108. this.dc_code = new DevExpress.XtraGrid.Columns.GridColumn();
  109. this.dc_name = new DevExpress.XtraGrid.Columns.GridColumn();
  110. this.dc_type = new DevExpress.XtraGrid.Columns.GridColumn();
  111. this.dc_typename = new DevExpress.XtraGrid.Columns.GridColumn();
  112. this.dc_dataindex = new DevExpress.XtraGrid.Columns.GridColumn();
  113. this.dc_value = new DevExpress.XtraGrid.Columns.GridColumn();
  114. this.dc_sendcoding = new DevExpress.XtraGrid.Columns.GridColumn();
  115. this.CommandSetRepositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
  116. this.dc_receivecoding = new DevExpress.XtraGrid.Columns.GridColumn();
  117. this.dc_man = new DevExpress.XtraGrid.Columns.GridColumn();
  118. this.dc_date = new DevExpress.XtraGrid.Columns.GridColumn();
  119. this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
  120. this.db_name = new DevExpress.XtraGrid.Columns.GridColumn();
  121. this.PageDeviceNetSetting = new DevExpress.XtraTab.XtraTabPage();
  122. this.ButtonDeleteNetConfig = new UAS_PLCDataReader.CustomerControl.Button.ButtonDeleteRow();
  123. this.ButtonAddNetConfig = new UAS_PLCDataReader.CustomerControl.Button.ButtonAddRow();
  124. this.ButtonSaveNetConfig = new UAS_PLCDataReader.CustomerControl.Button.ButtonSaveGrid();
  125. this.GridDeviceNetSetting = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  126. this.GridViewDeviceNetSetting = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  127. this.NetSettingCheckedColumn = new DevExpress.XtraGrid.Columns.GridColumn();
  128. this.dnc_id = new DevExpress.XtraGrid.Columns.GridColumn();
  129. this.dnc_decode = new DevExpress.XtraGrid.Columns.GridColumn();
  130. this.de_name1 = new DevExpress.XtraGrid.Columns.GridColumn();
  131. this.dnc_getway = new DevExpress.XtraGrid.Columns.GridColumn();
  132. this.dnc_upperip = new DevExpress.XtraGrid.Columns.GridColumn();
  133. this.dnc_port = new DevExpress.XtraGrid.Columns.GridColumn();
  134. this.dnc_mac = new DevExpress.XtraGrid.Columns.GridColumn();
  135. this.dnc_ip = new DevExpress.XtraGrid.Columns.GridColumn();
  136. this.dnc_type = new DevExpress.XtraGrid.Columns.GridColumn();
  137. this.PagePollingSetting = new DevExpress.XtraTab.XtraTabPage();
  138. this.ButtonDeleteCommandSet = new UAS_PLCDataReader.CustomerControl.Button.ButtonDeleteRow();
  139. this.ButtonNewCommandSet = new UAS_PLCDataReader.CustomerControl.Button.ButtonAddRow();
  140. this.ButtonSaveCommandSet = new UAS_PLCDataReader.CustomerControl.Button.ButtonSaveGrid();
  141. this.ButtonPausePolling = new DevExpress.XtraEditors.SimpleButton();
  142. this.ButtonStartPolling = new DevExpress.XtraEditors.SimpleButton();
  143. this.GridPollingSetting = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  144. this.GridViewPollSetting = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  145. this.PollSettingCheckedColumn = new DevExpress.XtraGrid.Columns.GridColumn();
  146. this.dpc_id = new DevExpress.XtraGrid.Columns.GridColumn();
  147. this.dpc_decode = new DevExpress.XtraGrid.Columns.GridColumn();
  148. this.PollSettingDeviceSearchLookUpEdit = new DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit();
  149. this.repositoryItemSearchLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
  150. this.dpc_dename = new DevExpress.XtraGrid.Columns.GridColumn();
  151. this.dpc_interval = new DevExpress.XtraGrid.Columns.GridColumn();
  152. this.dpc_dccode = new DevExpress.XtraGrid.Columns.GridColumn();
  153. this.PollSettingItemSearchLookUpEdit = new DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit();
  154. this.PollSettingItemSearchLookUpEditView = new DevExpress.XtraGrid.Views.Grid.GridView();
  155. this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
  156. this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
  157. this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
  158. this.dpc_function = new DevExpress.XtraGrid.Columns.GridColumn();
  159. this.dpc_enable = new DevExpress.XtraGrid.Columns.GridColumn();
  160. this.em_name1 = new DevExpress.XtraGrid.Columns.GridColumn();
  161. this.dpc_status = new DevExpress.XtraGrid.Columns.GridColumn();
  162. this.dpc_man = new DevExpress.XtraGrid.Columns.GridColumn();
  163. this.dpc_remark = new DevExpress.XtraGrid.Columns.GridColumn();
  164. this.POLLSETTINGSTATUSCOLUMN = new DevExpress.XtraGrid.Columns.GridColumn();
  165. this.PollingSetItemLookUpEdit = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
  166. this.PagePolling = new DevExpress.XtraTab.XtraTabPage();
  167. this.ButtonAddPolling = new UAS_PLCDataReader.CustomerControl.Button.ButtonAddRow();
  168. this.ButtonDeletePolling = new UAS_PLCDataReader.CustomerControl.Button.ButtonDeleteRow();
  169. this.ButtonSavePolling = new UAS_PLCDataReader.CustomerControl.Button.ButtonSaveGrid();
  170. this.GridPolling = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  171. this.GridViewPolling = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  172. this.PollingCheckedColumn = new DevExpress.XtraGrid.Columns.GridColumn();
  173. this.pl_id = new DevExpress.XtraGrid.Columns.GridColumn();
  174. this.pl_code = new DevExpress.XtraGrid.Columns.GridColumn();
  175. this.pl_name = new DevExpress.XtraGrid.Columns.GridColumn();
  176. this.pl_type = new DevExpress.XtraGrid.Columns.GridColumn();
  177. this.pl_dccode = new DevExpress.XtraGrid.Columns.GridColumn();
  178. this.pl_remark = new DevExpress.XtraGrid.Columns.GridColumn();
  179. this.PageDeviceStatus = new DevExpress.XtraTab.XtraTabPage();
  180. this.ComboxDeviceDepartment = new DevExpress.XtraEditors.ComboBoxEdit();
  181. this.ComboxDeviceFloor = new DevExpress.XtraEditors.ComboBoxEdit();
  182. this.label_ComboxDeviceFloor = new DevExpress.XtraEditors.LabelControl();
  183. this.label_ComboxDeviceDepartment = new DevExpress.XtraEditors.LabelControl();
  184. this.ComboxDeviceStatusWC = new DevExpress.XtraEditors.ComboBoxEdit();
  185. this.ComboxDeviceStatusLC = new DevExpress.XtraEditors.ComboBoxEdit();
  186. this.CheckEditDeviceStatusEnable = new DevExpress.XtraEditors.CheckEdit();
  187. this.ComboxDeviceStatusLC_label = new DevExpress.XtraEditors.LabelControl();
  188. this.ComboxDeviceStatusWC_label = new DevExpress.XtraEditors.LabelControl();
  189. this.PanelDeviceStatus = new DevExpress.XtraEditors.XtraScrollableControl();
  190. this.PageWorkCenterStatus = new DevExpress.XtraTab.XtraTabPage();
  191. this.GridWorkCenterStatus = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  192. this.GridViewWorkCenterStatus = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  193. this.PageDeviceRunLog = new DevExpress.XtraTab.XtraTabPage();
  194. this.ButtonSearchDeviceRunLog = new DevExpress.XtraEditors.SimpleButton();
  195. this.TextDrrDeCode = new DevExpress.XtraEditors.TextEdit();
  196. this.LabelDrrDeCode = new DevExpress.XtraEditors.LabelControl();
  197. this.GridDeviceRunLog = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  198. this.GirdViewDeviceRunLog = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  199. this.主键 = new DevExpress.XtraGrid.Columns.GridColumn();
  200. this.drr_decode = new DevExpress.XtraGrid.Columns.GridColumn();
  201. this.drr_dename = new DevExpress.XtraGrid.Columns.GridColumn();
  202. this.drr_command = new DevExpress.XtraGrid.Columns.GridColumn();
  203. this.drr_date = new DevExpress.XtraGrid.Columns.GridColumn();
  204. this.drr_commandfrom = new DevExpress.XtraGrid.Columns.GridColumn();
  205. this.drr_doman = new DevExpress.XtraGrid.Columns.GridColumn();
  206. this.drr_remark = new DevExpress.XtraGrid.Columns.GridColumn();
  207. this.PageClientParam = new DevExpress.XtraTab.XtraTabPage();
  208. this.label2 = new System.Windows.Forms.Label();
  209. this.CheckOUTQTY = new DevExpress.XtraEditors.CheckEdit();
  210. this.CheckPARAM = new DevExpress.XtraEditors.CheckEdit();
  211. this.CheckINQTY = new DevExpress.XtraEditors.CheckEdit();
  212. this.ButtonSaveClientParam = new DevExpress.XtraEditors.SimpleButton();
  213. this.UpdateTimeSpan = new System.Windows.Forms.NumericUpDown();
  214. this.label1 = new System.Windows.Forms.Label();
  215. this.PageDeviceData = new DevExpress.XtraTab.XtraTabPage();
  216. this.ButtonRefreshDeviceData = new UAS_PLCDataReader.CustomerControl.Button.ButtonDeleteRow();
  217. this.GridDeviceData = new UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl();
  218. this.GridViewDeviceData = new UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum();
  219. this.dr_decode = new DevExpress.XtraGrid.Columns.GridColumn();
  220. this.dr_dename = new DevExpress.XtraGrid.Columns.GridColumn();
  221. this.dr_runstatus = new DevExpress.XtraGrid.Columns.GridColumn();
  222. this.dr_qty = new DevExpress.XtraGrid.Columns.GridColumn();
  223. this.dr_inqty = new DevExpress.XtraGrid.Columns.GridColumn();
  224. this.dr_value1 = new DevExpress.XtraGrid.Columns.GridColumn();
  225. this.dr_value2 = new DevExpress.XtraGrid.Columns.GridColumn();
  226. this.dr_value3 = new DevExpress.XtraGrid.Columns.GridColumn();
  227. this.dr_value4 = new DevExpress.XtraGrid.Columns.GridColumn();
  228. this.dr_value5 = new DevExpress.XtraGrid.Columns.GridColumn();
  229. this.dr_value6 = new DevExpress.XtraGrid.Columns.GridColumn();
  230. this.dr_value7 = new DevExpress.XtraGrid.Columns.GridColumn();
  231. this.dr_value8 = new DevExpress.XtraGrid.Columns.GridColumn();
  232. this.dr_value9 = new DevExpress.XtraGrid.Columns.GridColumn();
  233. this.dr_value10 = new DevExpress.XtraGrid.Columns.GridColumn();
  234. this.TimerDeviceStatus = new System.Windows.Forms.Timer(this.components);
  235. this.CommonTipController = new DevExpress.Utils.ToolTipController(this.components);
  236. this.TimerUpdateDevice = new System.Windows.Forms.Timer(this.components);
  237. this.TimerUpdateSQL = new System.Windows.Forms.Timer(this.components);
  238. ((System.ComponentModel.ISupportInitialize)(this.RibbonNav)).BeginInit();
  239. ((System.ComponentModel.ISupportInitialize)(this.MainTabControl)).BeginInit();
  240. this.MainTabControl.SuspendLayout();
  241. this.PageDeviceList.SuspendLayout();
  242. ((System.ComponentModel.ISupportInitialize)(this.ComBoxDeviceListMan.Properties)).BeginInit();
  243. ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).BeginInit();
  244. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceListWC.Properties)).BeginInit();
  245. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceListLC.Properties)).BeginInit();
  246. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceList)).BeginInit();
  247. ((System.ComponentModel.ISupportInitialize)(this.GridViewDeviceList)).BeginInit();
  248. ((System.ComponentModel.ISupportInitialize)(this.dpc_enableCheckEdit)).BeginInit();
  249. ((System.ComponentModel.ISupportInitialize)(this.DeviceItemSearchLookUpEdit)).BeginInit();
  250. ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
  251. ((System.ComponentModel.ISupportInitialize)(this.DataItemRepositoryItemComboBox1)).BeginInit();
  252. this.PageCommandSet.SuspendLayout();
  253. ((System.ComponentModel.ISupportInitialize)(this.Brand.Properties)).BeginInit();
  254. ((System.ComponentModel.ISupportInitialize)(this.GridCommandSetting)).BeginInit();
  255. ((System.ComponentModel.ISupportInitialize)(this.GridViewCommandSet)).BeginInit();
  256. ((System.ComponentModel.ISupportInitialize)(this.CheckEditCommandSet)).BeginInit();
  257. ((System.ComponentModel.ISupportInitialize)(this.CommandSetRepositoryItemComboBox1)).BeginInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
  259. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).BeginInit();
  260. this.PageDeviceNetSetting.SuspendLayout();
  261. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceNetSetting)).BeginInit();
  262. ((System.ComponentModel.ISupportInitialize)(this.GridViewDeviceNetSetting)).BeginInit();
  263. this.PagePollingSetting.SuspendLayout();
  264. ((System.ComponentModel.ISupportInitialize)(this.GridPollingSetting)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.GridViewPollSetting)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.PollSettingDeviceSearchLookUpEdit)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1View)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.PollSettingItemSearchLookUpEdit)).BeginInit();
  269. ((System.ComponentModel.ISupportInitialize)(this.PollSettingItemSearchLookUpEditView)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.PollingSetItemLookUpEdit)).BeginInit();
  271. this.PagePolling.SuspendLayout();
  272. ((System.ComponentModel.ISupportInitialize)(this.GridPolling)).BeginInit();
  273. ((System.ComponentModel.ISupportInitialize)(this.GridViewPolling)).BeginInit();
  274. this.PageDeviceStatus.SuspendLayout();
  275. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceDepartment.Properties)).BeginInit();
  276. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceFloor.Properties)).BeginInit();
  277. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceStatusWC.Properties)).BeginInit();
  278. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceStatusLC.Properties)).BeginInit();
  279. ((System.ComponentModel.ISupportInitialize)(this.CheckEditDeviceStatusEnable.Properties)).BeginInit();
  280. this.PageWorkCenterStatus.SuspendLayout();
  281. ((System.ComponentModel.ISupportInitialize)(this.GridWorkCenterStatus)).BeginInit();
  282. ((System.ComponentModel.ISupportInitialize)(this.GridViewWorkCenterStatus)).BeginInit();
  283. this.PageDeviceRunLog.SuspendLayout();
  284. ((System.ComponentModel.ISupportInitialize)(this.TextDrrDeCode.Properties)).BeginInit();
  285. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceRunLog)).BeginInit();
  286. ((System.ComponentModel.ISupportInitialize)(this.GirdViewDeviceRunLog)).BeginInit();
  287. this.PageClientParam.SuspendLayout();
  288. ((System.ComponentModel.ISupportInitialize)(this.CheckOUTQTY.Properties)).BeginInit();
  289. ((System.ComponentModel.ISupportInitialize)(this.CheckPARAM.Properties)).BeginInit();
  290. ((System.ComponentModel.ISupportInitialize)(this.CheckINQTY.Properties)).BeginInit();
  291. ((System.ComponentModel.ISupportInitialize)(this.UpdateTimeSpan)).BeginInit();
  292. this.PageDeviceData.SuspendLayout();
  293. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceData)).BeginInit();
  294. ((System.ComponentModel.ISupportInitialize)(this.GridViewDeviceData)).BeginInit();
  295. this.SuspendLayout();
  296. //
  297. // RibbonNav
  298. //
  299. this.RibbonNav.ApplicationIcon = global::UAS_PLCDataReader.Properties.Resources.U_Letter_72px_1121581_easyicon_net;
  300. this.RibbonNav.DrawGroupCaptions = DevExpress.Utils.DefaultBoolean.False;
  301. this.RibbonNav.ExpandCollapseItem.Id = 0;
  302. this.RibbonNav.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
  303. this.RibbonNav.ExpandCollapseItem,
  304. this.ButtonDeviceList,
  305. this.ButtonDeviceNetSetting,
  306. this.ButtonCommandSet,
  307. this.ButtonPollingSetting,
  308. this.ButtionPolling,
  309. this.ButtonDeviceStatus,
  310. this.ButtonWorkCenterStatus,
  311. this.ButtonDeviceRunLog,
  312. this.ButtonClientParam,
  313. this.ButtonDeviceData});
  314. this.RibbonNav.Location = new System.Drawing.Point(0, 0);
  315. this.RibbonNav.MaxItemId = 18;
  316. this.RibbonNav.Name = "RibbonNav";
  317. this.RibbonNav.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
  318. this.DeviceInf,
  319. this.DeviceCommandSetting});
  320. this.RibbonNav.Size = new System.Drawing.Size(1040, 128);
  321. //
  322. // ButtonDeviceList
  323. //
  324. this.ButtonDeviceList.Caption = "设备主档资料";
  325. this.ButtonDeviceList.Id = 5;
  326. this.ButtonDeviceList.LargeGlyph = global::UAS_PLCDataReader.Properties.Resources.netstatus_tx_64px_18991_easyicon_net;
  327. this.ButtonDeviceList.Name = "ButtonDeviceList";
  328. this.ButtonDeviceList.Tag = "PageDeviceList";
  329. this.ButtonDeviceList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  330. //
  331. // ButtonDeviceNetSetting
  332. //
  333. this.ButtonDeviceNetSetting.Caption = "设备联网配置";
  334. this.ButtonDeviceNetSetting.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtonDeviceNetSetting.Glyph")));
  335. this.ButtonDeviceNetSetting.Id = 8;
  336. this.ButtonDeviceNetSetting.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtonDeviceNetSetting.LargeGlyph")));
  337. this.ButtonDeviceNetSetting.Name = "ButtonDeviceNetSetting";
  338. this.ButtonDeviceNetSetting.Tag = "PageDeviceNetSetting";
  339. this.ButtonDeviceNetSetting.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  340. //
  341. // ButtonCommandSet
  342. //
  343. this.ButtonCommandSet.Caption = "设备指令设置";
  344. this.ButtonCommandSet.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtonCommandSet.Glyph")));
  345. this.ButtonCommandSet.Id = 9;
  346. this.ButtonCommandSet.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtonCommandSet.LargeGlyph")));
  347. this.ButtonCommandSet.Name = "ButtonCommandSet";
  348. this.ButtonCommandSet.Tag = "PageCommandSet";
  349. this.ButtonCommandSet.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  350. //
  351. // ButtonPollingSetting
  352. //
  353. this.ButtonPollingSetting.Caption = "设备轮询配置";
  354. this.ButtonPollingSetting.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtonPollingSetting.Glyph")));
  355. this.ButtonPollingSetting.Id = 11;
  356. this.ButtonPollingSetting.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtonPollingSetting.LargeGlyph")));
  357. this.ButtonPollingSetting.Name = "ButtonPollingSetting";
  358. this.ButtonPollingSetting.Tag = "PagePollingSetting";
  359. this.ButtonPollingSetting.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  360. //
  361. // ButtionPolling
  362. //
  363. this.ButtionPolling.Caption = "轮询业务定义";
  364. this.ButtionPolling.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtionPolling.Glyph")));
  365. this.ButtionPolling.Id = 12;
  366. this.ButtionPolling.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtionPolling.LargeGlyph")));
  367. this.ButtionPolling.Name = "ButtionPolling";
  368. this.ButtionPolling.Tag = "PagePolling";
  369. this.ButtionPolling.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  370. //
  371. // ButtonDeviceStatus
  372. //
  373. this.ButtonDeviceStatus.Caption = "设备运行监控";
  374. this.ButtonDeviceStatus.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtonDeviceStatus.Glyph")));
  375. this.ButtonDeviceStatus.Id = 13;
  376. this.ButtonDeviceStatus.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtonDeviceStatus.LargeGlyph")));
  377. this.ButtonDeviceStatus.Name = "ButtonDeviceStatus";
  378. this.ButtonDeviceStatus.Tag = "PageDeviceStatus";
  379. this.ButtonDeviceStatus.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  380. //
  381. // ButtonWorkCenterStatus
  382. //
  383. this.ButtonWorkCenterStatus.Caption = "车间全局监控";
  384. this.ButtonWorkCenterStatus.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtonWorkCenterStatus.Glyph")));
  385. this.ButtonWorkCenterStatus.Id = 14;
  386. this.ButtonWorkCenterStatus.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtonWorkCenterStatus.LargeGlyph")));
  387. this.ButtonWorkCenterStatus.Name = "ButtonWorkCenterStatus";
  388. this.ButtonWorkCenterStatus.Tag = "PageWorkCenterStatus";
  389. this.ButtonWorkCenterStatus.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  390. //
  391. // ButtonDeviceRunLog
  392. //
  393. this.ButtonDeviceRunLog.Caption = "设备运行日志";
  394. this.ButtonDeviceRunLog.Glyph = global::UAS_PLCDataReader.Properties.Resources.Png_Device;
  395. this.ButtonDeviceRunLog.Id = 15;
  396. this.ButtonDeviceRunLog.LargeGlyph = global::UAS_PLCDataReader.Properties.Resources.Png_Device;
  397. this.ButtonDeviceRunLog.Name = "ButtonDeviceRunLog";
  398. this.ButtonDeviceRunLog.Tag = "PageDeviceRunLog";
  399. this.ButtonDeviceRunLog.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  400. //
  401. // ButtonClientParam
  402. //
  403. this.ButtonClientParam.Caption = "客户端参数设置";
  404. this.ButtonClientParam.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtonClientParam.Glyph")));
  405. this.ButtonClientParam.Id = 16;
  406. this.ButtonClientParam.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtonClientParam.LargeGlyph")));
  407. this.ButtonClientParam.Name = "ButtonClientParam";
  408. this.ButtonClientParam.Tag = "PageClientParam";
  409. this.ButtonClientParam.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  410. //
  411. // ButtonDeviceData
  412. //
  413. this.ButtonDeviceData.Caption = "设备运行数据查看";
  414. this.ButtonDeviceData.Glyph = ((System.Drawing.Image)(resources.GetObject("ButtonDeviceData.Glyph")));
  415. this.ButtonDeviceData.Id = 17;
  416. this.ButtonDeviceData.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("ButtonDeviceData.LargeGlyph")));
  417. this.ButtonDeviceData.Name = "ButtonDeviceData";
  418. this.ButtonDeviceData.Tag = "PageDeviceData";
  419. this.ButtonDeviceData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ButtonItem_ItemClick);
  420. //
  421. // DeviceInf
  422. //
  423. this.DeviceInf.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
  424. this.RibDeviceInf});
  425. this.DeviceInf.Name = "DeviceInf";
  426. this.DeviceInf.Text = "设备参数配置";
  427. //
  428. // RibDeviceInf
  429. //
  430. this.RibDeviceInf.AllowTextClipping = false;
  431. this.RibDeviceInf.ItemLinks.Add(this.ButtonCommandSet, true);
  432. this.RibDeviceInf.ItemLinks.Add(this.ButtonDeviceList);
  433. this.RibDeviceInf.ItemLinks.Add(this.ButtonDeviceNetSetting);
  434. this.RibDeviceInf.ItemLinks.Add(this.ButtonPollingSetting);
  435. this.RibDeviceInf.ItemLinks.Add(this.ButtonClientParam);
  436. this.RibDeviceInf.Name = "RibDeviceInf";
  437. this.RibDeviceInf.ShowCaptionButton = false;
  438. //
  439. // DeviceCommandSetting
  440. //
  441. this.DeviceCommandSetting.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
  442. this.RibDeviceCommand});
  443. this.DeviceCommandSetting.Name = "DeviceCommandSetting";
  444. this.DeviceCommandSetting.Text = "设备运行监控";
  445. //
  446. // RibDeviceCommand
  447. //
  448. this.RibDeviceCommand.ItemLinks.Add(this.ButtonDeviceStatus);
  449. this.RibDeviceCommand.ItemLinks.Add(this.ButtonDeviceData);
  450. this.RibDeviceCommand.ItemLinks.Add(this.ButtonDeviceRunLog);
  451. this.RibDeviceCommand.Name = "RibDeviceCommand";
  452. this.RibDeviceCommand.Text = "ribbonPageGroup3";
  453. //
  454. // MainTabControl
  455. //
  456. this.MainTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
  457. this.MainTabControl.Location = new System.Drawing.Point(0, 128);
  458. this.MainTabControl.Name = "MainTabControl";
  459. this.MainTabControl.SelectedTabPage = this.PageDeviceList;
  460. this.MainTabControl.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
  461. this.MainTabControl.Size = new System.Drawing.Size(1040, 584);
  462. this.MainTabControl.TabIndex = 3;
  463. this.MainTabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
  464. this.PageDeviceList,
  465. this.PageCommandSet,
  466. this.PageDeviceNetSetting,
  467. this.PagePollingSetting,
  468. this.PagePolling,
  469. this.PageDeviceStatus,
  470. this.PageWorkCenterStatus,
  471. this.PageDeviceRunLog,
  472. this.PageClientParam,
  473. this.PageDeviceData});
  474. //
  475. // PageDeviceList
  476. //
  477. this.PageDeviceList.Controls.Add(this.ButtonAddDevice);
  478. this.PageDeviceList.Controls.Add(this.ButtonDeleteDevice);
  479. this.PageDeviceList.Controls.Add(this.ButtonSaveDevice);
  480. this.PageDeviceList.Controls.Add(this.ComBoxDeviceListMan);
  481. this.PageDeviceList.Controls.Add(this.ComBoxDeviceListMan_label);
  482. this.PageDeviceList.Controls.Add(this.ComboxDeviceListWC);
  483. this.PageDeviceList.Controls.Add(this.ComboxDeviceListLC);
  484. this.PageDeviceList.Controls.Add(this.ComboxDeviceListLC_label);
  485. this.PageDeviceList.Controls.Add(this.ComboxDeviceListWC_label);
  486. this.PageDeviceList.Controls.Add(this.GridDeviceList);
  487. this.PageDeviceList.Name = "PageDeviceList";
  488. this.PageDeviceList.PageVisible = false;
  489. this.PageDeviceList.Size = new System.Drawing.Size(1034, 578);
  490. this.PageDeviceList.Text = "设备主档资料";
  491. this.PageDeviceList.VisibleChanged += new System.EventHandler(this.PageDeviceList_VisibleChanged);
  492. //
  493. // ButtonAddDevice
  494. //
  495. this.ButtonAddDevice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  496. this.ButtonAddDevice.Grid = null;
  497. this.ButtonAddDevice.Location = new System.Drawing.Point(818, 4);
  498. this.ButtonAddDevice.Name = "ButtonAddDevice";
  499. this.ButtonAddDevice.Size = new System.Drawing.Size(64, 23);
  500. this.ButtonAddDevice.TabIndex = 16;
  501. this.ButtonAddDevice.Text = "新增";
  502. //
  503. // ButtonDeleteDevice
  504. //
  505. this.ButtonDeleteDevice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  506. this.ButtonDeleteDevice.Grid = null;
  507. this.ButtonDeleteDevice.Location = new System.Drawing.Point(958, 4);
  508. this.ButtonDeleteDevice.Name = "ButtonDeleteDevice";
  509. this.ButtonDeleteDevice.Size = new System.Drawing.Size(64, 23);
  510. this.ButtonDeleteDevice.TabIndex = 15;
  511. this.ButtonDeleteDevice.Text = "删除";
  512. //
  513. // ButtonSaveDevice
  514. //
  515. this.ButtonSaveDevice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  516. this.ButtonSaveDevice.Grid = null;
  517. this.ButtonSaveDevice.HandlerOtherFirst = true;
  518. this.ButtonSaveDevice.Location = new System.Drawing.Point(888, 4);
  519. this.ButtonSaveDevice.Name = "ButtonSaveDevice";
  520. this.ButtonSaveDevice.Size = new System.Drawing.Size(64, 23);
  521. this.ButtonSaveDevice.TabIndex = 14;
  522. this.ButtonSaveDevice.Text = "保存";
  523. this.ButtonSaveDevice.Click += new System.EventHandler(this.ButtonSaveDevice_Click);
  524. //
  525. // ComBoxDeviceListMan
  526. //
  527. this.ComBoxDeviceListMan.EditValue = "";
  528. this.ComBoxDeviceListMan.Location = new System.Drawing.Point(360, 5);
  529. this.ComBoxDeviceListMan.MenuManager = this.RibbonNav;
  530. this.ComBoxDeviceListMan.Name = "ComBoxDeviceListMan";
  531. this.ComBoxDeviceListMan.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 8F);
  532. this.ComBoxDeviceListMan.Properties.Appearance.Options.UseFont = true;
  533. this.ComBoxDeviceListMan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  534. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  535. this.ComBoxDeviceListMan.Properties.DisplayMember = "EM_NAME";
  536. this.ComBoxDeviceListMan.Properties.NullText = "";
  537. this.ComBoxDeviceListMan.Properties.ValueMember = "EM_CODE";
  538. this.ComBoxDeviceListMan.Properties.View = this.searchLookUpEdit1View;
  539. this.ComBoxDeviceListMan.Size = new System.Drawing.Size(100, 22);
  540. this.ComBoxDeviceListMan.TabIndex = 12;
  541. this.ComBoxDeviceListMan.Visible = false;
  542. //
  543. // searchLookUpEdit1View
  544. //
  545. this.searchLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  546. this.em_code,
  547. this.em_name});
  548. this.searchLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
  549. this.searchLookUpEdit1View.Name = "searchLookUpEdit1View";
  550. this.searchLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
  551. this.searchLookUpEdit1View.OptionsView.ShowGroupPanel = false;
  552. //
  553. // em_code
  554. //
  555. this.em_code.Caption = "编号";
  556. this.em_code.FieldName = "EM_CODE";
  557. this.em_code.Name = "em_code";
  558. this.em_code.Visible = true;
  559. this.em_code.VisibleIndex = 0;
  560. //
  561. // em_name
  562. //
  563. this.em_name.Caption = "名称";
  564. this.em_name.FieldName = "EM_NAME";
  565. this.em_name.Name = "em_name";
  566. this.em_name.Visible = true;
  567. this.em_name.VisibleIndex = 1;
  568. //
  569. // ComBoxDeviceListMan_label
  570. //
  571. this.ComBoxDeviceListMan_label.Appearance.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  572. this.ComBoxDeviceListMan_label.Location = new System.Drawing.Point(318, 8);
  573. this.ComBoxDeviceListMan_label.Name = "ComBoxDeviceListMan_label";
  574. this.ComBoxDeviceListMan_label.Size = new System.Drawing.Size(32, 16);
  575. this.ComBoxDeviceListMan_label.TabIndex = 11;
  576. this.ComBoxDeviceListMan_label.Text = "人员";
  577. this.ComBoxDeviceListMan_label.Visible = false;
  578. //
  579. // ComboxDeviceListWC
  580. //
  581. this.ComboxDeviceListWC.Location = new System.Drawing.Point(49, 5);
  582. this.ComboxDeviceListWC.MenuManager = this.RibbonNav;
  583. this.ComboxDeviceListWC.Name = "ComboxDeviceListWC";
  584. this.ComboxDeviceListWC.Properties.Appearance.Font = new System.Drawing.Font("黑体", 11F);
  585. this.ComboxDeviceListWC.Properties.Appearance.Options.UseFont = true;
  586. this.ComboxDeviceListWC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  587. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  588. this.ComboxDeviceListWC.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  589. this.ComboxDeviceListWC.Size = new System.Drawing.Size(100, 22);
  590. this.ComboxDeviceListWC.TabIndex = 6;
  591. this.ComboxDeviceListWC.SelectedIndexChanged += new System.EventHandler(this.ComboxDeviceListWC_SelectedIndexChanged);
  592. //
  593. // ComboxDeviceListLC
  594. //
  595. this.ComboxDeviceListLC.Location = new System.Drawing.Point(201, 5);
  596. this.ComboxDeviceListLC.MenuManager = this.RibbonNav;
  597. this.ComboxDeviceListLC.Name = "ComboxDeviceListLC";
  598. this.ComboxDeviceListLC.Properties.Appearance.Font = new System.Drawing.Font("黑体", 11F);
  599. this.ComboxDeviceListLC.Properties.Appearance.Options.UseFont = true;
  600. this.ComboxDeviceListLC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  601. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  602. this.ComboxDeviceListLC.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  603. this.ComboxDeviceListLC.Size = new System.Drawing.Size(100, 22);
  604. this.ComboxDeviceListLC.TabIndex = 7;
  605. this.ComboxDeviceListLC.SelectedIndexChanged += new System.EventHandler(this.ComboxDeviceListLC_SelectedIndexChanged);
  606. //
  607. // ComboxDeviceListLC_label
  608. //
  609. this.ComboxDeviceListLC_label.Appearance.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  610. this.ComboxDeviceListLC_label.Location = new System.Drawing.Point(161, 8);
  611. this.ComboxDeviceListLC_label.Name = "ComboxDeviceListLC_label";
  612. this.ComboxDeviceListLC_label.Size = new System.Drawing.Size(32, 16);
  613. this.ComboxDeviceListLC_label.TabIndex = 9;
  614. this.ComboxDeviceListLC_label.Text = "线别";
  615. //
  616. // ComboxDeviceListWC_label
  617. //
  618. this.ComboxDeviceListWC_label.Appearance.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  619. this.ComboxDeviceListWC_label.Location = new System.Drawing.Point(10, 8);
  620. this.ComboxDeviceListWC_label.Name = "ComboxDeviceListWC_label";
  621. this.ComboxDeviceListWC_label.Size = new System.Drawing.Size(32, 16);
  622. this.ComboxDeviceListWC_label.TabIndex = 8;
  623. this.ComboxDeviceListWC_label.Text = "车间";
  624. //
  625. // GridDeviceList
  626. //
  627. this.GridDeviceList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  628. | System.Windows.Forms.AnchorStyles.Left)
  629. | System.Windows.Forms.AnchorStyles.Right)));
  630. this.GridDeviceList.Condition = null;
  631. this.GridDeviceList.GetDataSQL = null;
  632. this.GridDeviceList.ID = null;
  633. this.GridDeviceList.InsertSQL = null;
  634. this.GridDeviceList.Location = new System.Drawing.Point(0, 31);
  635. this.GridDeviceList.MainView = this.GridViewDeviceList;
  636. this.GridDeviceList.MenuManager = this.RibbonNav;
  637. this.GridDeviceList.Name = "GridDeviceList";
  638. this.GridDeviceList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  639. this.DataItemRepositoryItemComboBox1,
  640. this.DeviceItemSearchLookUpEdit});
  641. this.GridDeviceList.RowCount = 0;
  642. this.GridDeviceList.Size = new System.Drawing.Size(1034, 547);
  643. this.GridDeviceList.TabIndex = 0;
  644. this.GridDeviceList.TableName = null;
  645. this.GridDeviceList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  646. this.GridViewDeviceList});
  647. //
  648. // GridViewDeviceList
  649. //
  650. this.GridViewDeviceList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  651. this.DeviceListCheckedColumn,
  652. this.de_id,
  653. this.de_code,
  654. this.de_name,
  655. this.de_runstatus,
  656. this.de_currentcentername,
  657. this.de_currentcentercode,
  658. this.de_stepcode,
  659. this.de_stepname,
  660. this.de_sourcecode,
  661. this.de_indate,
  662. this.de_spec,
  663. this.de_inman,
  664. this.de_vendcode,
  665. this.de_vendname,
  666. this.de_address,
  667. this.de_linecode,
  668. this.de_wccode,
  669. this.de_item1,
  670. this.de_item2,
  671. this.de_item3,
  672. this.de_item4,
  673. this.de_item5,
  674. this.de_item6,
  675. this.de_item7,
  676. this.de_item8,
  677. this.de_item9,
  678. this.de_item10});
  679. this.GridViewDeviceList.GridControl = this.GridDeviceList;
  680. this.GridViewDeviceList.IndicatorWidth = 30;
  681. this.GridViewDeviceList.Name = "GridViewDeviceList";
  682. this.GridViewDeviceList.OptionsView.ShowGroupPanel = false;
  683. this.GridViewDeviceList.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.GridViewDeviceList_RowCellClick);
  684. this.GridViewDeviceList.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.GridViewDeviceList_CellValueChanged);
  685. //
  686. // DeviceListCheckedColumn
  687. //
  688. this.DeviceListCheckedColumn.Caption = " ";
  689. this.DeviceListCheckedColumn.ColumnEdit = this.dpc_enableCheckEdit;
  690. this.DeviceListCheckedColumn.FieldName = "CHECKEDCOLUMN";
  691. this.DeviceListCheckedColumn.Name = "DeviceListCheckedColumn";
  692. this.DeviceListCheckedColumn.Visible = true;
  693. this.DeviceListCheckedColumn.VisibleIndex = 0;
  694. //
  695. // dpc_enableCheckEdit
  696. //
  697. this.dpc_enableCheckEdit.AutoHeight = false;
  698. this.dpc_enableCheckEdit.Name = "dpc_enableCheckEdit";
  699. this.dpc_enableCheckEdit.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
  700. this.dpc_enableCheckEdit.NullText = "0";
  701. this.dpc_enableCheckEdit.ValueChecked = "-1";
  702. this.dpc_enableCheckEdit.ValueUnchecked = "0";
  703. //
  704. // de_id
  705. //
  706. this.de_id.Caption = "de_id";
  707. this.de_id.FieldName = "DE_ID";
  708. this.de_id.Name = "de_id";
  709. //
  710. // de_code
  711. //
  712. this.de_code.Caption = "设备编号";
  713. this.de_code.FieldName = "DE_CODE";
  714. this.de_code.Name = "de_code";
  715. this.de_code.Visible = true;
  716. this.de_code.VisibleIndex = 1;
  717. //
  718. // de_name
  719. //
  720. this.de_name.Caption = "设备名称";
  721. this.de_name.FieldName = "DE_NAME";
  722. this.de_name.Name = "de_name";
  723. this.de_name.Visible = true;
  724. this.de_name.VisibleIndex = 2;
  725. //
  726. // de_runstatus
  727. //
  728. this.de_runstatus.Caption = "运行状态";
  729. this.de_runstatus.FieldName = "DE_RUNSTATUS";
  730. this.de_runstatus.Name = "de_runstatus";
  731. //
  732. // de_currentcentername
  733. //
  734. this.de_currentcentername.Caption = "部门名称";
  735. this.de_currentcentername.ColumnEdit = this.DeviceItemSearchLookUpEdit;
  736. this.de_currentcentername.FieldName = "DE_CURRENTCENTERNAME";
  737. this.de_currentcentername.Name = "de_currentcentername";
  738. this.de_currentcentername.Visible = true;
  739. this.de_currentcentername.VisibleIndex = 5;
  740. //
  741. // DeviceItemSearchLookUpEdit
  742. //
  743. this.DeviceItemSearchLookUpEdit.AutoHeight = false;
  744. this.DeviceItemSearchLookUpEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  745. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  746. this.DeviceItemSearchLookUpEdit.Name = "DeviceItemSearchLookUpEdit";
  747. this.DeviceItemSearchLookUpEdit.NullText = "";
  748. this.DeviceItemSearchLookUpEdit.View = this.gridView1;
  749. //
  750. // gridView1
  751. //
  752. this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
  753. this.gridView1.Name = "gridView1";
  754. this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
  755. this.gridView1.OptionsView.ShowGroupPanel = false;
  756. //
  757. // de_currentcentercode
  758. //
  759. this.de_currentcentercode.Caption = "部门编号";
  760. this.de_currentcentercode.FieldName = "DE_CURRENTCENTERCODE";
  761. this.de_currentcentercode.Name = "de_currentcentercode";
  762. this.de_currentcentercode.Visible = true;
  763. this.de_currentcentercode.VisibleIndex = 6;
  764. //
  765. // de_stepcode
  766. //
  767. this.de_stepcode.Caption = "工序编号";
  768. this.de_stepcode.FieldName = "DE_STEPCODE";
  769. this.de_stepcode.Name = "de_stepcode";
  770. this.de_stepcode.Visible = true;
  771. this.de_stepcode.VisibleIndex = 3;
  772. //
  773. // de_stepname
  774. //
  775. this.de_stepname.Caption = "工序名称";
  776. this.de_stepname.FieldName = "DE_STEPNAME";
  777. this.de_stepname.Name = "de_stepname";
  778. this.de_stepname.Visible = true;
  779. this.de_stepname.VisibleIndex = 7;
  780. //
  781. // de_sourcecode
  782. //
  783. this.de_sourcecode.Caption = "岗位资源";
  784. this.de_sourcecode.FieldName = "DE_SOURCECODE";
  785. this.de_sourcecode.Name = "de_sourcecode";
  786. this.de_sourcecode.Visible = true;
  787. this.de_sourcecode.VisibleIndex = 4;
  788. //
  789. // de_indate
  790. //
  791. this.de_indate.Caption = "录入日期";
  792. this.de_indate.DisplayFormat.FormatString = "yyyy-MM-dd";
  793. this.de_indate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
  794. this.de_indate.FieldName = "DE_INDATE";
  795. this.de_indate.FilterMode = DevExpress.XtraGrid.ColumnFilterMode.DisplayText;
  796. this.de_indate.Name = "de_indate";
  797. this.de_indate.OptionsColumn.AllowEdit = false;
  798. //
  799. // de_spec
  800. //
  801. this.de_spec.Caption = "设备规格";
  802. this.de_spec.FieldName = "DE_SPEC";
  803. this.de_spec.Name = "de_spec";
  804. this.de_spec.Visible = true;
  805. this.de_spec.VisibleIndex = 8;
  806. //
  807. // de_inman
  808. //
  809. this.de_inman.Caption = "维护人员";
  810. this.de_inman.FieldName = "DE_INMAN";
  811. this.de_inman.Name = "de_inman";
  812. this.de_inman.Visible = true;
  813. this.de_inman.VisibleIndex = 9;
  814. //
  815. // de_vendcode
  816. //
  817. this.de_vendcode.Caption = "供应商编号";
  818. this.de_vendcode.FieldName = "DE_VENDCODE";
  819. this.de_vendcode.Name = "de_vendcode";
  820. //
  821. // de_vendname
  822. //
  823. this.de_vendname.Caption = "供应商名称";
  824. this.de_vendname.FieldName = "DE_VENDNAME";
  825. this.de_vendname.Name = "de_vendname";
  826. //
  827. // de_address
  828. //
  829. this.de_address.Caption = "设备地点";
  830. this.de_address.FieldName = "DE_ADDRESS";
  831. this.de_address.Name = "de_address";
  832. this.de_address.Visible = true;
  833. this.de_address.VisibleIndex = 10;
  834. //
  835. // de_linecode
  836. //
  837. this.de_linecode.Caption = "线别";
  838. this.de_linecode.FieldName = "DE_LINECODE";
  839. this.de_linecode.Name = "de_linecode";
  840. this.de_linecode.Visible = true;
  841. this.de_linecode.VisibleIndex = 11;
  842. //
  843. // de_wccode
  844. //
  845. this.de_wccode.Caption = "工作中心";
  846. this.de_wccode.FieldName = "DE_WCCODE";
  847. this.de_wccode.Name = "de_wccode";
  848. this.de_wccode.Visible = true;
  849. this.de_wccode.VisibleIndex = 12;
  850. //
  851. // de_item1
  852. //
  853. this.de_item1.Caption = "参数1";
  854. this.de_item1.FieldName = "DE_ITEM1";
  855. this.de_item1.Name = "de_item1";
  856. this.de_item1.Visible = true;
  857. this.de_item1.VisibleIndex = 13;
  858. //
  859. // de_item2
  860. //
  861. this.de_item2.Caption = "参数2";
  862. this.de_item2.FieldName = "DE_ITEM2";
  863. this.de_item2.Name = "de_item2";
  864. this.de_item2.Visible = true;
  865. this.de_item2.VisibleIndex = 14;
  866. //
  867. // de_item3
  868. //
  869. this.de_item3.Caption = "参数3";
  870. this.de_item3.FieldName = "DE_ITEM3";
  871. this.de_item3.Name = "de_item3";
  872. this.de_item3.Visible = true;
  873. this.de_item3.VisibleIndex = 15;
  874. //
  875. // de_item4
  876. //
  877. this.de_item4.Caption = "参数4";
  878. this.de_item4.FieldName = "DE_ITEM4";
  879. this.de_item4.Name = "de_item4";
  880. this.de_item4.Visible = true;
  881. this.de_item4.VisibleIndex = 16;
  882. //
  883. // de_item5
  884. //
  885. this.de_item5.Caption = "参数5";
  886. this.de_item5.FieldName = "DE_ITEM5";
  887. this.de_item5.Name = "de_item5";
  888. this.de_item5.Visible = true;
  889. this.de_item5.VisibleIndex = 17;
  890. //
  891. // de_item6
  892. //
  893. this.de_item6.Caption = "参数6";
  894. this.de_item6.FieldName = "DE_ITEM6";
  895. this.de_item6.Name = "de_item6";
  896. this.de_item6.Visible = true;
  897. this.de_item6.VisibleIndex = 18;
  898. //
  899. // de_item7
  900. //
  901. this.de_item7.Caption = "参数7";
  902. this.de_item7.FieldName = "DE_ITEM7";
  903. this.de_item7.Name = "de_item7";
  904. this.de_item7.Visible = true;
  905. this.de_item7.VisibleIndex = 19;
  906. //
  907. // de_item8
  908. //
  909. this.de_item8.Caption = "参数8";
  910. this.de_item8.FieldName = "DE_ITEM8";
  911. this.de_item8.Name = "de_item8";
  912. this.de_item8.Visible = true;
  913. this.de_item8.VisibleIndex = 20;
  914. //
  915. // de_item9
  916. //
  917. this.de_item9.Caption = "参数9";
  918. this.de_item9.FieldName = "DE_ITEM9";
  919. this.de_item9.Name = "de_item9";
  920. this.de_item9.Visible = true;
  921. this.de_item9.VisibleIndex = 21;
  922. //
  923. // de_item10
  924. //
  925. this.de_item10.Caption = "参数10";
  926. this.de_item10.FieldName = "DE_ITEM10";
  927. this.de_item10.Name = "de_item10";
  928. this.de_item10.Visible = true;
  929. this.de_item10.VisibleIndex = 22;
  930. //
  931. // DataItemRepositoryItemComboBox1
  932. //
  933. this.DataItemRepositoryItemComboBox1.AutoHeight = false;
  934. this.DataItemRepositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  935. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  936. this.DataItemRepositoryItemComboBox1.Name = "DataItemRepositoryItemComboBox1";
  937. //
  938. // PageCommandSet
  939. //
  940. this.PageCommandSet.Controls.Add(this.ButtonDeleteCommand);
  941. this.PageCommandSet.Controls.Add(this.Brand_label);
  942. this.PageCommandSet.Controls.Add(this.Brand);
  943. this.PageCommandSet.Controls.Add(this.ButtonNewCommand);
  944. this.PageCommandSet.Controls.Add(this.ButtonSaveCommand);
  945. this.PageCommandSet.Controls.Add(this.GridCommandSetting);
  946. this.PageCommandSet.Name = "PageCommandSet";
  947. this.PageCommandSet.PageVisible = false;
  948. this.PageCommandSet.Size = new System.Drawing.Size(1034, 578);
  949. this.PageCommandSet.Text = "设备指令设置";
  950. this.PageCommandSet.VisibleChanged += new System.EventHandler(this.PageCommandSet_VisibleChanged);
  951. //
  952. // ButtonDeleteCommand
  953. //
  954. this.ButtonDeleteCommand.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  955. this.ButtonDeleteCommand.Grid = null;
  956. this.ButtonDeleteCommand.Location = new System.Drawing.Point(952, 5);
  957. this.ButtonDeleteCommand.Name = "ButtonDeleteCommand";
  958. this.ButtonDeleteCommand.Size = new System.Drawing.Size(64, 23);
  959. this.ButtonDeleteCommand.TabIndex = 6;
  960. this.ButtonDeleteCommand.Text = "删除";
  961. //
  962. // Brand_label
  963. //
  964. this.Brand_label.Appearance.Font = new System.Drawing.Font("微软雅黑", 12F);
  965. this.Brand_label.Location = new System.Drawing.Point(8, 5);
  966. this.Brand_label.Name = "Brand_label";
  967. this.Brand_label.Size = new System.Drawing.Size(32, 21);
  968. this.Brand_label.TabIndex = 5;
  969. this.Brand_label.Text = "品牌";
  970. //
  971. // Brand
  972. //
  973. this.Brand.Location = new System.Drawing.Point(47, 4);
  974. this.Brand.MenuManager = this.RibbonNav;
  975. this.Brand.Name = "Brand";
  976. this.Brand.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  977. this.Brand.Properties.Appearance.Options.UseFont = true;
  978. this.Brand.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  979. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  980. this.Brand.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  981. this.Brand.Size = new System.Drawing.Size(100, 24);
  982. this.Brand.TabIndex = 4;
  983. this.Brand.SelectedIndexChanged += new System.EventHandler(this.Brand_SelectedIndexChanged);
  984. //
  985. // ButtonNewCommand
  986. //
  987. this.ButtonNewCommand.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  988. this.ButtonNewCommand.Grid = null;
  989. this.ButtonNewCommand.Location = new System.Drawing.Point(812, 5);
  990. this.ButtonNewCommand.Name = "ButtonNewCommand";
  991. this.ButtonNewCommand.Size = new System.Drawing.Size(64, 23);
  992. this.ButtonNewCommand.TabIndex = 3;
  993. this.ButtonNewCommand.Text = "新增";
  994. //
  995. // ButtonSaveCommand
  996. //
  997. this.ButtonSaveCommand.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  998. this.ButtonSaveCommand.Grid = null;
  999. this.ButtonSaveCommand.HandlerOtherFirst = true;
  1000. this.ButtonSaveCommand.Location = new System.Drawing.Point(882, 5);
  1001. this.ButtonSaveCommand.Name = "ButtonSaveCommand";
  1002. this.ButtonSaveCommand.Size = new System.Drawing.Size(64, 23);
  1003. this.ButtonSaveCommand.TabIndex = 2;
  1004. this.ButtonSaveCommand.Text = "保存";
  1005. this.ButtonSaveCommand.Click += new System.EventHandler(this.ButtonSaveCommand_Click);
  1006. //
  1007. // GridCommandSetting
  1008. //
  1009. this.GridCommandSetting.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1010. | System.Windows.Forms.AnchorStyles.Left)
  1011. | System.Windows.Forms.AnchorStyles.Right)));
  1012. this.GridCommandSetting.Condition = null;
  1013. this.GridCommandSetting.GetDataSQL = null;
  1014. this.GridCommandSetting.ID = null;
  1015. this.GridCommandSetting.InsertSQL = null;
  1016. this.GridCommandSetting.Location = new System.Drawing.Point(0, 31);
  1017. this.GridCommandSetting.MainView = this.GridViewCommandSet;
  1018. this.GridCommandSetting.MenuManager = this.RibbonNav;
  1019. this.GridCommandSetting.Name = "GridCommandSetting";
  1020. this.GridCommandSetting.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  1021. this.CheckEditCommandSet,
  1022. this.CommandSetRepositoryItemComboBox1,
  1023. this.repositoryItemDateEdit1});
  1024. this.GridCommandSetting.RowCount = 0;
  1025. this.GridCommandSetting.Size = new System.Drawing.Size(1034, 547);
  1026. this.GridCommandSetting.TabIndex = 1;
  1027. this.GridCommandSetting.TableName = null;
  1028. this.GridCommandSetting.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  1029. this.GridViewCommandSet});
  1030. //
  1031. // GridViewCommandSet
  1032. //
  1033. this.GridViewCommandSet.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  1034. this.CommandSetCheckedColumn,
  1035. this.dc_id,
  1036. this.dc_code,
  1037. this.dc_name,
  1038. this.dc_type,
  1039. this.dc_typename,
  1040. this.dc_dataindex,
  1041. this.dc_value,
  1042. this.dc_sendcoding,
  1043. this.dc_receivecoding,
  1044. this.dc_man,
  1045. this.dc_date,
  1046. this.db_name});
  1047. this.GridViewCommandSet.GridControl = this.GridCommandSetting;
  1048. this.GridViewCommandSet.IndicatorWidth = 30;
  1049. this.GridViewCommandSet.Name = "GridViewCommandSet";
  1050. this.GridViewCommandSet.OptionsView.ShowGroupPanel = false;
  1051. //
  1052. // CommandSetCheckedColumn
  1053. //
  1054. this.CommandSetCheckedColumn.Caption = " ";
  1055. this.CommandSetCheckedColumn.ColumnEdit = this.CheckEditCommandSet;
  1056. this.CommandSetCheckedColumn.FieldName = "CHECKEDCOLUMN";
  1057. this.CommandSetCheckedColumn.Name = "CommandSetCheckedColumn";
  1058. this.CommandSetCheckedColumn.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
  1059. this.CommandSetCheckedColumn.Tag = "0";
  1060. this.CommandSetCheckedColumn.Visible = true;
  1061. this.CommandSetCheckedColumn.VisibleIndex = 0;
  1062. this.CommandSetCheckedColumn.Width = 39;
  1063. //
  1064. // CheckEditCommandSet
  1065. //
  1066. this.CheckEditCommandSet.AutoHeight = false;
  1067. this.CheckEditCommandSet.Name = "CheckEditCommandSet";
  1068. this.CheckEditCommandSet.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
  1069. //
  1070. // dc_id
  1071. //
  1072. this.dc_id.FieldName = "DC_ID";
  1073. this.dc_id.Name = "dc_id";
  1074. //
  1075. // dc_code
  1076. //
  1077. this.dc_code.Caption = "指令编号";
  1078. this.dc_code.FieldName = "DC_CODE";
  1079. this.dc_code.Name = "dc_code";
  1080. this.dc_code.Visible = true;
  1081. this.dc_code.VisibleIndex = 1;
  1082. this.dc_code.Width = 55;
  1083. //
  1084. // dc_name
  1085. //
  1086. this.dc_name.Caption = "指令名称";
  1087. this.dc_name.FieldName = "DC_NAME";
  1088. this.dc_name.Name = "dc_name";
  1089. this.dc_name.Visible = true;
  1090. this.dc_name.VisibleIndex = 2;
  1091. this.dc_name.Width = 61;
  1092. //
  1093. // dc_type
  1094. //
  1095. this.dc_type.Caption = "指令值";
  1096. this.dc_type.FieldName = "DC_TYPE";
  1097. this.dc_type.Name = "dc_type";
  1098. this.dc_type.Width = 65;
  1099. //
  1100. // dc_typename
  1101. //
  1102. this.dc_typename.Caption = "指令类型";
  1103. this.dc_typename.ColumnEdit = this.DataItemRepositoryItemComboBox1;
  1104. this.dc_typename.FieldName = "DC_TYPENAME";
  1105. this.dc_typename.Name = "dc_typename";
  1106. this.dc_typename.Visible = true;
  1107. this.dc_typename.VisibleIndex = 3;
  1108. this.dc_typename.Width = 76;
  1109. //
  1110. // dc_dataindex
  1111. //
  1112. this.dc_dataindex.Caption = "数据索引";
  1113. this.dc_dataindex.FieldName = "DC_DATAINDEX";
  1114. this.dc_dataindex.Name = "dc_dataindex";
  1115. this.dc_dataindex.Visible = true;
  1116. this.dc_dataindex.VisibleIndex = 4;
  1117. this.dc_dataindex.Width = 62;
  1118. //
  1119. // dc_value
  1120. //
  1121. this.dc_value.Caption = "发送指令";
  1122. this.dc_value.FieldName = "DC_VALUE";
  1123. this.dc_value.Name = "dc_value";
  1124. this.dc_value.Visible = true;
  1125. this.dc_value.VisibleIndex = 5;
  1126. this.dc_value.Width = 128;
  1127. //
  1128. // dc_sendcoding
  1129. //
  1130. this.dc_sendcoding.Caption = "发送编码";
  1131. this.dc_sendcoding.ColumnEdit = this.CommandSetRepositoryItemComboBox1;
  1132. this.dc_sendcoding.FieldName = "DC_SENDCODING";
  1133. this.dc_sendcoding.Name = "dc_sendcoding";
  1134. this.dc_sendcoding.Width = 114;
  1135. //
  1136. // CommandSetRepositoryItemComboBox1
  1137. //
  1138. this.CommandSetRepositoryItemComboBox1.AutoHeight = false;
  1139. this.CommandSetRepositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1140. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1141. this.CommandSetRepositoryItemComboBox1.Name = "CommandSetRepositoryItemComboBox1";
  1142. //
  1143. // dc_receivecoding
  1144. //
  1145. this.dc_receivecoding.Caption = "接收编码";
  1146. this.dc_receivecoding.ColumnEdit = this.CommandSetRepositoryItemComboBox1;
  1147. this.dc_receivecoding.FieldName = "DC_RECEIVECODING";
  1148. this.dc_receivecoding.Name = "dc_receivecoding";
  1149. this.dc_receivecoding.Width = 115;
  1150. //
  1151. // dc_man
  1152. //
  1153. this.dc_man.Caption = "维护人员";
  1154. this.dc_man.FieldName = "DC_MAN";
  1155. this.dc_man.Name = "dc_man";
  1156. this.dc_man.OptionsColumn.AllowEdit = false;
  1157. this.dc_man.Visible = true;
  1158. this.dc_man.VisibleIndex = 7;
  1159. this.dc_man.Width = 126;
  1160. //
  1161. // dc_date
  1162. //
  1163. this.dc_date.Caption = "维护时间";
  1164. this.dc_date.ColumnEdit = this.repositoryItemDateEdit1;
  1165. this.dc_date.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
  1166. this.dc_date.FieldName = "DC_DATE";
  1167. this.dc_date.Name = "dc_date";
  1168. this.dc_date.OptionsColumn.AllowEdit = false;
  1169. this.dc_date.Visible = true;
  1170. this.dc_date.VisibleIndex = 8;
  1171. this.dc_date.Width = 107;
  1172. //
  1173. // repositoryItemDateEdit1
  1174. //
  1175. this.repositoryItemDateEdit1.AutoHeight = false;
  1176. this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1177. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1178. this.repositoryItemDateEdit1.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1179. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1180. this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
  1181. //
  1182. // db_name
  1183. //
  1184. this.db_name.Caption = "品牌";
  1185. this.db_name.FieldName = "DB_NAME";
  1186. this.db_name.Name = "db_name";
  1187. this.db_name.Visible = true;
  1188. this.db_name.VisibleIndex = 6;
  1189. this.db_name.Width = 47;
  1190. //
  1191. // PageDeviceNetSetting
  1192. //
  1193. this.PageDeviceNetSetting.Controls.Add(this.ButtonDeleteNetConfig);
  1194. this.PageDeviceNetSetting.Controls.Add(this.ButtonAddNetConfig);
  1195. this.PageDeviceNetSetting.Controls.Add(this.ButtonSaveNetConfig);
  1196. this.PageDeviceNetSetting.Controls.Add(this.GridDeviceNetSetting);
  1197. this.PageDeviceNetSetting.Name = "PageDeviceNetSetting";
  1198. this.PageDeviceNetSetting.PageVisible = false;
  1199. this.PageDeviceNetSetting.Size = new System.Drawing.Size(1034, 578);
  1200. this.PageDeviceNetSetting.Text = "设备网络配置";
  1201. //
  1202. // ButtonDeleteNetConfig
  1203. //
  1204. this.ButtonDeleteNetConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1205. this.ButtonDeleteNetConfig.Grid = null;
  1206. this.ButtonDeleteNetConfig.Location = new System.Drawing.Point(949, 7);
  1207. this.ButtonDeleteNetConfig.Name = "ButtonDeleteNetConfig";
  1208. this.ButtonDeleteNetConfig.Size = new System.Drawing.Size(64, 23);
  1209. this.ButtonDeleteNetConfig.TabIndex = 12;
  1210. this.ButtonDeleteNetConfig.Text = "删除";
  1211. //
  1212. // ButtonAddNetConfig
  1213. //
  1214. this.ButtonAddNetConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1215. this.ButtonAddNetConfig.Grid = null;
  1216. this.ButtonAddNetConfig.Location = new System.Drawing.Point(809, 7);
  1217. this.ButtonAddNetConfig.Name = "ButtonAddNetConfig";
  1218. this.ButtonAddNetConfig.Size = new System.Drawing.Size(64, 23);
  1219. this.ButtonAddNetConfig.TabIndex = 11;
  1220. this.ButtonAddNetConfig.Text = "新增";
  1221. //
  1222. // ButtonSaveNetConfig
  1223. //
  1224. this.ButtonSaveNetConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1225. this.ButtonSaveNetConfig.Grid = null;
  1226. this.ButtonSaveNetConfig.HandlerOtherFirst = false;
  1227. this.ButtonSaveNetConfig.Location = new System.Drawing.Point(879, 7);
  1228. this.ButtonSaveNetConfig.Name = "ButtonSaveNetConfig";
  1229. this.ButtonSaveNetConfig.Size = new System.Drawing.Size(64, 23);
  1230. this.ButtonSaveNetConfig.TabIndex = 10;
  1231. this.ButtonSaveNetConfig.Text = "保存";
  1232. //
  1233. // GridDeviceNetSetting
  1234. //
  1235. this.GridDeviceNetSetting.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1236. | System.Windows.Forms.AnchorStyles.Left)
  1237. | System.Windows.Forms.AnchorStyles.Right)));
  1238. this.GridDeviceNetSetting.Condition = null;
  1239. this.GridDeviceNetSetting.GetDataSQL = null;
  1240. this.GridDeviceNetSetting.ID = null;
  1241. this.GridDeviceNetSetting.InsertSQL = null;
  1242. this.GridDeviceNetSetting.Location = new System.Drawing.Point(0, 34);
  1243. this.GridDeviceNetSetting.MainView = this.GridViewDeviceNetSetting;
  1244. this.GridDeviceNetSetting.MenuManager = this.RibbonNav;
  1245. this.GridDeviceNetSetting.Name = "GridDeviceNetSetting";
  1246. this.GridDeviceNetSetting.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  1247. this.dpc_enableCheckEdit});
  1248. this.GridDeviceNetSetting.RowCount = 0;
  1249. this.GridDeviceNetSetting.Size = new System.Drawing.Size(1031, 544);
  1250. this.GridDeviceNetSetting.TabIndex = 0;
  1251. this.GridDeviceNetSetting.TableName = null;
  1252. this.GridDeviceNetSetting.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  1253. this.GridViewDeviceNetSetting});
  1254. //
  1255. // GridViewDeviceNetSetting
  1256. //
  1257. this.GridViewDeviceNetSetting.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  1258. this.NetSettingCheckedColumn,
  1259. this.dnc_id,
  1260. this.dnc_decode,
  1261. this.de_name1,
  1262. this.dnc_getway,
  1263. this.dnc_upperip,
  1264. this.dnc_port,
  1265. this.dnc_mac,
  1266. this.dnc_ip,
  1267. this.dnc_type});
  1268. this.GridViewDeviceNetSetting.GridControl = this.GridDeviceNetSetting;
  1269. this.GridViewDeviceNetSetting.IndicatorWidth = 30;
  1270. this.GridViewDeviceNetSetting.Name = "GridViewDeviceNetSetting";
  1271. this.GridViewDeviceNetSetting.OptionsView.ShowGroupPanel = false;
  1272. //
  1273. // NetSettingCheckedColumn
  1274. //
  1275. this.NetSettingCheckedColumn.Caption = " ";
  1276. this.NetSettingCheckedColumn.ColumnEdit = this.dpc_enableCheckEdit;
  1277. this.NetSettingCheckedColumn.FieldName = "CHECKEDCOLUMN";
  1278. this.NetSettingCheckedColumn.Name = "NetSettingCheckedColumn";
  1279. this.NetSettingCheckedColumn.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
  1280. this.NetSettingCheckedColumn.OptionsFilter.AllowFilter = false;
  1281. this.NetSettingCheckedColumn.Tag = "0";
  1282. this.NetSettingCheckedColumn.Visible = true;
  1283. this.NetSettingCheckedColumn.VisibleIndex = 0;
  1284. //
  1285. // dnc_id
  1286. //
  1287. this.dnc_id.Caption = "ID";
  1288. this.dnc_id.FieldName = "DNC_ID";
  1289. this.dnc_id.Name = "dnc_id";
  1290. //
  1291. // dnc_decode
  1292. //
  1293. this.dnc_decode.Caption = "设备编号";
  1294. this.dnc_decode.FieldName = "DNC_DECODE";
  1295. this.dnc_decode.Name = "dnc_decode";
  1296. this.dnc_decode.Visible = true;
  1297. this.dnc_decode.VisibleIndex = 1;
  1298. //
  1299. // de_name1
  1300. //
  1301. this.de_name1.Caption = "设备名称";
  1302. this.de_name1.FieldName = "DE_NAME";
  1303. this.de_name1.Name = "de_name1";
  1304. this.de_name1.Visible = true;
  1305. this.de_name1.VisibleIndex = 2;
  1306. //
  1307. // dnc_getway
  1308. //
  1309. this.dnc_getway.Caption = "网关";
  1310. this.dnc_getway.FieldName = "DNC_GATEWAY";
  1311. this.dnc_getway.Name = "dnc_getway";
  1312. //
  1313. // dnc_upperip
  1314. //
  1315. this.dnc_upperip.Caption = "上级IP";
  1316. this.dnc_upperip.FieldName = "DNC_UPPERIP";
  1317. this.dnc_upperip.Name = "dnc_upperip";
  1318. //
  1319. // dnc_port
  1320. //
  1321. this.dnc_port.Caption = "端口";
  1322. this.dnc_port.FieldName = "DNC_PORT";
  1323. this.dnc_port.Name = "dnc_port";
  1324. this.dnc_port.Visible = true;
  1325. this.dnc_port.VisibleIndex = 3;
  1326. //
  1327. // dnc_mac
  1328. //
  1329. this.dnc_mac.Caption = "MAC";
  1330. this.dnc_mac.FieldName = "DNC_MAC";
  1331. this.dnc_mac.Name = "dnc_mac";
  1332. this.dnc_mac.Visible = true;
  1333. this.dnc_mac.VisibleIndex = 4;
  1334. //
  1335. // dnc_ip
  1336. //
  1337. this.dnc_ip.Caption = "IP";
  1338. this.dnc_ip.FieldName = "DNC_IP";
  1339. this.dnc_ip.Name = "dnc_ip";
  1340. this.dnc_ip.Visible = true;
  1341. this.dnc_ip.VisibleIndex = 5;
  1342. //
  1343. // dnc_type
  1344. //
  1345. this.dnc_type.Caption = "类型";
  1346. this.dnc_type.FieldName = "DNC_TYPE";
  1347. this.dnc_type.Name = "dnc_type";
  1348. //
  1349. // PagePollingSetting
  1350. //
  1351. this.PagePollingSetting.Controls.Add(this.ButtonDeleteCommandSet);
  1352. this.PagePollingSetting.Controls.Add(this.ButtonNewCommandSet);
  1353. this.PagePollingSetting.Controls.Add(this.ButtonSaveCommandSet);
  1354. this.PagePollingSetting.Controls.Add(this.ButtonPausePolling);
  1355. this.PagePollingSetting.Controls.Add(this.ButtonStartPolling);
  1356. this.PagePollingSetting.Controls.Add(this.GridPollingSetting);
  1357. this.PagePollingSetting.Name = "PagePollingSetting";
  1358. this.PagePollingSetting.PageVisible = false;
  1359. this.PagePollingSetting.Size = new System.Drawing.Size(1034, 578);
  1360. this.PagePollingSetting.Text = "设备轮询配置";
  1361. this.PagePollingSetting.VisibleChanged += new System.EventHandler(this.PagePollingSetting_VisibleChanged);
  1362. //
  1363. // ButtonDeleteCommandSet
  1364. //
  1365. this.ButtonDeleteCommandSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1366. this.ButtonDeleteCommandSet.Grid = null;
  1367. this.ButtonDeleteCommandSet.Location = new System.Drawing.Point(957, 6);
  1368. this.ButtonDeleteCommandSet.Name = "ButtonDeleteCommandSet";
  1369. this.ButtonDeleteCommandSet.Size = new System.Drawing.Size(64, 23);
  1370. this.ButtonDeleteCommandSet.TabIndex = 9;
  1371. this.ButtonDeleteCommandSet.Text = "删除";
  1372. //
  1373. // ButtonNewCommandSet
  1374. //
  1375. this.ButtonNewCommandSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1376. this.ButtonNewCommandSet.Grid = null;
  1377. this.ButtonNewCommandSet.Location = new System.Drawing.Point(817, 6);
  1378. this.ButtonNewCommandSet.Name = "ButtonNewCommandSet";
  1379. this.ButtonNewCommandSet.Size = new System.Drawing.Size(64, 23);
  1380. this.ButtonNewCommandSet.TabIndex = 8;
  1381. this.ButtonNewCommandSet.Text = "新增";
  1382. //
  1383. // ButtonSaveCommandSet
  1384. //
  1385. this.ButtonSaveCommandSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1386. this.ButtonSaveCommandSet.Grid = null;
  1387. this.ButtonSaveCommandSet.HandlerOtherFirst = true;
  1388. this.ButtonSaveCommandSet.Location = new System.Drawing.Point(887, 6);
  1389. this.ButtonSaveCommandSet.Name = "ButtonSaveCommandSet";
  1390. this.ButtonSaveCommandSet.Size = new System.Drawing.Size(64, 23);
  1391. this.ButtonSaveCommandSet.TabIndex = 7;
  1392. this.ButtonSaveCommandSet.Text = "保存";
  1393. this.ButtonSaveCommandSet.Click += new System.EventHandler(this.ButtonSaveCommandSet_Click);
  1394. //
  1395. // ButtonPausePolling
  1396. //
  1397. this.ButtonPausePolling.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1398. this.ButtonPausePolling.Location = new System.Drawing.Point(736, 6);
  1399. this.ButtonPausePolling.Name = "ButtonPausePolling";
  1400. this.ButtonPausePolling.Size = new System.Drawing.Size(75, 23);
  1401. this.ButtonPausePolling.TabIndex = 2;
  1402. this.ButtonPausePolling.Text = "暂停轮询";
  1403. this.ButtonPausePolling.Click += new System.EventHandler(this.ButtonPausePolling_Click);
  1404. //
  1405. // ButtonStartPolling
  1406. //
  1407. this.ButtonStartPolling.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1408. this.ButtonStartPolling.Location = new System.Drawing.Point(655, 6);
  1409. this.ButtonStartPolling.Name = "ButtonStartPolling";
  1410. this.ButtonStartPolling.Size = new System.Drawing.Size(75, 23);
  1411. this.ButtonStartPolling.TabIndex = 1;
  1412. this.ButtonStartPolling.Text = "开启轮询";
  1413. this.ButtonStartPolling.Click += new System.EventHandler(this.ButtonStartPolling_Click);
  1414. //
  1415. // GridPollingSetting
  1416. //
  1417. this.GridPollingSetting.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1418. | System.Windows.Forms.AnchorStyles.Left)
  1419. | System.Windows.Forms.AnchorStyles.Right)));
  1420. this.GridPollingSetting.Condition = null;
  1421. this.GridPollingSetting.GetDataSQL = null;
  1422. this.GridPollingSetting.ID = null;
  1423. this.GridPollingSetting.InsertSQL = null;
  1424. this.GridPollingSetting.Location = new System.Drawing.Point(0, 34);
  1425. this.GridPollingSetting.MainView = this.GridViewPollSetting;
  1426. this.GridPollingSetting.MenuManager = this.RibbonNav;
  1427. this.GridPollingSetting.Name = "GridPollingSetting";
  1428. this.GridPollingSetting.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  1429. this.dpc_enableCheckEdit,
  1430. this.PollingSetItemLookUpEdit,
  1431. this.PollSettingItemSearchLookUpEdit,
  1432. this.PollSettingDeviceSearchLookUpEdit});
  1433. this.GridPollingSetting.RowCount = 0;
  1434. this.GridPollingSetting.Size = new System.Drawing.Size(1034, 544);
  1435. this.GridPollingSetting.TabIndex = 0;
  1436. this.GridPollingSetting.TableName = null;
  1437. this.GridPollingSetting.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  1438. this.GridViewPollSetting});
  1439. //
  1440. // GridViewPollSetting
  1441. //
  1442. this.GridViewPollSetting.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  1443. this.PollSettingCheckedColumn,
  1444. this.dpc_id,
  1445. this.dpc_decode,
  1446. this.dpc_dename,
  1447. this.dpc_interval,
  1448. this.dpc_dccode,
  1449. this.dpc_function,
  1450. this.dpc_enable,
  1451. this.em_name1,
  1452. this.dpc_status,
  1453. this.dpc_man,
  1454. this.dpc_remark,
  1455. this.POLLSETTINGSTATUSCOLUMN});
  1456. this.GridViewPollSetting.GridControl = this.GridPollingSetting;
  1457. this.GridViewPollSetting.IndicatorWidth = 30;
  1458. this.GridViewPollSetting.Name = "GridViewPollSetting";
  1459. this.GridViewPollSetting.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
  1460. this.GridViewPollSetting.OptionsView.ShowGroupPanel = false;
  1461. this.GridViewPollSetting.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.GridViewPollSetting_CellValueChanged);
  1462. //
  1463. // PollSettingCheckedColumn
  1464. //
  1465. this.PollSettingCheckedColumn.Caption = " ";
  1466. this.PollSettingCheckedColumn.ColumnEdit = this.dpc_enableCheckEdit;
  1467. this.PollSettingCheckedColumn.FieldName = "CHECKEDCOLUMN";
  1468. this.PollSettingCheckedColumn.Name = "PollSettingCheckedColumn";
  1469. this.PollSettingCheckedColumn.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
  1470. this.PollSettingCheckedColumn.OptionsFilter.AllowFilter = false;
  1471. this.PollSettingCheckedColumn.Tag = "0";
  1472. this.PollSettingCheckedColumn.Visible = true;
  1473. this.PollSettingCheckedColumn.VisibleIndex = 0;
  1474. //
  1475. // dpc_id
  1476. //
  1477. this.dpc_id.Caption = "ID";
  1478. this.dpc_id.FieldName = "DPC_ID";
  1479. this.dpc_id.Name = "dpc_id";
  1480. //
  1481. // dpc_decode
  1482. //
  1483. this.dpc_decode.Caption = "设备编号";
  1484. this.dpc_decode.ColumnEdit = this.PollSettingDeviceSearchLookUpEdit;
  1485. this.dpc_decode.FieldName = "DPC_DECODE";
  1486. this.dpc_decode.Name = "dpc_decode";
  1487. this.dpc_decode.Visible = true;
  1488. this.dpc_decode.VisibleIndex = 1;
  1489. this.dpc_decode.Width = 90;
  1490. //
  1491. // PollSettingDeviceSearchLookUpEdit
  1492. //
  1493. this.PollSettingDeviceSearchLookUpEdit.AutoHeight = false;
  1494. this.PollSettingDeviceSearchLookUpEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1495. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1496. this.PollSettingDeviceSearchLookUpEdit.Name = "PollSettingDeviceSearchLookUpEdit";
  1497. this.PollSettingDeviceSearchLookUpEdit.NullText = "";
  1498. this.PollSettingDeviceSearchLookUpEdit.View = this.repositoryItemSearchLookUpEdit1View;
  1499. //
  1500. // repositoryItemSearchLookUpEdit1View
  1501. //
  1502. this.repositoryItemSearchLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
  1503. this.repositoryItemSearchLookUpEdit1View.Name = "repositoryItemSearchLookUpEdit1View";
  1504. this.repositoryItemSearchLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
  1505. this.repositoryItemSearchLookUpEdit1View.OptionsView.ShowGroupPanel = false;
  1506. //
  1507. // dpc_dename
  1508. //
  1509. this.dpc_dename.Caption = "设备名称";
  1510. this.dpc_dename.FieldName = "DPC_DENAME";
  1511. this.dpc_dename.Name = "dpc_dename";
  1512. this.dpc_dename.Visible = true;
  1513. this.dpc_dename.VisibleIndex = 2;
  1514. //
  1515. // dpc_interval
  1516. //
  1517. this.dpc_interval.Caption = "轮询间隔(秒)";
  1518. this.dpc_interval.FieldName = "DPC_INTERVAL";
  1519. this.dpc_interval.Name = "dpc_interval";
  1520. this.dpc_interval.Visible = true;
  1521. this.dpc_interval.VisibleIndex = 3;
  1522. this.dpc_interval.Width = 90;
  1523. //
  1524. // dpc_dccode
  1525. //
  1526. this.dpc_dccode.Caption = "指令编号";
  1527. this.dpc_dccode.ColumnEdit = this.PollSettingItemSearchLookUpEdit;
  1528. this.dpc_dccode.FieldName = "DPC_DCCODE";
  1529. this.dpc_dccode.Name = "dpc_dccode";
  1530. this.dpc_dccode.Visible = true;
  1531. this.dpc_dccode.VisibleIndex = 4;
  1532. this.dpc_dccode.Width = 90;
  1533. //
  1534. // PollSettingItemSearchLookUpEdit
  1535. //
  1536. this.PollSettingItemSearchLookUpEdit.AutoHeight = false;
  1537. this.PollSettingItemSearchLookUpEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1538. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1539. this.PollSettingItemSearchLookUpEdit.Name = "PollSettingItemSearchLookUpEdit";
  1540. this.PollSettingItemSearchLookUpEdit.NullText = "";
  1541. this.PollSettingItemSearchLookUpEdit.View = this.PollSettingItemSearchLookUpEditView;
  1542. //
  1543. // PollSettingItemSearchLookUpEditView
  1544. //
  1545. this.PollSettingItemSearchLookUpEditView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  1546. this.gridColumn4,
  1547. this.gridColumn2,
  1548. this.gridColumn5});
  1549. this.PollSettingItemSearchLookUpEditView.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
  1550. this.PollSettingItemSearchLookUpEditView.Name = "PollSettingItemSearchLookUpEditView";
  1551. this.PollSettingItemSearchLookUpEditView.OptionsSelection.EnableAppearanceFocusedCell = false;
  1552. this.PollSettingItemSearchLookUpEditView.OptionsView.ShowGroupPanel = false;
  1553. //
  1554. // gridColumn4
  1555. //
  1556. this.gridColumn4.Caption = "指令编号";
  1557. this.gridColumn4.FieldName = "DC_CODE";
  1558. this.gridColumn4.Name = "gridColumn4";
  1559. this.gridColumn4.Visible = true;
  1560. this.gridColumn4.VisibleIndex = 0;
  1561. //
  1562. // gridColumn2
  1563. //
  1564. this.gridColumn2.Caption = "指令名称";
  1565. this.gridColumn2.FieldName = "DC_NAME";
  1566. this.gridColumn2.Name = "gridColumn2";
  1567. this.gridColumn2.Visible = true;
  1568. this.gridColumn2.VisibleIndex = 1;
  1569. //
  1570. // gridColumn5
  1571. //
  1572. this.gridColumn5.Caption = "备注";
  1573. this.gridColumn5.FieldName = "DC_REMARK";
  1574. this.gridColumn5.Name = "gridColumn5";
  1575. this.gridColumn5.Visible = true;
  1576. this.gridColumn5.VisibleIndex = 2;
  1577. //
  1578. // dpc_function
  1579. //
  1580. this.dpc_function.Caption = "解析函数";
  1581. this.dpc_function.FieldName = "DPC_FUNCTION";
  1582. this.dpc_function.Name = "dpc_function";
  1583. this.dpc_function.Width = 90;
  1584. //
  1585. // dpc_enable
  1586. //
  1587. this.dpc_enable.Caption = "是否启用";
  1588. this.dpc_enable.ColumnEdit = this.dpc_enableCheckEdit;
  1589. this.dpc_enable.FieldName = "DPC_ENABLE";
  1590. this.dpc_enable.Name = "dpc_enable";
  1591. this.dpc_enable.Visible = true;
  1592. this.dpc_enable.VisibleIndex = 5;
  1593. this.dpc_enable.Width = 90;
  1594. //
  1595. // em_name1
  1596. //
  1597. this.em_name1.Caption = "维护人";
  1598. this.em_name1.FieldName = "EM_NAME";
  1599. this.em_name1.Name = "em_name1";
  1600. this.em_name1.OptionsColumn.AllowEdit = false;
  1601. this.em_name1.Visible = true;
  1602. this.em_name1.VisibleIndex = 8;
  1603. //
  1604. // dpc_status
  1605. //
  1606. this.dpc_status.Caption = "状态";
  1607. this.dpc_status.FieldName = "DPC_STATUS";
  1608. this.dpc_status.Name = "dpc_status";
  1609. this.dpc_status.OptionsColumn.AllowEdit = false;
  1610. this.dpc_status.Width = 90;
  1611. //
  1612. // dpc_man
  1613. //
  1614. this.dpc_man.Caption = "维护人";
  1615. this.dpc_man.FieldName = "DPC_MAN";
  1616. this.dpc_man.Name = "dpc_man";
  1617. this.dpc_man.OptionsColumn.AllowEdit = false;
  1618. //
  1619. // dpc_remark
  1620. //
  1621. this.dpc_remark.Caption = "备注";
  1622. this.dpc_remark.FieldName = "DPC_REMARK";
  1623. this.dpc_remark.Name = "dpc_remark";
  1624. this.dpc_remark.Visible = true;
  1625. this.dpc_remark.VisibleIndex = 6;
  1626. this.dpc_remark.Width = 87;
  1627. //
  1628. // POLLSETTINGSTATUSCOLUMN
  1629. //
  1630. this.POLLSETTINGSTATUSCOLUMN.Caption = "运行状态";
  1631. this.POLLSETTINGSTATUSCOLUMN.FieldName = "POLLSETTINGSTATUSCOLUMN";
  1632. this.POLLSETTINGSTATUSCOLUMN.Name = "POLLSETTINGSTATUSCOLUMN";
  1633. this.POLLSETTINGSTATUSCOLUMN.OptionsColumn.ReadOnly = true;
  1634. this.POLLSETTINGSTATUSCOLUMN.Visible = true;
  1635. this.POLLSETTINGSTATUSCOLUMN.VisibleIndex = 7;
  1636. this.POLLSETTINGSTATUSCOLUMN.Width = 98;
  1637. //
  1638. // PollingSetItemLookUpEdit
  1639. //
  1640. this.PollingSetItemLookUpEdit.AutoHeight = false;
  1641. this.PollingSetItemLookUpEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1642. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1643. this.PollingSetItemLookUpEdit.Name = "PollingSetItemLookUpEdit";
  1644. this.PollingSetItemLookUpEdit.NullText = "";
  1645. this.PollingSetItemLookUpEdit.ShowFooter = false;
  1646. this.PollingSetItemLookUpEdit.ShowHeader = false;
  1647. //
  1648. // PagePolling
  1649. //
  1650. this.PagePolling.Controls.Add(this.ButtonAddPolling);
  1651. this.PagePolling.Controls.Add(this.ButtonDeletePolling);
  1652. this.PagePolling.Controls.Add(this.ButtonSavePolling);
  1653. this.PagePolling.Controls.Add(this.GridPolling);
  1654. this.PagePolling.Name = "PagePolling";
  1655. this.PagePolling.PageVisible = false;
  1656. this.PagePolling.Size = new System.Drawing.Size(1034, 578);
  1657. this.PagePolling.Text = "xtraTabPage1";
  1658. //
  1659. // ButtonAddPolling
  1660. //
  1661. this.ButtonAddPolling.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1662. this.ButtonAddPolling.Grid = null;
  1663. this.ButtonAddPolling.Location = new System.Drawing.Point(885, 552);
  1664. this.ButtonAddPolling.Name = "ButtonAddPolling";
  1665. this.ButtonAddPolling.Size = new System.Drawing.Size(64, 23);
  1666. this.ButtonAddPolling.TabIndex = 9;
  1667. this.ButtonAddPolling.Text = "新增";
  1668. //
  1669. // ButtonDeletePolling
  1670. //
  1671. this.ButtonDeletePolling.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1672. this.ButtonDeletePolling.Grid = null;
  1673. this.ButtonDeletePolling.Location = new System.Drawing.Point(814, 552);
  1674. this.ButtonDeletePolling.Name = "ButtonDeletePolling";
  1675. this.ButtonDeletePolling.Size = new System.Drawing.Size(64, 23);
  1676. this.ButtonDeletePolling.TabIndex = 8;
  1677. this.ButtonDeletePolling.Text = "删除";
  1678. //
  1679. // ButtonSavePolling
  1680. //
  1681. this.ButtonSavePolling.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1682. this.ButtonSavePolling.Grid = null;
  1683. this.ButtonSavePolling.HandlerOtherFirst = false;
  1684. this.ButtonSavePolling.Location = new System.Drawing.Point(956, 552);
  1685. this.ButtonSavePolling.Name = "ButtonSavePolling";
  1686. this.ButtonSavePolling.Size = new System.Drawing.Size(64, 23);
  1687. this.ButtonSavePolling.TabIndex = 7;
  1688. this.ButtonSavePolling.Text = "保存";
  1689. //
  1690. // GridPolling
  1691. //
  1692. this.GridPolling.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1693. | System.Windows.Forms.AnchorStyles.Left)
  1694. | System.Windows.Forms.AnchorStyles.Right)));
  1695. this.GridPolling.Condition = null;
  1696. this.GridPolling.GetDataSQL = null;
  1697. this.GridPolling.ID = null;
  1698. this.GridPolling.InsertSQL = null;
  1699. this.GridPolling.Location = new System.Drawing.Point(3, -3);
  1700. this.GridPolling.MainView = this.GridViewPolling;
  1701. this.GridPolling.MenuManager = this.RibbonNav;
  1702. this.GridPolling.Name = "GridPolling";
  1703. this.GridPolling.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
  1704. this.dpc_enableCheckEdit});
  1705. this.GridPolling.RowCount = 0;
  1706. this.GridPolling.Size = new System.Drawing.Size(1034, 550);
  1707. this.GridPolling.TabIndex = 0;
  1708. this.GridPolling.TableName = null;
  1709. this.GridPolling.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  1710. this.GridViewPolling});
  1711. //
  1712. // GridViewPolling
  1713. //
  1714. this.GridViewPolling.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  1715. this.PollingCheckedColumn,
  1716. this.pl_id,
  1717. this.pl_code,
  1718. this.pl_name,
  1719. this.pl_type,
  1720. this.pl_dccode,
  1721. this.pl_remark});
  1722. this.GridViewPolling.GridControl = this.GridPolling;
  1723. this.GridViewPolling.IndicatorWidth = 30;
  1724. this.GridViewPolling.Name = "GridViewPolling";
  1725. this.GridViewPolling.OptionsView.ShowGroupPanel = false;
  1726. //
  1727. // PollingCheckedColumn
  1728. //
  1729. this.PollingCheckedColumn.Caption = " ";
  1730. this.PollingCheckedColumn.ColumnEdit = this.dpc_enableCheckEdit;
  1731. this.PollingCheckedColumn.FieldName = "CHECKEDCOLUMN";
  1732. this.PollingCheckedColumn.Name = "PollingCheckedColumn";
  1733. this.PollingCheckedColumn.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
  1734. this.PollingCheckedColumn.Tag = "0";
  1735. this.PollingCheckedColumn.Visible = true;
  1736. this.PollingCheckedColumn.VisibleIndex = 0;
  1737. //
  1738. // pl_id
  1739. //
  1740. this.pl_id.Caption = "ID";
  1741. this.pl_id.FieldName = "PL_ID";
  1742. this.pl_id.Name = "pl_id";
  1743. //
  1744. // pl_code
  1745. //
  1746. this.pl_code.Caption = "业务编号";
  1747. this.pl_code.FieldName = "PL_CODE";
  1748. this.pl_code.Name = "pl_code";
  1749. this.pl_code.Visible = true;
  1750. this.pl_code.VisibleIndex = 1;
  1751. //
  1752. // pl_name
  1753. //
  1754. this.pl_name.Caption = "业务名称";
  1755. this.pl_name.FieldName = "PL_NAME";
  1756. this.pl_name.Name = "pl_name";
  1757. this.pl_name.Visible = true;
  1758. this.pl_name.VisibleIndex = 2;
  1759. //
  1760. // pl_type
  1761. //
  1762. this.pl_type.Caption = "业务类型";
  1763. this.pl_type.FieldName = "PL_TYPE";
  1764. this.pl_type.Name = "pl_type";
  1765. this.pl_type.Visible = true;
  1766. this.pl_type.VisibleIndex = 3;
  1767. //
  1768. // pl_dccode
  1769. //
  1770. this.pl_dccode.Caption = "指令编号";
  1771. this.pl_dccode.ColumnEdit = this.PollingSetItemLookUpEdit;
  1772. this.pl_dccode.FieldName = "PL_DCCODE";
  1773. this.pl_dccode.Name = "pl_dccode";
  1774. this.pl_dccode.Visible = true;
  1775. this.pl_dccode.VisibleIndex = 4;
  1776. //
  1777. // pl_remark
  1778. //
  1779. this.pl_remark.Caption = "备注";
  1780. this.pl_remark.FieldName = "PL_REMARK";
  1781. this.pl_remark.Name = "pl_remark";
  1782. this.pl_remark.Visible = true;
  1783. this.pl_remark.VisibleIndex = 5;
  1784. //
  1785. // PageDeviceStatus
  1786. //
  1787. this.PageDeviceStatus.Controls.Add(this.ComboxDeviceDepartment);
  1788. this.PageDeviceStatus.Controls.Add(this.ComboxDeviceFloor);
  1789. this.PageDeviceStatus.Controls.Add(this.label_ComboxDeviceFloor);
  1790. this.PageDeviceStatus.Controls.Add(this.label_ComboxDeviceDepartment);
  1791. this.PageDeviceStatus.Controls.Add(this.ComboxDeviceStatusWC);
  1792. this.PageDeviceStatus.Controls.Add(this.ComboxDeviceStatusLC);
  1793. this.PageDeviceStatus.Controls.Add(this.CheckEditDeviceStatusEnable);
  1794. this.PageDeviceStatus.Controls.Add(this.ComboxDeviceStatusLC_label);
  1795. this.PageDeviceStatus.Controls.Add(this.ComboxDeviceStatusWC_label);
  1796. this.PageDeviceStatus.Controls.Add(this.PanelDeviceStatus);
  1797. this.PageDeviceStatus.Name = "PageDeviceStatus";
  1798. this.PageDeviceStatus.PageVisible = false;
  1799. this.PageDeviceStatus.Size = new System.Drawing.Size(1034, 578);
  1800. this.PageDeviceStatus.Text = "设备状态查看";
  1801. this.PageDeviceStatus.VisibleChanged += new System.EventHandler(this.PageDeviceStatus_VisibleChanged);
  1802. //
  1803. // ComboxDeviceDepartment
  1804. //
  1805. this.ComboxDeviceDepartment.Location = new System.Drawing.Point(365, 10);
  1806. this.ComboxDeviceDepartment.MenuManager = this.RibbonNav;
  1807. this.ComboxDeviceDepartment.Name = "ComboxDeviceDepartment";
  1808. this.ComboxDeviceDepartment.Properties.Appearance.Font = new System.Drawing.Font("黑体", 11F);
  1809. this.ComboxDeviceDepartment.Properties.Appearance.Options.UseFont = true;
  1810. this.ComboxDeviceDepartment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1811. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1812. this.ComboxDeviceDepartment.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  1813. this.ComboxDeviceDepartment.Size = new System.Drawing.Size(100, 22);
  1814. this.ComboxDeviceDepartment.TabIndex = 6;
  1815. this.ComboxDeviceDepartment.SelectedIndexChanged += new System.EventHandler(this.ComboxDeviceStatusLC_SelectedIndexChanged);
  1816. //
  1817. // ComboxDeviceFloor
  1818. //
  1819. this.ComboxDeviceFloor.Location = new System.Drawing.Point(517, 10);
  1820. this.ComboxDeviceFloor.MenuManager = this.RibbonNav;
  1821. this.ComboxDeviceFloor.Name = "ComboxDeviceFloor";
  1822. this.ComboxDeviceFloor.Properties.Appearance.Font = new System.Drawing.Font("黑体", 11F);
  1823. this.ComboxDeviceFloor.Properties.Appearance.Options.UseFont = true;
  1824. this.ComboxDeviceFloor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1825. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1826. this.ComboxDeviceFloor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  1827. this.ComboxDeviceFloor.Size = new System.Drawing.Size(100, 22);
  1828. this.ComboxDeviceFloor.TabIndex = 7;
  1829. this.ComboxDeviceFloor.SelectedIndexChanged += new System.EventHandler(this.ComboxDeviceStatusLC_SelectedIndexChanged);
  1830. //
  1831. // label_ComboxDeviceFloor
  1832. //
  1833. this.label_ComboxDeviceFloor.Appearance.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1834. this.label_ComboxDeviceFloor.Location = new System.Drawing.Point(477, 13);
  1835. this.label_ComboxDeviceFloor.Name = "label_ComboxDeviceFloor";
  1836. this.label_ComboxDeviceFloor.Size = new System.Drawing.Size(32, 16);
  1837. this.label_ComboxDeviceFloor.TabIndex = 9;
  1838. this.label_ComboxDeviceFloor.Text = "楼层";
  1839. //
  1840. // label_ComboxDeviceDepartment
  1841. //
  1842. this.label_ComboxDeviceDepartment.Appearance.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1843. this.label_ComboxDeviceDepartment.Location = new System.Drawing.Point(326, 13);
  1844. this.label_ComboxDeviceDepartment.Name = "label_ComboxDeviceDepartment";
  1845. this.label_ComboxDeviceDepartment.Size = new System.Drawing.Size(32, 16);
  1846. this.label_ComboxDeviceDepartment.TabIndex = 8;
  1847. this.label_ComboxDeviceDepartment.Text = "部门";
  1848. //
  1849. // ComboxDeviceStatusWC
  1850. //
  1851. this.ComboxDeviceStatusWC.Location = new System.Drawing.Point(61, 10);
  1852. this.ComboxDeviceStatusWC.MenuManager = this.RibbonNav;
  1853. this.ComboxDeviceStatusWC.Name = "ComboxDeviceStatusWC";
  1854. this.ComboxDeviceStatusWC.Properties.Appearance.Font = new System.Drawing.Font("黑体", 11F);
  1855. this.ComboxDeviceStatusWC.Properties.Appearance.Options.UseFont = true;
  1856. this.ComboxDeviceStatusWC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1857. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1858. this.ComboxDeviceStatusWC.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  1859. this.ComboxDeviceStatusWC.Size = new System.Drawing.Size(100, 22);
  1860. this.ComboxDeviceStatusWC.TabIndex = 0;
  1861. this.ComboxDeviceStatusWC.SelectedIndexChanged += new System.EventHandler(this.ComboxDeviceStatusWC_SelectedIndexChanged);
  1862. //
  1863. // ComboxDeviceStatusLC
  1864. //
  1865. this.ComboxDeviceStatusLC.Location = new System.Drawing.Point(213, 10);
  1866. this.ComboxDeviceStatusLC.MenuManager = this.RibbonNav;
  1867. this.ComboxDeviceStatusLC.Name = "ComboxDeviceStatusLC";
  1868. this.ComboxDeviceStatusLC.Properties.Appearance.Font = new System.Drawing.Font("黑体", 11F);
  1869. this.ComboxDeviceStatusLC.Properties.Appearance.Options.UseFont = true;
  1870. this.ComboxDeviceStatusLC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  1871. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
  1872. this.ComboxDeviceStatusLC.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
  1873. this.ComboxDeviceStatusLC.Size = new System.Drawing.Size(100, 22);
  1874. this.ComboxDeviceStatusLC.TabIndex = 0;
  1875. this.ComboxDeviceStatusLC.SelectedIndexChanged += new System.EventHandler(this.ComboxDeviceStatusLC_SelectedIndexChanged);
  1876. //
  1877. // CheckEditDeviceStatusEnable
  1878. //
  1879. this.CheckEditDeviceStatusEnable.Location = new System.Drawing.Point(628, 13);
  1880. this.CheckEditDeviceStatusEnable.MenuManager = this.RibbonNav;
  1881. this.CheckEditDeviceStatusEnable.Name = "CheckEditDeviceStatusEnable";
  1882. this.CheckEditDeviceStatusEnable.Properties.Appearance.Font = new System.Drawing.Font("黑体", 10F);
  1883. this.CheckEditDeviceStatusEnable.Properties.Appearance.Options.UseFont = true;
  1884. this.CheckEditDeviceStatusEnable.Properties.Caption = "只显示已启用设备";
  1885. this.CheckEditDeviceStatusEnable.Size = new System.Drawing.Size(142, 19);
  1886. this.CheckEditDeviceStatusEnable.TabIndex = 5;
  1887. this.CheckEditDeviceStatusEnable.CheckedChanged += new System.EventHandler(this.CheckEditDeviceStatusEnable_CheckedChanged);
  1888. //
  1889. // ComboxDeviceStatusLC_label
  1890. //
  1891. this.ComboxDeviceStatusLC_label.Appearance.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1892. this.ComboxDeviceStatusLC_label.Location = new System.Drawing.Point(173, 13);
  1893. this.ComboxDeviceStatusLC_label.Name = "ComboxDeviceStatusLC_label";
  1894. this.ComboxDeviceStatusLC_label.Size = new System.Drawing.Size(32, 16);
  1895. this.ComboxDeviceStatusLC_label.TabIndex = 4;
  1896. this.ComboxDeviceStatusLC_label.Text = "线别";
  1897. //
  1898. // ComboxDeviceStatusWC_label
  1899. //
  1900. this.ComboxDeviceStatusWC_label.Appearance.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1901. this.ComboxDeviceStatusWC_label.Location = new System.Drawing.Point(22, 13);
  1902. this.ComboxDeviceStatusWC_label.Name = "ComboxDeviceStatusWC_label";
  1903. this.ComboxDeviceStatusWC_label.Size = new System.Drawing.Size(32, 16);
  1904. this.ComboxDeviceStatusWC_label.TabIndex = 2;
  1905. this.ComboxDeviceStatusWC_label.Text = "车间";
  1906. //
  1907. // PanelDeviceStatus
  1908. //
  1909. this.PanelDeviceStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1910. | System.Windows.Forms.AnchorStyles.Left)
  1911. | System.Windows.Forms.AnchorStyles.Right)));
  1912. this.PanelDeviceStatus.Location = new System.Drawing.Point(0, 35);
  1913. this.PanelDeviceStatus.Name = "PanelDeviceStatus";
  1914. this.PanelDeviceStatus.Size = new System.Drawing.Size(1034, 543);
  1915. this.PanelDeviceStatus.TabIndex = 0;
  1916. //
  1917. // PageWorkCenterStatus
  1918. //
  1919. this.PageWorkCenterStatus.Controls.Add(this.GridWorkCenterStatus);
  1920. this.PageWorkCenterStatus.Name = "PageWorkCenterStatus";
  1921. this.PageWorkCenterStatus.PageVisible = false;
  1922. this.PageWorkCenterStatus.Size = new System.Drawing.Size(1034, 578);
  1923. this.PageWorkCenterStatus.Text = "设备工作中心";
  1924. //
  1925. // GridWorkCenterStatus
  1926. //
  1927. this.GridWorkCenterStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1928. | System.Windows.Forms.AnchorStyles.Left)
  1929. | System.Windows.Forms.AnchorStyles.Right)));
  1930. this.GridWorkCenterStatus.Condition = null;
  1931. this.GridWorkCenterStatus.GetDataSQL = null;
  1932. this.GridWorkCenterStatus.ID = null;
  1933. this.GridWorkCenterStatus.InsertSQL = null;
  1934. this.GridWorkCenterStatus.Location = new System.Drawing.Point(0, 0);
  1935. this.GridWorkCenterStatus.MainView = this.GridViewWorkCenterStatus;
  1936. this.GridWorkCenterStatus.MenuManager = this.RibbonNav;
  1937. this.GridWorkCenterStatus.Name = "GridWorkCenterStatus";
  1938. this.GridWorkCenterStatus.RowCount = 0;
  1939. this.GridWorkCenterStatus.Size = new System.Drawing.Size(1031, 575);
  1940. this.GridWorkCenterStatus.TabIndex = 0;
  1941. this.GridWorkCenterStatus.TableName = null;
  1942. this.GridWorkCenterStatus.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  1943. this.GridViewWorkCenterStatus});
  1944. //
  1945. // GridViewWorkCenterStatus
  1946. //
  1947. this.GridViewWorkCenterStatus.GridControl = this.GridWorkCenterStatus;
  1948. this.GridViewWorkCenterStatus.IndicatorWidth = 30;
  1949. this.GridViewWorkCenterStatus.Name = "GridViewWorkCenterStatus";
  1950. this.GridViewWorkCenterStatus.OptionsView.ShowGroupPanel = false;
  1951. //
  1952. // PageDeviceRunLog
  1953. //
  1954. this.PageDeviceRunLog.Controls.Add(this.ButtonSearchDeviceRunLog);
  1955. this.PageDeviceRunLog.Controls.Add(this.TextDrrDeCode);
  1956. this.PageDeviceRunLog.Controls.Add(this.LabelDrrDeCode);
  1957. this.PageDeviceRunLog.Controls.Add(this.GridDeviceRunLog);
  1958. this.PageDeviceRunLog.Name = "PageDeviceRunLog";
  1959. this.PageDeviceRunLog.PageVisible = false;
  1960. this.PageDeviceRunLog.Size = new System.Drawing.Size(1034, 578);
  1961. this.PageDeviceRunLog.Text = "设备运行日志";
  1962. //
  1963. // ButtonSearchDeviceRunLog
  1964. //
  1965. this.ButtonSearchDeviceRunLog.Location = new System.Drawing.Point(170, 4);
  1966. this.ButtonSearchDeviceRunLog.Name = "ButtonSearchDeviceRunLog";
  1967. this.ButtonSearchDeviceRunLog.Size = new System.Drawing.Size(64, 23);
  1968. this.ButtonSearchDeviceRunLog.TabIndex = 3;
  1969. this.ButtonSearchDeviceRunLog.Text = "查询";
  1970. this.ButtonSearchDeviceRunLog.Click += new System.EventHandler(this.ButtonSearchDeviceRunLog_Click);
  1971. //
  1972. // TextDrrDeCode
  1973. //
  1974. this.TextDrrDeCode.Location = new System.Drawing.Point(64, 5);
  1975. this.TextDrrDeCode.MenuManager = this.RibbonNav;
  1976. this.TextDrrDeCode.Name = "TextDrrDeCode";
  1977. this.TextDrrDeCode.Size = new System.Drawing.Size(100, 20);
  1978. this.TextDrrDeCode.TabIndex = 2;
  1979. //
  1980. // LabelDrrDeCode
  1981. //
  1982. this.LabelDrrDeCode.Appearance.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1983. this.LabelDrrDeCode.Location = new System.Drawing.Point(10, 7);
  1984. this.LabelDrrDeCode.Name = "LabelDrrDeCode";
  1985. this.LabelDrrDeCode.Size = new System.Drawing.Size(48, 17);
  1986. this.LabelDrrDeCode.TabIndex = 1;
  1987. this.LabelDrrDeCode.Text = "设备编号";
  1988. //
  1989. // GridDeviceRunLog
  1990. //
  1991. this.GridDeviceRunLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1992. | System.Windows.Forms.AnchorStyles.Left)
  1993. | System.Windows.Forms.AnchorStyles.Right)));
  1994. this.GridDeviceRunLog.Condition = null;
  1995. this.GridDeviceRunLog.GetDataSQL = null;
  1996. this.GridDeviceRunLog.ID = null;
  1997. this.GridDeviceRunLog.InsertSQL = null;
  1998. this.GridDeviceRunLog.Location = new System.Drawing.Point(-1, 29);
  1999. this.GridDeviceRunLog.MainView = this.GirdViewDeviceRunLog;
  2000. this.GridDeviceRunLog.MenuManager = this.RibbonNav;
  2001. this.GridDeviceRunLog.Name = "GridDeviceRunLog";
  2002. this.GridDeviceRunLog.RowCount = 0;
  2003. this.GridDeviceRunLog.Size = new System.Drawing.Size(1035, 554);
  2004. this.GridDeviceRunLog.TabIndex = 0;
  2005. this.GridDeviceRunLog.TableName = null;
  2006. this.GridDeviceRunLog.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  2007. this.GirdViewDeviceRunLog});
  2008. //
  2009. // GirdViewDeviceRunLog
  2010. //
  2011. this.GirdViewDeviceRunLog.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  2012. this.主键,
  2013. this.drr_decode,
  2014. this.drr_dename,
  2015. this.drr_command,
  2016. this.drr_date,
  2017. this.drr_commandfrom,
  2018. this.drr_doman,
  2019. this.drr_remark});
  2020. this.GirdViewDeviceRunLog.GridControl = this.GridDeviceRunLog;
  2021. this.GirdViewDeviceRunLog.IndicatorWidth = 30;
  2022. this.GirdViewDeviceRunLog.Name = "GirdViewDeviceRunLog";
  2023. this.GirdViewDeviceRunLog.OptionsView.ShowGroupPanel = false;
  2024. //
  2025. // 主键
  2026. //
  2027. this.主键.Caption = "drr_id";
  2028. this.主键.FieldName = "DRR_ID";
  2029. this.主键.Name = "主键";
  2030. this.主键.OptionsColumn.AllowEdit = false;
  2031. //
  2032. // drr_decode
  2033. //
  2034. this.drr_decode.Caption = "设备编号";
  2035. this.drr_decode.FieldName = "DRR_DECODE";
  2036. this.drr_decode.Name = "drr_decode";
  2037. this.drr_decode.OptionsColumn.AllowEdit = false;
  2038. this.drr_decode.Visible = true;
  2039. this.drr_decode.VisibleIndex = 0;
  2040. this.drr_decode.Width = 142;
  2041. //
  2042. // drr_dename
  2043. //
  2044. this.drr_dename.Caption = "设备名称";
  2045. this.drr_dename.FieldName = "DRR_DENAME";
  2046. this.drr_dename.Name = "drr_dename";
  2047. this.drr_dename.OptionsColumn.AllowEdit = false;
  2048. this.drr_dename.Visible = true;
  2049. this.drr_dename.VisibleIndex = 1;
  2050. this.drr_dename.Width = 142;
  2051. //
  2052. // drr_command
  2053. //
  2054. this.drr_command.Caption = "指令类型";
  2055. this.drr_command.FieldName = "DRR_COMMAND";
  2056. this.drr_command.Name = "drr_command";
  2057. this.drr_command.OptionsColumn.AllowEdit = false;
  2058. this.drr_command.Visible = true;
  2059. this.drr_command.VisibleIndex = 2;
  2060. this.drr_command.Width = 142;
  2061. //
  2062. // drr_date
  2063. //
  2064. this.drr_date.Caption = "日期";
  2065. this.drr_date.FieldName = "DRR_DATE";
  2066. this.drr_date.Name = "drr_date";
  2067. this.drr_date.OptionsColumn.AllowEdit = false;
  2068. this.drr_date.Visible = true;
  2069. this.drr_date.VisibleIndex = 3;
  2070. this.drr_date.Width = 142;
  2071. //
  2072. // drr_commandfrom
  2073. //
  2074. this.drr_commandfrom.Caption = "指令来源";
  2075. this.drr_commandfrom.FieldName = "DRR_COMMANDFROM";
  2076. this.drr_commandfrom.Name = "drr_commandfrom";
  2077. this.drr_commandfrom.OptionsColumn.AllowEdit = false;
  2078. this.drr_commandfrom.Visible = true;
  2079. this.drr_commandfrom.VisibleIndex = 4;
  2080. this.drr_commandfrom.Width = 142;
  2081. //
  2082. // drr_doman
  2083. //
  2084. this.drr_doman.Caption = "执行人";
  2085. this.drr_doman.FieldName = "DRR_DOMAN";
  2086. this.drr_doman.Name = "drr_doman";
  2087. this.drr_doman.OptionsColumn.AllowEdit = false;
  2088. this.drr_doman.Visible = true;
  2089. this.drr_doman.VisibleIndex = 5;
  2090. this.drr_doman.Width = 142;
  2091. //
  2092. // drr_remark
  2093. //
  2094. this.drr_remark.Caption = "备注";
  2095. this.drr_remark.FieldName = "DRR_REMARK";
  2096. this.drr_remark.Name = "drr_remark";
  2097. this.drr_remark.OptionsColumn.AllowEdit = false;
  2098. this.drr_remark.Visible = true;
  2099. this.drr_remark.VisibleIndex = 6;
  2100. this.drr_remark.Width = 144;
  2101. //
  2102. // PageClientParam
  2103. //
  2104. this.PageClientParam.Controls.Add(this.label2);
  2105. this.PageClientParam.Controls.Add(this.CheckOUTQTY);
  2106. this.PageClientParam.Controls.Add(this.CheckPARAM);
  2107. this.PageClientParam.Controls.Add(this.CheckINQTY);
  2108. this.PageClientParam.Controls.Add(this.ButtonSaveClientParam);
  2109. this.PageClientParam.Controls.Add(this.UpdateTimeSpan);
  2110. this.PageClientParam.Controls.Add(this.label1);
  2111. this.PageClientParam.Name = "PageClientParam";
  2112. this.PageClientParam.PageVisible = false;
  2113. this.PageClientParam.Size = new System.Drawing.Size(1034, 578);
  2114. this.PageClientParam.Text = "客户端参数设置";
  2115. this.PageClientParam.VisibleChanged += new System.EventHandler(this.PageClientParam_VisibleChanged);
  2116. //
  2117. // label2
  2118. //
  2119. this.label2.AutoSize = true;
  2120. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2121. this.label2.Location = new System.Drawing.Point(28, 78);
  2122. this.label2.Name = "label2";
  2123. this.label2.Size = new System.Drawing.Size(106, 21);
  2124. this.label2.TabIndex = 6;
  2125. this.label2.Text = "立即更新参数";
  2126. //
  2127. // CheckOUTQTY
  2128. //
  2129. this.CheckOUTQTY.Location = new System.Drawing.Point(221, 80);
  2130. this.CheckOUTQTY.MenuManager = this.RibbonNav;
  2131. this.CheckOUTQTY.Name = "CheckOUTQTY";
  2132. this.CheckOUTQTY.Properties.Caption = "产出";
  2133. this.CheckOUTQTY.Size = new System.Drawing.Size(75, 19);
  2134. this.CheckOUTQTY.TabIndex = 5;
  2135. //
  2136. // CheckPARAM
  2137. //
  2138. this.CheckPARAM.Location = new System.Drawing.Point(302, 80);
  2139. this.CheckPARAM.MenuManager = this.RibbonNav;
  2140. this.CheckPARAM.Name = "CheckPARAM";
  2141. this.CheckPARAM.Properties.Caption = "其他参数";
  2142. this.CheckPARAM.Size = new System.Drawing.Size(75, 19);
  2143. this.CheckPARAM.TabIndex = 4;
  2144. //
  2145. // CheckINQTY
  2146. //
  2147. this.CheckINQTY.Location = new System.Drawing.Point(140, 80);
  2148. this.CheckINQTY.MenuManager = this.RibbonNav;
  2149. this.CheckINQTY.Name = "CheckINQTY";
  2150. this.CheckINQTY.Properties.Caption = "投入";
  2151. this.CheckINQTY.Size = new System.Drawing.Size(75, 19);
  2152. this.CheckINQTY.TabIndex = 3;
  2153. //
  2154. // ButtonSaveClientParam
  2155. //
  2156. this.ButtonSaveClientParam.Location = new System.Drawing.Point(140, 129);
  2157. this.ButtonSaveClientParam.Name = "ButtonSaveClientParam";
  2158. this.ButtonSaveClientParam.Size = new System.Drawing.Size(64, 23);
  2159. this.ButtonSaveClientParam.TabIndex = 2;
  2160. this.ButtonSaveClientParam.Text = "保存";
  2161. this.ButtonSaveClientParam.Click += new System.EventHandler(this.ButtonSaveClientParam_Click);
  2162. //
  2163. // UpdateTimeSpan
  2164. //
  2165. this.UpdateTimeSpan.Location = new System.Drawing.Point(140, 30);
  2166. this.UpdateTimeSpan.Name = "UpdateTimeSpan";
  2167. this.UpdateTimeSpan.Size = new System.Drawing.Size(53, 22);
  2168. this.UpdateTimeSpan.TabIndex = 1;
  2169. //
  2170. // label1
  2171. //
  2172. this.label1.AutoSize = true;
  2173. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  2174. this.label1.Location = new System.Drawing.Point(28, 30);
  2175. this.label1.Name = "label1";
  2176. this.label1.Size = new System.Drawing.Size(106, 21);
  2177. this.label1.TabIndex = 0;
  2178. this.label1.Text = "数据上传时间";
  2179. //
  2180. // PageDeviceData
  2181. //
  2182. this.PageDeviceData.Controls.Add(this.ButtonRefreshDeviceData);
  2183. this.PageDeviceData.Controls.Add(this.GridDeviceData);
  2184. this.PageDeviceData.Name = "PageDeviceData";
  2185. this.PageDeviceData.PageVisible = false;
  2186. this.PageDeviceData.Size = new System.Drawing.Size(1034, 578);
  2187. this.PageDeviceData.Text = "设备运行数据";
  2188. //
  2189. // ButtonRefreshDeviceData
  2190. //
  2191. this.ButtonRefreshDeviceData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2192. this.ButtonRefreshDeviceData.Grid = null;
  2193. this.ButtonRefreshDeviceData.Location = new System.Drawing.Point(954, 4);
  2194. this.ButtonRefreshDeviceData.Name = "ButtonRefreshDeviceData";
  2195. this.ButtonRefreshDeviceData.Size = new System.Drawing.Size(64, 23);
  2196. this.ButtonRefreshDeviceData.TabIndex = 7;
  2197. this.ButtonRefreshDeviceData.Text = "刷新";
  2198. this.ButtonRefreshDeviceData.Click += new System.EventHandler(this.ButtonRefreshDeviceData_Click);
  2199. //
  2200. // GridDeviceData
  2201. //
  2202. this.GridDeviceData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2203. | System.Windows.Forms.AnchorStyles.Left)
  2204. | System.Windows.Forms.AnchorStyles.Right)));
  2205. this.GridDeviceData.Condition = null;
  2206. this.GridDeviceData.GetDataSQL = null;
  2207. this.GridDeviceData.ID = null;
  2208. this.GridDeviceData.InsertSQL = null;
  2209. this.GridDeviceData.Location = new System.Drawing.Point(0, 32);
  2210. this.GridDeviceData.MainView = this.GridViewDeviceData;
  2211. this.GridDeviceData.MenuManager = this.RibbonNav;
  2212. this.GridDeviceData.Name = "GridDeviceData";
  2213. this.GridDeviceData.RowCount = 0;
  2214. this.GridDeviceData.Size = new System.Drawing.Size(1034, 546);
  2215. this.GridDeviceData.TabIndex = 0;
  2216. this.GridDeviceData.TableName = null;
  2217. this.GridDeviceData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  2218. this.GridViewDeviceData});
  2219. //
  2220. // GridViewDeviceData
  2221. //
  2222. this.GridViewDeviceData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
  2223. this.dr_decode,
  2224. this.dr_dename,
  2225. this.dr_runstatus,
  2226. this.dr_qty,
  2227. this.dr_inqty,
  2228. this.dr_value1,
  2229. this.dr_value2,
  2230. this.dr_value3,
  2231. this.dr_value4,
  2232. this.dr_value5,
  2233. this.dr_value6,
  2234. this.dr_value7,
  2235. this.dr_value8,
  2236. this.dr_value9,
  2237. this.dr_value10});
  2238. this.GridViewDeviceData.GridControl = this.GridDeviceData;
  2239. this.GridViewDeviceData.IndicatorWidth = 30;
  2240. this.GridViewDeviceData.Name = "GridViewDeviceData";
  2241. this.GridViewDeviceData.OptionsView.ShowGroupPanel = false;
  2242. //
  2243. // dr_decode
  2244. //
  2245. this.dr_decode.Caption = "设备编号";
  2246. this.dr_decode.FieldName = "DR_DECODE";
  2247. this.dr_decode.Name = "dr_decode";
  2248. this.dr_decode.OptionsColumn.AllowEdit = false;
  2249. this.dr_decode.Visible = true;
  2250. this.dr_decode.VisibleIndex = 0;
  2251. //
  2252. // dr_dename
  2253. //
  2254. this.dr_dename.Caption = "设备名称";
  2255. this.dr_dename.FieldName = "DR_DENAME";
  2256. this.dr_dename.Name = "dr_dename";
  2257. this.dr_dename.OptionsColumn.AllowEdit = false;
  2258. this.dr_dename.Visible = true;
  2259. this.dr_dename.VisibleIndex = 1;
  2260. //
  2261. // dr_runstatus
  2262. //
  2263. this.dr_runstatus.Caption = "运行状态";
  2264. this.dr_runstatus.FieldName = "DR_RUNSTATUS";
  2265. this.dr_runstatus.Name = "dr_runstatus";
  2266. this.dr_runstatus.OptionsColumn.AllowEdit = false;
  2267. this.dr_runstatus.Visible = true;
  2268. this.dr_runstatus.VisibleIndex = 2;
  2269. //
  2270. // dr_qty
  2271. //
  2272. this.dr_qty.Caption = "投入";
  2273. this.dr_qty.FieldName = "DR_QTY";
  2274. this.dr_qty.Name = "dr_qty";
  2275. this.dr_qty.OptionsColumn.AllowEdit = false;
  2276. this.dr_qty.Visible = true;
  2277. this.dr_qty.VisibleIndex = 3;
  2278. //
  2279. // dr_inqty
  2280. //
  2281. this.dr_inqty.Caption = "产出";
  2282. this.dr_inqty.FieldName = "DR_OKQTY";
  2283. this.dr_inqty.Name = "dr_inqty";
  2284. this.dr_inqty.OptionsColumn.AllowEdit = false;
  2285. this.dr_inqty.Visible = true;
  2286. this.dr_inqty.VisibleIndex = 4;
  2287. //
  2288. // dr_value1
  2289. //
  2290. this.dr_value1.Caption = "参数1";
  2291. this.dr_value1.FieldName = "DR_VALUE1";
  2292. this.dr_value1.Name = "dr_value1";
  2293. this.dr_value1.Visible = true;
  2294. this.dr_value1.VisibleIndex = 5;
  2295. //
  2296. // dr_value2
  2297. //
  2298. this.dr_value2.Caption = "参数2";
  2299. this.dr_value2.FieldName = "DR_VALUE2";
  2300. this.dr_value2.Name = "dr_value2";
  2301. this.dr_value2.Visible = true;
  2302. this.dr_value2.VisibleIndex = 6;
  2303. //
  2304. // dr_value3
  2305. //
  2306. this.dr_value3.Caption = "参数3";
  2307. this.dr_value3.FieldName = "DR_VALUE3";
  2308. this.dr_value3.Name = "dr_value3";
  2309. this.dr_value3.Visible = true;
  2310. this.dr_value3.VisibleIndex = 7;
  2311. //
  2312. // dr_value4
  2313. //
  2314. this.dr_value4.Caption = "参数4";
  2315. this.dr_value4.FieldName = "DR_VALUE4";
  2316. this.dr_value4.Name = "dr_value4";
  2317. this.dr_value4.Visible = true;
  2318. this.dr_value4.VisibleIndex = 8;
  2319. //
  2320. // dr_value5
  2321. //
  2322. this.dr_value5.Caption = "参数5";
  2323. this.dr_value5.FieldName = "DR_VALUE5";
  2324. this.dr_value5.Name = "dr_value5";
  2325. this.dr_value5.Visible = true;
  2326. this.dr_value5.VisibleIndex = 9;
  2327. //
  2328. // dr_value6
  2329. //
  2330. this.dr_value6.Caption = "参数6";
  2331. this.dr_value6.FieldName = "DR_VALUE6";
  2332. this.dr_value6.Name = "dr_value6";
  2333. this.dr_value6.Visible = true;
  2334. this.dr_value6.VisibleIndex = 10;
  2335. //
  2336. // dr_value7
  2337. //
  2338. this.dr_value7.Caption = "参数7";
  2339. this.dr_value7.FieldName = "DR_VALUE7";
  2340. this.dr_value7.Name = "dr_value7";
  2341. this.dr_value7.Visible = true;
  2342. this.dr_value7.VisibleIndex = 11;
  2343. //
  2344. // dr_value8
  2345. //
  2346. this.dr_value8.Caption = "参数8";
  2347. this.dr_value8.FieldName = "DR_VALUE8";
  2348. this.dr_value8.Name = "dr_value8";
  2349. this.dr_value8.Visible = true;
  2350. this.dr_value8.VisibleIndex = 12;
  2351. //
  2352. // dr_value9
  2353. //
  2354. this.dr_value9.Caption = "参数9";
  2355. this.dr_value9.FieldName = "DR_VALUE9";
  2356. this.dr_value9.Name = "dr_value9";
  2357. this.dr_value9.Visible = true;
  2358. this.dr_value9.VisibleIndex = 13;
  2359. //
  2360. // dr_value10
  2361. //
  2362. this.dr_value10.Caption = "参数10";
  2363. this.dr_value10.FieldName = "DR_VALUE10";
  2364. this.dr_value10.Name = "dr_value10";
  2365. this.dr_value10.Visible = true;
  2366. this.dr_value10.VisibleIndex = 14;
  2367. //
  2368. // TimerDeviceStatus
  2369. //
  2370. this.TimerDeviceStatus.Interval = 10000;
  2371. this.TimerDeviceStatus.Tick += new System.EventHandler(this.TimerDeviceStatus_Tick);
  2372. //
  2373. // CommonTipController
  2374. //
  2375. this.CommonTipController.AutoPopDelay = 10000;
  2376. //
  2377. // TimerUpdateDevice
  2378. //
  2379. this.TimerUpdateDevice.Interval = 20000;
  2380. this.TimerUpdateDevice.Tick += new System.EventHandler(this.TimerUpdateDevice_Tick);
  2381. //
  2382. // TimerUpdateSQL
  2383. //
  2384. this.TimerUpdateSQL.Interval = 5000;
  2385. this.TimerUpdateSQL.Tick += new System.EventHandler(this.TimerUpdateSQL_Tick);
  2386. //
  2387. // Main
  2388. //
  2389. this.AllowFormGlass = DevExpress.Utils.DefaultBoolean.False;
  2390. this.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
  2391. this.Appearance.Options.UseForeColor = true;
  2392. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  2393. this.ClientSize = new System.Drawing.Size(1040, 712);
  2394. this.Controls.Add(this.MainTabControl);
  2395. this.Controls.Add(this.RibbonNav);
  2396. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2397. this.Name = "Main";
  2398. this.Ribbon = this.RibbonNav;
  2399. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  2400. this.Text = "设备监控管理平台";
  2401. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  2402. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
  2403. this.Load += new System.EventHandler(this.Main_Load);
  2404. ((System.ComponentModel.ISupportInitialize)(this.RibbonNav)).EndInit();
  2405. ((System.ComponentModel.ISupportInitialize)(this.MainTabControl)).EndInit();
  2406. this.MainTabControl.ResumeLayout(false);
  2407. this.PageDeviceList.ResumeLayout(false);
  2408. this.PageDeviceList.PerformLayout();
  2409. ((System.ComponentModel.ISupportInitialize)(this.ComBoxDeviceListMan.Properties)).EndInit();
  2410. ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).EndInit();
  2411. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceListWC.Properties)).EndInit();
  2412. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceListLC.Properties)).EndInit();
  2413. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceList)).EndInit();
  2414. ((System.ComponentModel.ISupportInitialize)(this.GridViewDeviceList)).EndInit();
  2415. ((System.ComponentModel.ISupportInitialize)(this.dpc_enableCheckEdit)).EndInit();
  2416. ((System.ComponentModel.ISupportInitialize)(this.DeviceItemSearchLookUpEdit)).EndInit();
  2417. ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
  2418. ((System.ComponentModel.ISupportInitialize)(this.DataItemRepositoryItemComboBox1)).EndInit();
  2419. this.PageCommandSet.ResumeLayout(false);
  2420. this.PageCommandSet.PerformLayout();
  2421. ((System.ComponentModel.ISupportInitialize)(this.Brand.Properties)).EndInit();
  2422. ((System.ComponentModel.ISupportInitialize)(this.GridCommandSetting)).EndInit();
  2423. ((System.ComponentModel.ISupportInitialize)(this.GridViewCommandSet)).EndInit();
  2424. ((System.ComponentModel.ISupportInitialize)(this.CheckEditCommandSet)).EndInit();
  2425. ((System.ComponentModel.ISupportInitialize)(this.CommandSetRepositoryItemComboBox1)).EndInit();
  2426. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).EndInit();
  2427. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
  2428. this.PageDeviceNetSetting.ResumeLayout(false);
  2429. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceNetSetting)).EndInit();
  2430. ((System.ComponentModel.ISupportInitialize)(this.GridViewDeviceNetSetting)).EndInit();
  2431. this.PagePollingSetting.ResumeLayout(false);
  2432. ((System.ComponentModel.ISupportInitialize)(this.GridPollingSetting)).EndInit();
  2433. ((System.ComponentModel.ISupportInitialize)(this.GridViewPollSetting)).EndInit();
  2434. ((System.ComponentModel.ISupportInitialize)(this.PollSettingDeviceSearchLookUpEdit)).EndInit();
  2435. ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1View)).EndInit();
  2436. ((System.ComponentModel.ISupportInitialize)(this.PollSettingItemSearchLookUpEdit)).EndInit();
  2437. ((System.ComponentModel.ISupportInitialize)(this.PollSettingItemSearchLookUpEditView)).EndInit();
  2438. ((System.ComponentModel.ISupportInitialize)(this.PollingSetItemLookUpEdit)).EndInit();
  2439. this.PagePolling.ResumeLayout(false);
  2440. ((System.ComponentModel.ISupportInitialize)(this.GridPolling)).EndInit();
  2441. ((System.ComponentModel.ISupportInitialize)(this.GridViewPolling)).EndInit();
  2442. this.PageDeviceStatus.ResumeLayout(false);
  2443. this.PageDeviceStatus.PerformLayout();
  2444. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceDepartment.Properties)).EndInit();
  2445. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceFloor.Properties)).EndInit();
  2446. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceStatusWC.Properties)).EndInit();
  2447. ((System.ComponentModel.ISupportInitialize)(this.ComboxDeviceStatusLC.Properties)).EndInit();
  2448. ((System.ComponentModel.ISupportInitialize)(this.CheckEditDeviceStatusEnable.Properties)).EndInit();
  2449. this.PageWorkCenterStatus.ResumeLayout(false);
  2450. ((System.ComponentModel.ISupportInitialize)(this.GridWorkCenterStatus)).EndInit();
  2451. ((System.ComponentModel.ISupportInitialize)(this.GridViewWorkCenterStatus)).EndInit();
  2452. this.PageDeviceRunLog.ResumeLayout(false);
  2453. this.PageDeviceRunLog.PerformLayout();
  2454. ((System.ComponentModel.ISupportInitialize)(this.TextDrrDeCode.Properties)).EndInit();
  2455. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceRunLog)).EndInit();
  2456. ((System.ComponentModel.ISupportInitialize)(this.GirdViewDeviceRunLog)).EndInit();
  2457. this.PageClientParam.ResumeLayout(false);
  2458. this.PageClientParam.PerformLayout();
  2459. ((System.ComponentModel.ISupportInitialize)(this.CheckOUTQTY.Properties)).EndInit();
  2460. ((System.ComponentModel.ISupportInitialize)(this.CheckPARAM.Properties)).EndInit();
  2461. ((System.ComponentModel.ISupportInitialize)(this.CheckINQTY.Properties)).EndInit();
  2462. ((System.ComponentModel.ISupportInitialize)(this.UpdateTimeSpan)).EndInit();
  2463. this.PageDeviceData.ResumeLayout(false);
  2464. ((System.ComponentModel.ISupportInitialize)(this.GridDeviceData)).EndInit();
  2465. ((System.ComponentModel.ISupportInitialize)(this.GridViewDeviceData)).EndInit();
  2466. this.ResumeLayout(false);
  2467. this.PerformLayout();
  2468. }
  2469. #endregion
  2470. private DevExpress.XtraBars.Ribbon.RibbonControl RibbonNav;
  2471. private DevExpress.XtraBars.BarButtonItem ButtonDeviceList;
  2472. private DevExpress.XtraBars.Ribbon.RibbonPage DeviceInf;
  2473. private DevExpress.XtraBars.Ribbon.RibbonPageGroup RibDeviceInf;
  2474. private DevExpress.XtraTab.XtraTabControl MainTabControl;
  2475. private DevExpress.XtraBars.BarButtonItem ButtonDeviceNetSetting;
  2476. private DevExpress.XtraBars.Ribbon.RibbonPage DeviceCommandSetting;
  2477. private DevExpress.XtraBars.BarButtonItem ButtonCommandSet;
  2478. private DevExpress.XtraBars.Ribbon.RibbonPageGroup RibDeviceCommand;
  2479. private DevExpress.XtraTab.XtraTabPage PageDeviceList;
  2480. private DevExpress.XtraTab.XtraTabPage PageCommandSet;
  2481. private DevExpress.XtraTab.XtraTabPage PageDeviceNetSetting;
  2482. private AutoDataGridControl GridDeviceList;
  2483. private DevExpress.XtraBars.BarButtonItem ButtonPollingSetting;
  2484. private DevExpress.XtraBars.BarButtonItem ButtionPolling;
  2485. private DevExpress.XtraTab.XtraTabPage PagePollingSetting;
  2486. private DevExpress.XtraTab.XtraTabPage PagePolling;
  2487. private DevExpress.XtraGrid.Columns.GridColumn de_id;
  2488. private DevExpress.XtraGrid.Columns.GridColumn de_code;
  2489. private DevExpress.XtraGrid.Columns.GridColumn de_name;
  2490. private DevExpress.XtraGrid.Columns.GridColumn de_runstatus;
  2491. private DevExpress.XtraGrid.Columns.GridColumn de_indate;
  2492. private DevExpress.XtraGrid.Columns.GridColumn de_spec;
  2493. private DevExpress.XtraGrid.Columns.GridColumn de_vendcode;
  2494. private DevExpress.XtraGrid.Columns.GridColumn de_vendname;
  2495. private DevExpress.XtraGrid.Columns.GridColumn de_address;
  2496. private DevExpress.XtraGrid.Columns.GridColumn de_wccode;
  2497. private AutoDataGridControl GridCommandSetting;
  2498. private DevExpress.XtraGrid.Columns.GridColumn dc_id;
  2499. private DevExpress.XtraGrid.Columns.GridColumn dc_code;
  2500. private DevExpress.XtraGrid.Columns.GridColumn dc_name;
  2501. private DevExpress.XtraGrid.Columns.GridColumn dc_value;
  2502. private AutoDataGridControl GridPolling;
  2503. private AutoDataGridControl GridPollingSetting;
  2504. private DevExpress.XtraGrid.Columns.GridColumn pl_id;
  2505. private DevExpress.XtraGrid.Columns.GridColumn pl_code;
  2506. private DevExpress.XtraGrid.Columns.GridColumn pl_name;
  2507. private DevExpress.XtraGrid.Columns.GridColumn pl_type;
  2508. private DevExpress.XtraGrid.Columns.GridColumn pl_dccode;
  2509. private DevExpress.XtraGrid.Columns.GridColumn pl_remark;
  2510. private DevExpress.XtraGrid.Columns.GridColumn dpc_id;
  2511. private DevExpress.XtraGrid.Columns.GridColumn dpc_decode;
  2512. private DevExpress.XtraGrid.Columns.GridColumn dpc_interval;
  2513. private DevExpress.XtraGrid.Columns.GridColumn dpc_dccode;
  2514. private DevExpress.XtraGrid.Columns.GridColumn dpc_function;
  2515. private DevExpress.XtraGrid.Columns.GridColumn dpc_enable;
  2516. private DevExpress.XtraGrid.Columns.GridColumn dpc_status;
  2517. private DevExpress.XtraGrid.Columns.GridColumn dpc_remark;
  2518. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit dpc_enableCheckEdit;
  2519. private CustomerControl.Button.ButtonSaveGrid ButtonSaveCommand;
  2520. private CustomerControl.Button.ButtonAddRow ButtonNewCommand;
  2521. private GridViewWithSerialNum GridViewDeviceList;
  2522. private GridViewWithSerialNum GridViewCommandSet;
  2523. private GridViewWithSerialNum GridViewPolling;
  2524. private GridViewWithSerialNum GridViewPollSetting;
  2525. private LabelControl Brand_label;
  2526. private ComboBoxEdit Brand;
  2527. private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit CheckEditCommandSet;
  2528. private CustomerControl.Button.ButtonDeleteRow ButtonDeleteCommand;
  2529. private CustomerControl.Button.ButtonDeleteRow ButtonDeletePolling;
  2530. private CustomerControl.Button.ButtonSaveGrid ButtonSavePolling;
  2531. private CustomerControl.Button.ButtonAddRow ButtonAddPolling;
  2532. private SimpleButton ButtonPausePolling;
  2533. private SimpleButton ButtonStartPolling;
  2534. private CustomerControl.Button.ButtonDeleteRow ButtonDeleteCommandSet;
  2535. private CustomerControl.Button.ButtonAddRow ButtonNewCommandSet;
  2536. private CustomerControl.Button.ButtonSaveGrid ButtonSaveCommandSet;
  2537. private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit PollingSetItemLookUpEdit;
  2538. private DevExpress.XtraGrid.Columns.GridColumn POLLSETTINGSTATUSCOLUMN;
  2539. private DevExpress.XtraGrid.Columns.GridColumn PollSettingCheckedColumn;
  2540. private DevExpress.XtraGrid.Columns.GridColumn CommandSetCheckedColumn;
  2541. private DevExpress.XtraGrid.Columns.GridColumn PollingCheckedColumn;
  2542. private DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit PollSettingItemSearchLookUpEdit;
  2543. private DevExpress.XtraGrid.Views.Grid.GridView PollSettingItemSearchLookUpEditView;
  2544. private DevExpress.XtraGrid.Columns.GridColumn gridColumn4;
  2545. private DevExpress.XtraGrid.Columns.GridColumn gridColumn5;
  2546. private DevExpress.XtraBars.BarButtonItem ButtonDeviceStatus;
  2547. private DevExpress.XtraBars.BarButtonItem ButtonWorkCenterStatus;
  2548. private AutoDataGridControl GridDeviceNetSetting;
  2549. private GridViewWithSerialNum GridViewDeviceNetSetting;
  2550. private DevExpress.XtraTab.XtraTabPage PageDeviceStatus;
  2551. private DevExpress.XtraTab.XtraTabPage PageWorkCenterStatus;
  2552. private DevExpress.XtraGrid.Columns.GridColumn dnc_id;
  2553. private DevExpress.XtraGrid.Columns.GridColumn dnc_decode;
  2554. private DevExpress.XtraGrid.Columns.GridColumn dnc_getway;
  2555. private DevExpress.XtraGrid.Columns.GridColumn dnc_upperip;
  2556. private DevExpress.XtraGrid.Columns.GridColumn dnc_port;
  2557. private DevExpress.XtraGrid.Columns.GridColumn dnc_mac;
  2558. private DevExpress.XtraGrid.Columns.GridColumn dnc_ip;
  2559. private DevExpress.XtraGrid.Columns.GridColumn dnc_type;
  2560. private CustomerControl.Button.ButtonDeleteRow ButtonDeleteNetConfig;
  2561. private CustomerControl.Button.ButtonAddRow ButtonAddNetConfig;
  2562. private CustomerControl.Button.ButtonSaveGrid ButtonSaveNetConfig;
  2563. private DevExpress.XtraGrid.Columns.GridColumn NetSettingCheckedColumn;
  2564. private DevExpress.XtraGrid.Columns.GridColumn gridColumn2;
  2565. private DevExpress.XtraGrid.Columns.GridColumn dc_sendcoding;
  2566. private DevExpress.XtraGrid.Columns.GridColumn dc_receivecoding;
  2567. private DevExpress.XtraEditors.Repository.RepositoryItemComboBox CommandSetRepositoryItemComboBox1;
  2568. private System.Windows.Forms.Timer TimerDeviceStatus;
  2569. private AutoDataGridControl GridWorkCenterStatus;
  2570. private GridViewWithSerialNum GridViewWorkCenterStatus;
  2571. private XtraScrollableControl PanelDeviceStatus;
  2572. private DevExpress.Utils.ToolTipController CommonTipController;
  2573. private LabelControl ComboxDeviceStatusWC_label;
  2574. private LabelControl ComboxDeviceStatusLC_label;
  2575. private CheckEdit CheckEditDeviceStatusEnable;
  2576. private ComboBoxEdit ComboxDeviceStatusLC;
  2577. private ComboBoxEdit ComboxDeviceStatusWC;
  2578. private LabelControl ComBoxDeviceListMan_label;
  2579. private ComboBoxEdit ComboxDeviceListWC;
  2580. private ComboBoxEdit ComboxDeviceListLC;
  2581. private LabelControl ComboxDeviceListLC_label;
  2582. private LabelControl ComboxDeviceListWC_label;
  2583. private SearchLookUpEdit ComBoxDeviceListMan;
  2584. private DevExpress.XtraGrid.Views.Grid.GridView searchLookUpEdit1View;
  2585. private DevExpress.XtraGrid.Columns.GridColumn em_code;
  2586. private DevExpress.XtraGrid.Columns.GridColumn em_name;
  2587. private DevExpress.XtraGrid.Columns.GridColumn de_inman;
  2588. private DevExpress.XtraGrid.Columns.GridColumn de_linecode;
  2589. private DevExpress.XtraGrid.Columns.GridColumn dc_typename;
  2590. private DevExpress.XtraGrid.Columns.GridColumn db_name;
  2591. private DevExpress.XtraGrid.Columns.GridColumn dpc_man;
  2592. private DevExpress.XtraGrid.Columns.GridColumn em_name1;
  2593. private DevExpress.XtraGrid.Columns.GridColumn dc_man;
  2594. private DevExpress.XtraGrid.Columns.GridColumn dc_date;
  2595. private DevExpress.XtraGrid.Columns.GridColumn de_stepcode;
  2596. private DevExpress.XtraGrid.Columns.GridColumn de_stepname;
  2597. private CustomerControl.Button.ButtonAddRow ButtonAddDevice;
  2598. private CustomerControl.Button.ButtonDeleteRow ButtonDeleteDevice;
  2599. private CustomerControl.Button.ButtonSaveGrid ButtonSaveDevice;
  2600. private DevExpress.XtraGrid.Columns.GridColumn DeviceListCheckedColumn;
  2601. private DevExpress.XtraGrid.Columns.GridColumn de_sourcecode;
  2602. private DevExpress.XtraEditors.Repository.RepositoryItemDateEdit repositoryItemDateEdit1;
  2603. private DevExpress.XtraGrid.Columns.GridColumn dpc_dename;
  2604. private System.Windows.Forms.Timer TimerUpdateDevice;
  2605. private DevExpress.XtraGrid.Columns.GridColumn dc_dataindex;
  2606. private DevExpress.XtraGrid.Columns.GridColumn de_item1;
  2607. private DevExpress.XtraGrid.Columns.GridColumn de_item2;
  2608. private DevExpress.XtraGrid.Columns.GridColumn de_item3;
  2609. private DevExpress.XtraEditors.Repository.RepositoryItemComboBox DataItemRepositoryItemComboBox1;
  2610. private DevExpress.XtraGrid.Columns.GridColumn dc_type;
  2611. private DevExpress.XtraBars.BarButtonItem ButtonDeviceRunLog;
  2612. private DevExpress.XtraTab.XtraTabPage PageDeviceRunLog;
  2613. private AutoDataGridControl GridDeviceRunLog;
  2614. private GridViewWithSerialNum GirdViewDeviceRunLog;
  2615. private DevExpress.XtraGrid.Columns.GridColumn 主键;
  2616. private DevExpress.XtraGrid.Columns.GridColumn drr_decode;
  2617. private DevExpress.XtraGrid.Columns.GridColumn drr_dename;
  2618. private DevExpress.XtraGrid.Columns.GridColumn drr_command;
  2619. private DevExpress.XtraGrid.Columns.GridColumn drr_date;
  2620. private DevExpress.XtraGrid.Columns.GridColumn drr_commandfrom;
  2621. private DevExpress.XtraGrid.Columns.GridColumn drr_doman;
  2622. private DevExpress.XtraGrid.Columns.GridColumn drr_remark;
  2623. private LabelControl LabelDrrDeCode;
  2624. private SimpleButton ButtonSearchDeviceRunLog;
  2625. private TextEdit TextDrrDeCode;
  2626. private DevExpress.XtraBars.BarButtonItem ButtonClientParam;
  2627. private DevExpress.XtraTab.XtraTabPage PageClientParam;
  2628. private System.Windows.Forms.NumericUpDown UpdateTimeSpan;
  2629. private System.Windows.Forms.Label label1;
  2630. private SimpleButton ButtonSaveClientParam;
  2631. private DevExpress.XtraGrid.Views.Grid.GridView repositoryItemSearchLookUpEdit1View;
  2632. private DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit PollSettingDeviceSearchLookUpEdit;
  2633. private System.Windows.Forms.Timer TimerUpdateSQL;
  2634. private ComboBoxEdit ComboxDeviceDepartment;
  2635. private ComboBoxEdit ComboxDeviceFloor;
  2636. private LabelControl label_ComboxDeviceFloor;
  2637. private LabelControl label_ComboxDeviceDepartment;
  2638. private DevExpress.XtraGrid.Columns.GridColumn de_currentcentercode;
  2639. private DevExpress.XtraGrid.Columns.GridColumn de_currentcentername;
  2640. private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
  2641. private DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit DeviceItemSearchLookUpEdit;
  2642. private DevExpress.XtraBars.BarButtonItem ButtonDeviceData;
  2643. private DevExpress.XtraTab.XtraTabPage PageDeviceData;
  2644. private UAS_PLCDataReader.CustomerControl.AutoDataGridControl.AutoDataGridControl GridDeviceData;
  2645. private UAS_PLCDataReader.CustomerControl.GridViewWithSerialNum.GridViewWithSerialNum GridViewDeviceData;
  2646. private DevExpress.XtraGrid.Columns.GridColumn dr_decode;
  2647. private DevExpress.XtraGrid.Columns.GridColumn dr_dename;
  2648. private DevExpress.XtraGrid.Columns.GridColumn dr_runstatus;
  2649. private DevExpress.XtraGrid.Columns.GridColumn dr_qty;
  2650. private DevExpress.XtraGrid.Columns.GridColumn dr_inqty;
  2651. private DevExpress.XtraGrid.Columns.GridColumn de_item4;
  2652. private DevExpress.XtraGrid.Columns.GridColumn de_item5;
  2653. private DevExpress.XtraGrid.Columns.GridColumn de_item6;
  2654. private DevExpress.XtraGrid.Columns.GridColumn de_item7;
  2655. private DevExpress.XtraGrid.Columns.GridColumn de_item8;
  2656. private DevExpress.XtraGrid.Columns.GridColumn de_item9;
  2657. private DevExpress.XtraGrid.Columns.GridColumn de_item10;
  2658. private DevExpress.XtraGrid.Columns.GridColumn de_name1;
  2659. private DevExpress.XtraGrid.Columns.GridColumn dr_value1;
  2660. private DevExpress.XtraGrid.Columns.GridColumn dr_value2;
  2661. private DevExpress.XtraGrid.Columns.GridColumn dr_value3;
  2662. private DevExpress.XtraGrid.Columns.GridColumn dr_value4;
  2663. private DevExpress.XtraGrid.Columns.GridColumn dr_value5;
  2664. private DevExpress.XtraGrid.Columns.GridColumn dr_value6;
  2665. private DevExpress.XtraGrid.Columns.GridColumn dr_value7;
  2666. private DevExpress.XtraGrid.Columns.GridColumn dr_value8;
  2667. private DevExpress.XtraGrid.Columns.GridColumn dr_value9;
  2668. private DevExpress.XtraGrid.Columns.GridColumn dr_value10;
  2669. private CustomerControl.Button.ButtonDeleteRow ButtonRefreshDeviceData;
  2670. private System.Windows.Forms.Label label2;
  2671. private CheckEdit CheckOUTQTY;
  2672. private CheckEdit CheckPARAM;
  2673. private CheckEdit CheckINQTY;
  2674. }
  2675. }