Main.Designer.cs 149 KB

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