Main.Designer.cs 106 KB

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