Main.Designer.cs 116 KB

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