Main.Designer.cs 122 KB

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