Main.Designer.cs 144 KB

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