FormCentralController.Designer.cs 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614
  1. namespace centralController
  2. {
  3. partial class centralController
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(centralController));
  31. this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
  32. this.dockSite4 = new DevComponents.DotNetBar.DockSite();
  33. this.dockSite_mainView = new DevComponents.DotNetBar.DockSite();
  34. this.bar_mainWin = new DevComponents.DotNetBar.Bar();
  35. this.NumMachineMonitorPanel = new DevComponents.DotNetBar.PanelDockContainer();
  36. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  37. this.paymentPanel = new DevComponents.DotNetBar.PanelDockContainer();
  38. this.ParkingSpaceMonitorPanel = new DevComponents.DotNetBar.PanelDockContainer();
  39. this.testPanel = new DevComponents.DotNetBar.PanelDockContainer();
  40. this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
  41. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  42. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  43. this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
  44. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  45. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  46. this.button2 = new System.Windows.Forms.Button();
  47. this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
  48. this.button1 = new System.Windows.Forms.Button();
  49. this.textBox2 = new System.Windows.Forms.TextBox();
  50. this.textBox1 = new System.Windows.Forms.TextBox();
  51. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  52. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  53. this.labelX1 = new DevComponents.DotNetBar.LabelX();
  54. this.dci_NumMachine = new DevComponents.DotNetBar.DockContainerItem();
  55. this.dci_payment = new DevComponents.DotNetBar.DockContainerItem();
  56. this.dci_ParkingSpace = new DevComponents.DotNetBar.DockContainerItem();
  57. this.dci_Test = new DevComponents.DotNetBar.DockContainerItem();
  58. this.bar_bottom = new DevComponents.DotNetBar.Bar();
  59. this.RecordsMonitorPanel = new DevComponents.DotNetBar.PanelDockContainer();
  60. this.dgvx_parkingRecords = new DevComponents.DotNetBar.Controls.DataGridViewX();
  61. this.parkingRecordsID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  62. this.userID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.numberPlate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  64. this.parkingSpaceID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  65. this.realParkTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  66. this.realGetTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  67. this.receiptNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
  68. this.parkingPrice = new System.Windows.Forms.DataGridViewTextBoxColumn();
  69. this.paymentStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
  70. this.dci_ParkingRecords = new DevComponents.DotNetBar.DockContainerItem();
  71. this.bar_side = new DevComponents.DotNetBar.Bar();
  72. this.terminalMonitorPanel = new DevComponents.DotNetBar.PanelDockContainer();
  73. this.flp_Term = new System.Windows.Forms.FlowLayoutPanel();
  74. this.dci_terminal = new DevComponents.DotNetBar.DockContainerItem();
  75. this.dockSite1 = new DevComponents.DotNetBar.DockSite();
  76. this.dockSite_notification = new DevComponents.DotNetBar.DockSite();
  77. this.bar_notification = new DevComponents.DotNetBar.Bar();
  78. this.warningPanel = new DevComponents.DotNetBar.PanelDockContainer();
  79. this.rtb_notification = new System.Windows.Forms.RichTextBox();
  80. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  81. this.dci_warning = new DevComponents.DotNetBar.DockContainerItem();
  82. this.dockSite8 = new DevComponents.DotNetBar.DockSite();
  83. this.dockSite5 = new DevComponents.DotNetBar.DockSite();
  84. this.dockSite6 = new DevComponents.DotNetBar.DockSite();
  85. this.dockSite_menu = new DevComponents.DotNetBar.DockSite();
  86. this.bar_Menu = new DevComponents.DotNetBar.Bar();
  87. this.btn_system = new DevComponents.DotNetBar.ButtonItem();
  88. this.btn_login = new DevComponents.DotNetBar.ButtonItem();
  89. this.btn_logout = new DevComponents.DotNetBar.ButtonItem();
  90. this.btn_exit = new DevComponents.DotNetBar.ButtonItem();
  91. this.btn_files = new DevComponents.DotNetBar.ButtonItem();
  92. this.btn_openFile = new DevComponents.DotNetBar.ButtonItem();
  93. this.btn_advertUpdate = new DevComponents.DotNetBar.ButtonItem();
  94. this.btn_recordManagement = new DevComponents.DotNetBar.ButtonItem();
  95. this.btn_exportRecords = new DevComponents.DotNetBar.ButtonItem();
  96. this.btn_setScheme = new DevComponents.DotNetBar.ButtonItem();
  97. this.btn_views = new DevComponents.DotNetBar.ButtonItem();
  98. this.btn_parkingSpace = new DevComponents.DotNetBar.ButtonItem();
  99. this.btn_numMachine = new DevComponents.DotNetBar.ButtonItem();
  100. this.btn_payment = new DevComponents.DotNetBar.ButtonItem();
  101. this.btn_test = new DevComponents.DotNetBar.ButtonItem();
  102. this.btn_terminals = new DevComponents.DotNetBar.ButtonItem();
  103. this.btn_records = new DevComponents.DotNetBar.ButtonItem();
  104. this.btn_devices = new DevComponents.DotNetBar.ButtonItem();
  105. this.btn_linkPLC = new DevComponents.DotNetBar.ButtonItem();
  106. this.btn_linkWeb = new DevComponents.DotNetBar.ButtonItem();
  107. this.btn_PLCConf = new DevComponents.DotNetBar.ButtonItem();
  108. this.btn_numMachineConf = new DevComponents.DotNetBar.ButtonItem();
  109. this.btn_support = new DevComponents.DotNetBar.ButtonItem();
  110. this.btn_sysInfo = new DevComponents.DotNetBar.ButtonItem();
  111. this.btn_about = new DevComponents.DotNetBar.ButtonItem();
  112. this.bar_shortcut = new DevComponents.DotNetBar.Bar();
  113. this.panel_freeSpace = new System.Windows.Forms.Panel();
  114. this.lbx_freeSpace = new DevComponents.DotNetBar.LabelX();
  115. this.shortcut_login = new DevComponents.DotNetBar.ButtonItem();
  116. this.shortcut_logout = new DevComponents.DotNetBar.ButtonItem();
  117. this.shortcut_sysInfo = new DevComponents.DotNetBar.ButtonItem();
  118. this.shortcut_about = new DevComponents.DotNetBar.ButtonItem();
  119. this.shortcut_close = new DevComponents.DotNetBar.ButtonItem();
  120. this.dockSite3 = new DevComponents.DotNetBar.DockSite();
  121. this.panelDockContainer10 = new DevComponents.DotNetBar.PanelDockContainer();
  122. this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
  123. this.groupPanel5 = new DevComponents.DotNetBar.Controls.GroupPanel();
  124. this.dci_PaymentRecords = new DevComponents.DotNetBar.DockContainerItem();
  125. this.panelDockContainer7 = new DevComponents.DotNetBar.PanelDockContainer();
  126. this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
  127. this.panelDockContainer8 = new DevComponents.DotNetBar.PanelDockContainer();
  128. this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
  129. this.dci_devStatus = new DevComponents.DotNetBar.DockContainerItem();
  130. this.pdc_devStatus = new DevComponents.DotNetBar.PanelDockContainer();
  131. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  132. this.lbx_PLC = new DevComponents.DotNetBar.LabelX();
  133. this.lbx_web = new DevComponents.DotNetBar.LabelX();
  134. this.lbx_PLCStatus = new DevComponents.DotNetBar.LabelX();
  135. this.lbx_webStatus = new DevComponents.DotNetBar.LabelX();
  136. this.panel1 = new System.Windows.Forms.Panel();
  137. this.dockSite_mainView.SuspendLayout();
  138. ((System.ComponentModel.ISupportInitialize)(this.bar_mainWin)).BeginInit();
  139. this.bar_mainWin.SuspendLayout();
  140. this.NumMachineMonitorPanel.SuspendLayout();
  141. this.testPanel.SuspendLayout();
  142. this.groupPanel2.SuspendLayout();
  143. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  144. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  145. this.groupPanel1.SuspendLayout();
  146. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  147. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  148. this.tableLayoutPanel1.SuspendLayout();
  149. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  150. ((System.ComponentModel.ISupportInitialize)(this.bar_bottom)).BeginInit();
  151. this.bar_bottom.SuspendLayout();
  152. this.RecordsMonitorPanel.SuspendLayout();
  153. ((System.ComponentModel.ISupportInitialize)(this.dgvx_parkingRecords)).BeginInit();
  154. ((System.ComponentModel.ISupportInitialize)(this.bar_side)).BeginInit();
  155. this.bar_side.SuspendLayout();
  156. this.terminalMonitorPanel.SuspendLayout();
  157. this.dockSite_notification.SuspendLayout();
  158. ((System.ComponentModel.ISupportInitialize)(this.bar_notification)).BeginInit();
  159. this.bar_notification.SuspendLayout();
  160. this.warningPanel.SuspendLayout();
  161. this.dockSite_menu.SuspendLayout();
  162. ((System.ComponentModel.ISupportInitialize)(this.bar_Menu)).BeginInit();
  163. ((System.ComponentModel.ISupportInitialize)(this.bar_shortcut)).BeginInit();
  164. this.bar_shortcut.SuspendLayout();
  165. this.panel_freeSpace.SuspendLayout();
  166. this.pdc_devStatus.SuspendLayout();
  167. this.tableLayoutPanel2.SuspendLayout();
  168. this.panel1.SuspendLayout();
  169. this.SuspendLayout();
  170. //
  171. // dotNetBarManager1
  172. //
  173. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
  174. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
  175. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
  176. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
  177. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
  178. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
  179. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
  180. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
  181. this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
  182. this.dotNetBarManager1.BottomDockSite = this.dockSite4;
  183. this.dotNetBarManager1.EnableFullSizeDock = false;
  184. this.dotNetBarManager1.FillDockSite = this.dockSite_mainView;
  185. this.dotNetBarManager1.LeftDockSite = this.dockSite1;
  186. this.dotNetBarManager1.ParentForm = this;
  187. this.dotNetBarManager1.RightDockSite = this.dockSite_notification;
  188. this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
  189. this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
  190. this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
  191. this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
  192. this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite_menu;
  193. this.dotNetBarManager1.TopDockSite = this.dockSite3;
  194. //
  195. // dockSite4
  196. //
  197. this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  198. this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
  199. this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
  200. this.dockSite4.Location = new System.Drawing.Point(0, 668);
  201. this.dockSite4.Name = "dockSite4";
  202. this.dockSite4.Size = new System.Drawing.Size(1194, 0);
  203. this.dockSite4.TabIndex = 3;
  204. this.dockSite4.TabStop = false;
  205. //
  206. // dockSite_mainView
  207. //
  208. this.dockSite_mainView.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  209. this.dockSite_mainView.Controls.Add(this.bar_mainWin);
  210. this.dockSite_mainView.Controls.Add(this.bar_bottom);
  211. this.dockSite_mainView.Controls.Add(this.bar_side);
  212. this.dockSite_mainView.Dock = System.Windows.Forms.DockStyle.Fill;
  213. this.dockSite_mainView.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
  214. ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
  215. ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar_mainWin, 503, 326))),
  216. ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar_side, 360, 326)))}, DevComponents.DotNetBar.eOrientation.Horizontal))),
  217. ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar_bottom, 871, 181)))}, DevComponents.DotNetBar.eOrientation.Vertical);
  218. this.dockSite_mainView.Location = new System.Drawing.Point(0, 121);
  219. this.dockSite_mainView.Name = "dockSite_mainView";
  220. this.dockSite_mainView.Size = new System.Drawing.Size(866, 547);
  221. this.dockSite_mainView.TabIndex = 8;
  222. this.dockSite_mainView.TabStop = false;
  223. //
  224. // bar_mainWin
  225. //
  226. this.bar_mainWin.AccessibleDescription = "DotNetBar Bar (bar_mainWin)";
  227. this.bar_mainWin.AccessibleName = "DotNetBar Bar";
  228. this.bar_mainWin.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  229. this.bar_mainWin.AlwaysDisplayDockTab = true;
  230. this.bar_mainWin.CanCustomize = false;
  231. this.bar_mainWin.CanDockBottom = false;
  232. this.bar_mainWin.CanDockDocument = true;
  233. this.bar_mainWin.CanDockLeft = false;
  234. this.bar_mainWin.CanDockRight = false;
  235. this.bar_mainWin.CanDockTop = false;
  236. this.bar_mainWin.CanHide = true;
  237. this.bar_mainWin.Controls.Add(this.pdc_devStatus);
  238. this.bar_mainWin.Controls.Add(this.paymentPanel);
  239. this.bar_mainWin.Controls.Add(this.NumMachineMonitorPanel);
  240. this.bar_mainWin.Controls.Add(this.ParkingSpaceMonitorPanel);
  241. this.bar_mainWin.Controls.Add(this.testPanel);
  242. this.bar_mainWin.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
  243. this.bar_mainWin.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  244. this.bar_mainWin.IsMaximized = false;
  245. this.bar_mainWin.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  246. this.dci_NumMachine,
  247. this.dci_payment,
  248. this.dci_ParkingSpace,
  249. this.dci_Test,
  250. this.dci_devStatus});
  251. this.bar_mainWin.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
  252. this.bar_mainWin.Location = new System.Drawing.Point(0, 0);
  253. this.bar_mainWin.Name = "bar_mainWin";
  254. this.bar_mainWin.SelectedDockTab = 4;
  255. this.bar_mainWin.SingleLineColor = System.Drawing.SystemColors.ControlDarkDark;
  256. this.bar_mainWin.Size = new System.Drawing.Size(503, 326);
  257. this.bar_mainWin.Stretch = true;
  258. this.bar_mainWin.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
  259. this.bar_mainWin.TabIndex = 0;
  260. this.bar_mainWin.TabNavigation = true;
  261. this.bar_mainWin.TabStop = false;
  262. //
  263. // NumMachineMonitorPanel
  264. //
  265. this.NumMachineMonitorPanel.Controls.Add(this.flowLayoutPanel1);
  266. this.NumMachineMonitorPanel.DisabledBackColor = System.Drawing.Color.Empty;
  267. this.NumMachineMonitorPanel.Location = new System.Drawing.Point(3, 28);
  268. this.NumMachineMonitorPanel.Name = "NumMachineMonitorPanel";
  269. this.NumMachineMonitorPanel.Size = new System.Drawing.Size(497, 295);
  270. this.NumMachineMonitorPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
  271. this.NumMachineMonitorPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  272. this.NumMachineMonitorPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  273. this.NumMachineMonitorPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  274. this.NumMachineMonitorPanel.Style.GradientAngle = 90;
  275. this.NumMachineMonitorPanel.TabIndex = 0;
  276. //
  277. // flowLayoutPanel1
  278. //
  279. this.flowLayoutPanel1.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
  280. this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  281. this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  282. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  283. this.flowLayoutPanel1.Size = new System.Drawing.Size(497, 295);
  284. this.flowLayoutPanel1.TabIndex = 1;
  285. this.flowLayoutPanel1.Resize += new System.EventHandler(this.flowLayoutPanel1_Resize);
  286. //
  287. // paymentPanel
  288. //
  289. this.paymentPanel.DisabledBackColor = System.Drawing.Color.Empty;
  290. this.paymentPanel.Location = new System.Drawing.Point(3, 28);
  291. this.paymentPanel.Name = "paymentPanel";
  292. this.paymentPanel.Size = new System.Drawing.Size(497, 295);
  293. this.paymentPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
  294. this.paymentPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  295. this.paymentPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  296. this.paymentPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  297. this.paymentPanel.Style.GradientAngle = 90;
  298. this.paymentPanel.TabIndex = 24;
  299. //
  300. // ParkingSpaceMonitorPanel
  301. //
  302. this.ParkingSpaceMonitorPanel.DisabledBackColor = System.Drawing.Color.Empty;
  303. this.ParkingSpaceMonitorPanel.Location = new System.Drawing.Point(3, 28);
  304. this.ParkingSpaceMonitorPanel.Name = "ParkingSpaceMonitorPanel";
  305. this.ParkingSpaceMonitorPanel.Size = new System.Drawing.Size(497, 295);
  306. this.ParkingSpaceMonitorPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
  307. this.ParkingSpaceMonitorPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  308. this.ParkingSpaceMonitorPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  309. this.ParkingSpaceMonitorPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  310. this.ParkingSpaceMonitorPanel.Style.GradientAngle = 90;
  311. this.ParkingSpaceMonitorPanel.TabIndex = 9;
  312. //
  313. // testPanel
  314. //
  315. this.testPanel.Controls.Add(this.groupPanel2);
  316. this.testPanel.Controls.Add(this.groupPanel1);
  317. this.testPanel.Controls.Add(this.button2);
  318. this.testPanel.Controls.Add(this.dateTimePicker1);
  319. this.testPanel.Controls.Add(this.button1);
  320. this.testPanel.Controls.Add(this.textBox2);
  321. this.testPanel.Controls.Add(this.textBox1);
  322. this.testPanel.Controls.Add(this.tableLayoutPanel1);
  323. this.testPanel.DisabledBackColor = System.Drawing.Color.Empty;
  324. this.testPanel.Location = new System.Drawing.Point(3, 28);
  325. this.testPanel.Name = "testPanel";
  326. this.testPanel.Size = new System.Drawing.Size(497, 295);
  327. this.testPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
  328. this.testPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  329. this.testPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  330. this.testPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  331. this.testPanel.Style.GradientAngle = 90;
  332. this.testPanel.TabIndex = 38;
  333. //
  334. // groupPanel2
  335. //
  336. this.groupPanel2.BackColor = System.Drawing.SystemColors.Highlight;
  337. this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
  338. this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
  339. this.groupPanel2.ColorTable = DevComponents.DotNetBar.Controls.ePanelColorTable.Green;
  340. this.groupPanel2.Controls.Add(this.pictureBox4);
  341. this.groupPanel2.Controls.Add(this.pictureBox5);
  342. this.groupPanel2.DisabledBackColor = System.Drawing.Color.Empty;
  343. this.groupPanel2.Location = new System.Drawing.Point(387, 72);
  344. this.groupPanel2.Name = "groupPanel2";
  345. this.groupPanel2.Size = new System.Drawing.Size(110, 115);
  346. //
  347. //
  348. //
  349. this.groupPanel2.Style.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(217)))), ((int)(((byte)(185)))));
  350. this.groupPanel2.Style.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(191)))), ((int)(((byte)(139)))));
  351. this.groupPanel2.Style.BackColorGradientAngle = 90;
  352. this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
  353. this.groupPanel2.Style.BorderBottomWidth = 1;
  354. this.groupPanel2.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(114)))), ((int)(((byte)(164)))), ((int)(((byte)(90)))));
  355. this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
  356. this.groupPanel2.Style.BorderLeftWidth = 1;
  357. this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
  358. this.groupPanel2.Style.BorderRightWidth = 1;
  359. this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
  360. this.groupPanel2.Style.BorderTopWidth = 1;
  361. this.groupPanel2.Style.CornerDiameter = 4;
  362. this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
  363. this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
  364. this.groupPanel2.Style.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(74)))), ((int)(((byte)(31)))));
  365. this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
  366. //
  367. //
  368. //
  369. this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  370. //
  371. //
  372. //
  373. this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  374. this.groupPanel2.TabIndex = 15;
  375. this.groupPanel2.Text = "地面车位2";
  376. //
  377. // pictureBox4
  378. //
  379. this.pictureBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  380. | System.Windows.Forms.AnchorStyles.Right)));
  381. this.pictureBox4.Image = global::centralController.Properties.Resources.car;
  382. this.pictureBox4.InitialImage = null;
  383. this.pictureBox4.Location = new System.Drawing.Point(25, 48);
  384. this.pictureBox4.Name = "pictureBox4";
  385. this.pictureBox4.Size = new System.Drawing.Size(57, 43);
  386. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  387. this.pictureBox4.TabIndex = 0;
  388. this.pictureBox4.TabStop = false;
  389. //
  390. // pictureBox5
  391. //
  392. this.pictureBox5.Anchor = System.Windows.Forms.AnchorStyles.Top;
  393. this.pictureBox5.Image = global::centralController.Properties.Resources.numMachine;
  394. this.pictureBox5.InitialImage = null;
  395. this.pictureBox5.Location = new System.Drawing.Point(30, 1);
  396. this.pictureBox5.Name = "pictureBox5";
  397. this.pictureBox5.Size = new System.Drawing.Size(50, 29);
  398. this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  399. this.pictureBox5.TabIndex = 14;
  400. this.pictureBox5.TabStop = false;
  401. //
  402. // groupPanel1
  403. //
  404. this.groupPanel1.BackColor = System.Drawing.SystemColors.AppWorkspace;
  405. this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
  406. this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
  407. this.groupPanel1.ColorTable = DevComponents.DotNetBar.Controls.ePanelColorTable.Red;
  408. this.groupPanel1.Controls.Add(this.pictureBox2);
  409. this.groupPanel1.Controls.Add(this.pictureBox3);
  410. this.groupPanel1.DisabledBackColor = System.Drawing.Color.Empty;
  411. this.groupPanel1.Location = new System.Drawing.Point(241, 128);
  412. this.groupPanel1.Name = "groupPanel1";
  413. this.groupPanel1.Size = new System.Drawing.Size(105, 107);
  414. //
  415. //
  416. //
  417. this.groupPanel1.Style.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))));
  418. this.groupPanel1.Style.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
  419. this.groupPanel1.Style.BackColorGradientAngle = 90;
  420. this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
  421. this.groupPanel1.Style.BorderBottomWidth = 1;
  422. this.groupPanel1.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(149)))), ((int)(((byte)(55)))), ((int)(((byte)(52)))));
  423. this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
  424. this.groupPanel1.Style.BorderLeftWidth = 1;
  425. this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
  426. this.groupPanel1.Style.BorderRightWidth = 1;
  427. this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
  428. this.groupPanel1.Style.BorderTopWidth = 1;
  429. this.groupPanel1.Style.CornerDiameter = 4;
  430. this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
  431. this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
  432. this.groupPanel1.Style.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(36)))), ((int)(((byte)(35)))));
  433. this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
  434. //
  435. //
  436. //
  437. this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  438. //
  439. //
  440. //
  441. this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  442. this.groupPanel1.TabIndex = 13;
  443. this.groupPanel1.Text = "地面车位2";
  444. //
  445. // pictureBox2
  446. //
  447. this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  448. | System.Windows.Forms.AnchorStyles.Right)));
  449. this.pictureBox2.Image = global::centralController.Properties.Resources.car;
  450. this.pictureBox2.InitialImage = null;
  451. this.pictureBox2.Location = new System.Drawing.Point(23, 45);
  452. this.pictureBox2.Name = "pictureBox2";
  453. this.pictureBox2.Size = new System.Drawing.Size(56, 43);
  454. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  455. this.pictureBox2.TabIndex = 0;
  456. this.pictureBox2.TabStop = false;
  457. //
  458. // pictureBox3
  459. //
  460. this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  461. | System.Windows.Forms.AnchorStyles.Right)));
  462. this.pictureBox3.Cursor = System.Windows.Forms.Cursors.Default;
  463. this.pictureBox3.Image = global::centralController.Properties.Resources.numMachine;
  464. this.pictureBox3.InitialImage = null;
  465. this.pictureBox3.Location = new System.Drawing.Point(27, 1);
  466. this.pictureBox3.Name = "pictureBox3";
  467. this.pictureBox3.Size = new System.Drawing.Size(50, 29);
  468. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  469. this.pictureBox3.TabIndex = 14;
  470. this.pictureBox3.TabStop = false;
  471. //
  472. // button2
  473. //
  474. this.button2.Location = new System.Drawing.Point(271, 44);
  475. this.button2.Name = "button2";
  476. this.button2.Size = new System.Drawing.Size(75, 23);
  477. this.button2.TabIndex = 8;
  478. this.button2.Text = "button2";
  479. this.button2.UseVisualStyleBackColor = true;
  480. this.button2.Click += new System.EventHandler(this.button2_Click);
  481. //
  482. // dateTimePicker1
  483. //
  484. this.dateTimePicker1.Location = new System.Drawing.Point(375, 13);
  485. this.dateTimePicker1.Name = "dateTimePicker1";
  486. this.dateTimePicker1.Size = new System.Drawing.Size(200, 21);
  487. this.dateTimePicker1.TabIndex = 7;
  488. //
  489. // button1
  490. //
  491. this.button1.Location = new System.Drawing.Point(151, 43);
  492. this.button1.Name = "button1";
  493. this.button1.Size = new System.Drawing.Size(75, 23);
  494. this.button1.TabIndex = 6;
  495. this.button1.Text = "button1";
  496. this.button1.UseVisualStyleBackColor = true;
  497. this.button1.Click += new System.EventHandler(this.button1_Click);
  498. //
  499. // textBox2
  500. //
  501. this.textBox2.Location = new System.Drawing.Point(205, 16);
  502. this.textBox2.Name = "textBox2";
  503. this.textBox2.Size = new System.Drawing.Size(100, 21);
  504. this.textBox2.TabIndex = 5;
  505. //
  506. // textBox1
  507. //
  508. this.textBox1.Location = new System.Drawing.Point(74, 16);
  509. this.textBox1.Name = "textBox1";
  510. this.textBox1.Size = new System.Drawing.Size(100, 21);
  511. this.textBox1.TabIndex = 4;
  512. //
  513. // tableLayoutPanel1
  514. //
  515. this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  516. this.tableLayoutPanel1.ColumnCount = 1;
  517. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  518. this.tableLayoutPanel1.Controls.Add(this.pictureBox1, 0, 1);
  519. this.tableLayoutPanel1.Controls.Add(this.labelX1, 0, 0);
  520. this.tableLayoutPanel1.Location = new System.Drawing.Point(9, 72);
  521. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  522. this.tableLayoutPanel1.RowCount = 2;
  523. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
  524. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 80F));
  525. this.tableLayoutPanel1.Size = new System.Drawing.Size(185, 168);
  526. this.tableLayoutPanel1.TabIndex = 3;
  527. //
  528. // pictureBox1
  529. //
  530. this.pictureBox1.Location = new System.Drawing.Point(3, 36);
  531. this.pictureBox1.Name = "pictureBox1";
  532. this.pictureBox1.Size = new System.Drawing.Size(179, 127);
  533. this.pictureBox1.TabIndex = 2;
  534. this.pictureBox1.TabStop = false;
  535. //
  536. // labelX1
  537. //
  538. //
  539. //
  540. //
  541. this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  542. this.labelX1.Location = new System.Drawing.Point(3, 3);
  543. this.labelX1.Name = "labelX1";
  544. this.labelX1.Size = new System.Drawing.Size(179, 27);
  545. this.labelX1.TabIndex = 3;
  546. this.labelX1.Text = "label1\r\nlable2";
  547. this.labelX1.TextAlignment = System.Drawing.StringAlignment.Center;
  548. //
  549. // dci_NumMachine
  550. //
  551. this.dci_NumMachine.Control = this.NumMachineMonitorPanel;
  552. this.dci_NumMachine.Name = "dci_NumMachine";
  553. this.dci_NumMachine.Text = "号牌机监控";
  554. //
  555. // dci_payment
  556. //
  557. this.dci_payment.Control = this.paymentPanel;
  558. this.dci_payment.Name = "dci_payment";
  559. this.dci_payment.Text = "支付信息";
  560. //
  561. // dci_ParkingSpace
  562. //
  563. this.dci_ParkingSpace.Control = this.ParkingSpaceMonitorPanel;
  564. this.dci_ParkingSpace.Name = "dci_ParkingSpace";
  565. this.dci_ParkingSpace.Text = "车位状态";
  566. //
  567. // dci_Test
  568. //
  569. this.dci_Test.Control = this.testPanel;
  570. this.dci_Test.Name = "dci_Test";
  571. this.dci_Test.Text = "测试";
  572. //
  573. // bar_bottom
  574. //
  575. this.bar_bottom.AccessibleDescription = "DotNetBar Bar (bar_bottom)";
  576. this.bar_bottom.AccessibleName = "DotNetBar Bar";
  577. this.bar_bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  578. this.bar_bottom.AlwaysDisplayDockTab = true;
  579. this.bar_bottom.AutoHide = true;
  580. this.bar_bottom.CanDockBottom = false;
  581. this.bar_bottom.CanDockDocument = true;
  582. this.bar_bottom.CanDockLeft = false;
  583. this.bar_bottom.CanDockRight = false;
  584. this.bar_bottom.CanDockTop = false;
  585. this.bar_bottom.CanHide = true;
  586. this.bar_bottom.CanUndock = false;
  587. this.bar_bottom.Controls.Add(this.RecordsMonitorPanel);
  588. this.bar_bottom.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
  589. this.bar_bottom.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  590. this.bar_bottom.IsMaximized = false;
  591. this.bar_bottom.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  592. this.dci_ParkingRecords});
  593. this.bar_bottom.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
  594. this.bar_bottom.Location = new System.Drawing.Point(0, 329);
  595. this.bar_bottom.Name = "bar_bottom";
  596. this.bar_bottom.SelectedDockTab = 0;
  597. this.bar_bottom.Size = new System.Drawing.Size(866, 218);
  598. this.bar_bottom.Stretch = true;
  599. this.bar_bottom.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
  600. this.bar_bottom.TabIndex = 1;
  601. this.bar_bottom.TabStop = false;
  602. //
  603. // RecordsMonitorPanel
  604. //
  605. this.RecordsMonitorPanel.Controls.Add(this.dgvx_parkingRecords);
  606. this.RecordsMonitorPanel.DisabledBackColor = System.Drawing.Color.Empty;
  607. this.RecordsMonitorPanel.Location = new System.Drawing.Point(3, 28);
  608. this.RecordsMonitorPanel.Name = "RecordsMonitorPanel";
  609. this.RecordsMonitorPanel.Size = new System.Drawing.Size(860, 187);
  610. this.RecordsMonitorPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
  611. this.RecordsMonitorPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  612. this.RecordsMonitorPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  613. this.RecordsMonitorPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  614. this.RecordsMonitorPanel.Style.GradientAngle = 90;
  615. this.RecordsMonitorPanel.TabIndex = 13;
  616. //
  617. // dgvx_parkingRecords
  618. //
  619. this.dgvx_parkingRecords.BackgroundColor = System.Drawing.SystemColors.ActiveCaption;
  620. this.dgvx_parkingRecords.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  621. this.dgvx_parkingRecords.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  622. this.parkingRecordsID,
  623. this.userID,
  624. this.numberPlate,
  625. this.parkingSpaceID,
  626. this.realParkTime,
  627. this.realGetTime,
  628. this.receiptNum,
  629. this.parkingPrice,
  630. this.paymentStatus});
  631. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  632. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
  633. dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  634. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
  635. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  636. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
  637. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  638. this.dgvx_parkingRecords.DefaultCellStyle = dataGridViewCellStyle1;
  639. this.dgvx_parkingRecords.Dock = System.Windows.Forms.DockStyle.Fill;
  640. this.dgvx_parkingRecords.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
  641. this.dgvx_parkingRecords.Location = new System.Drawing.Point(0, 0);
  642. this.dgvx_parkingRecords.Name = "dgvx_parkingRecords";
  643. this.dgvx_parkingRecords.RowTemplate.Height = 23;
  644. this.dgvx_parkingRecords.Size = new System.Drawing.Size(860, 187);
  645. this.dgvx_parkingRecords.TabIndex = 0;
  646. //
  647. // parkingRecordsID
  648. //
  649. this.parkingRecordsID.HeaderText = "停车记录ID";
  650. this.parkingRecordsID.MaxInputLength = 11;
  651. this.parkingRecordsID.Name = "parkingRecordsID";
  652. this.parkingRecordsID.ReadOnly = true;
  653. this.parkingRecordsID.Width = 90;
  654. //
  655. // userID
  656. //
  657. this.userID.HeaderText = "用户ID";
  658. this.userID.MaxInputLength = 8;
  659. this.userID.Name = "userID";
  660. this.userID.ReadOnly = true;
  661. this.userID.Width = 70;
  662. //
  663. // numberPlate
  664. //
  665. this.numberPlate.HeaderText = "号牌";
  666. this.numberPlate.MaxInputLength = 9;
  667. this.numberPlate.Name = "numberPlate";
  668. this.numberPlate.ReadOnly = true;
  669. this.numberPlate.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  670. this.numberPlate.Width = 80;
  671. //
  672. // parkingSpaceID
  673. //
  674. this.parkingSpaceID.HeaderText = "车位编号";
  675. this.parkingSpaceID.MaxInputLength = 4;
  676. this.parkingSpaceID.Name = "parkingSpaceID";
  677. this.parkingSpaceID.ReadOnly = true;
  678. this.parkingSpaceID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  679. this.parkingSpaceID.Width = 80;
  680. //
  681. // realParkTime
  682. //
  683. this.realParkTime.HeaderText = "实际停入时间";
  684. this.realParkTime.MaxInputLength = 50;
  685. this.realParkTime.Name = "realParkTime";
  686. this.realParkTime.ReadOnly = true;
  687. this.realParkTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  688. this.realParkTime.Width = 140;
  689. //
  690. // realGetTime
  691. //
  692. this.realGetTime.HeaderText = "实际取出时间";
  693. this.realGetTime.MaxInputLength = 50;
  694. this.realGetTime.Name = "realGetTime";
  695. this.realGetTime.ReadOnly = true;
  696. this.realGetTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  697. this.realGetTime.Width = 140;
  698. //
  699. // receiptNum
  700. //
  701. this.receiptNum.HeaderText = "凭证号";
  702. this.receiptNum.MaxInputLength = 8;
  703. this.receiptNum.Name = "receiptNum";
  704. this.receiptNum.ReadOnly = true;
  705. this.receiptNum.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  706. //
  707. // parkingPrice
  708. //
  709. this.parkingPrice.HeaderText = "停车费用";
  710. this.parkingPrice.MaxInputLength = 11;
  711. this.parkingPrice.Name = "parkingPrice";
  712. this.parkingPrice.ReadOnly = true;
  713. this.parkingPrice.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  714. //
  715. // paymentStatus
  716. //
  717. this.paymentStatus.HeaderText = "收费状态";
  718. this.paymentStatus.MaxInputLength = 11;
  719. this.paymentStatus.Name = "paymentStatus";
  720. this.paymentStatus.ReadOnly = true;
  721. //
  722. // dci_ParkingRecords
  723. //
  724. this.dci_ParkingRecords.Control = this.RecordsMonitorPanel;
  725. this.dci_ParkingRecords.Name = "dci_ParkingRecords";
  726. this.dci_ParkingRecords.Text = "进出记录";
  727. //
  728. // bar_side
  729. //
  730. this.bar_side.AccessibleDescription = "DotNetBar Bar (bar_side)";
  731. this.bar_side.AccessibleName = "DotNetBar Bar";
  732. this.bar_side.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  733. this.bar_side.AlwaysDisplayDockTab = true;
  734. this.bar_side.CanDockBottom = false;
  735. this.bar_side.CanDockDocument = true;
  736. this.bar_side.CanDockLeft = false;
  737. this.bar_side.CanDockRight = false;
  738. this.bar_side.CanDockTop = false;
  739. this.bar_side.CanHide = true;
  740. this.bar_side.Controls.Add(this.terminalMonitorPanel);
  741. this.bar_side.DockTabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
  742. this.bar_side.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  743. this.bar_side.IsMaximized = false;
  744. this.bar_side.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  745. this.dci_terminal});
  746. this.bar_side.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
  747. this.bar_side.Location = new System.Drawing.Point(506, 0);
  748. this.bar_side.Name = "bar_side";
  749. this.bar_side.SelectedDockTab = 0;
  750. this.bar_side.Size = new System.Drawing.Size(360, 326);
  751. this.bar_side.Stretch = true;
  752. this.bar_side.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
  753. this.bar_side.TabIndex = 2;
  754. this.bar_side.TabStop = false;
  755. //
  756. // terminalMonitorPanel
  757. //
  758. this.terminalMonitorPanel.Controls.Add(this.flp_Term);
  759. this.terminalMonitorPanel.DisabledBackColor = System.Drawing.Color.Empty;
  760. this.terminalMonitorPanel.Location = new System.Drawing.Point(3, 28);
  761. this.terminalMonitorPanel.Name = "terminalMonitorPanel";
  762. this.terminalMonitorPanel.Size = new System.Drawing.Size(354, 295);
  763. this.terminalMonitorPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
  764. this.terminalMonitorPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  765. this.terminalMonitorPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  766. this.terminalMonitorPanel.Style.ForeColor.Color = System.Drawing.SystemColors.MenuHighlight;
  767. this.terminalMonitorPanel.Style.GradientAngle = 90;
  768. this.terminalMonitorPanel.TabIndex = 0;
  769. //
  770. // flp_Term
  771. //
  772. this.flp_Term.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  773. this.flp_Term.Dock = System.Windows.Forms.DockStyle.Fill;
  774. this.flp_Term.Location = new System.Drawing.Point(0, 0);
  775. this.flp_Term.Name = "flp_Term";
  776. this.flp_Term.Padding = new System.Windows.Forms.Padding(5);
  777. this.flp_Term.Size = new System.Drawing.Size(354, 295);
  778. this.flp_Term.TabIndex = 0;
  779. //
  780. // dci_terminal
  781. //
  782. this.dci_terminal.Control = this.terminalMonitorPanel;
  783. this.dci_terminal.Name = "dci_terminal";
  784. this.dci_terminal.Text = "地面车位监控";
  785. //
  786. // dockSite1
  787. //
  788. this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  789. this.dockSite1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  790. this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
  791. this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
  792. this.dockSite1.Location = new System.Drawing.Point(0, 0);
  793. this.dockSite1.Name = "dockSite1";
  794. this.dockSite1.Size = new System.Drawing.Size(0, 668);
  795. this.dockSite1.TabIndex = 0;
  796. this.dockSite1.TabStop = false;
  797. //
  798. // dockSite_notification
  799. //
  800. this.dockSite_notification.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  801. this.dockSite_notification.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  802. this.dockSite_notification.Controls.Add(this.bar_notification);
  803. this.dockSite_notification.Dock = System.Windows.Forms.DockStyle.Right;
  804. this.dockSite_notification.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
  805. ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.bar_notification, 325, 547)))}, DevComponents.DotNetBar.eOrientation.Vertical);
  806. this.dockSite_notification.Location = new System.Drawing.Point(866, 121);
  807. this.dockSite_notification.Name = "dockSite_notification";
  808. this.dockSite_notification.Size = new System.Drawing.Size(328, 547);
  809. this.dockSite_notification.TabIndex = 1;
  810. this.dockSite_notification.TabStop = false;
  811. //
  812. // bar_notification
  813. //
  814. this.bar_notification.AccessibleDescription = "DotNetBar Bar (bar_notification)";
  815. this.bar_notification.AccessibleName = "DotNetBar Bar";
  816. this.bar_notification.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  817. this.bar_notification.AutoSyncBarCaption = true;
  818. this.bar_notification.CloseSingleTab = true;
  819. this.bar_notification.Controls.Add(this.warningPanel);
  820. this.bar_notification.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  821. this.bar_notification.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
  822. this.bar_notification.IsMaximized = false;
  823. this.bar_notification.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  824. this.dci_warning});
  825. this.bar_notification.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
  826. this.bar_notification.Location = new System.Drawing.Point(3, 0);
  827. this.bar_notification.Name = "bar_notification";
  828. this.bar_notification.Size = new System.Drawing.Size(325, 547);
  829. this.bar_notification.Stretch = true;
  830. this.bar_notification.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
  831. this.bar_notification.TabIndex = 1;
  832. this.bar_notification.TabStop = false;
  833. this.bar_notification.Text = "警告与提示";
  834. //
  835. // warningPanel
  836. //
  837. this.warningPanel.Controls.Add(this.rtb_notification);
  838. this.warningPanel.Controls.Add(this.progressBar1);
  839. this.warningPanel.DisabledBackColor = System.Drawing.Color.Empty;
  840. this.warningPanel.Location = new System.Drawing.Point(3, 23);
  841. this.warningPanel.Name = "warningPanel";
  842. this.warningPanel.Size = new System.Drawing.Size(319, 521);
  843. this.warningPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
  844. this.warningPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  845. this.warningPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  846. this.warningPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  847. this.warningPanel.Style.GradientAngle = 90;
  848. this.warningPanel.TabIndex = 26;
  849. //
  850. // rtb_notification
  851. //
  852. this.rtb_notification.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  853. this.rtb_notification.BorderStyle = System.Windows.Forms.BorderStyle.None;
  854. this.rtb_notification.Cursor = System.Windows.Forms.Cursors.Arrow;
  855. this.rtb_notification.Dock = System.Windows.Forms.DockStyle.Fill;
  856. this.rtb_notification.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  857. this.rtb_notification.Location = new System.Drawing.Point(0, 0);
  858. this.rtb_notification.Name = "rtb_notification";
  859. this.rtb_notification.ReadOnly = true;
  860. this.rtb_notification.Size = new System.Drawing.Size(319, 500);
  861. this.rtb_notification.TabIndex = 1;
  862. this.rtb_notification.Text = "";
  863. //
  864. // progressBar1
  865. //
  866. this.progressBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
  867. this.progressBar1.Location = new System.Drawing.Point(0, 500);
  868. this.progressBar1.Name = "progressBar1";
  869. this.progressBar1.Size = new System.Drawing.Size(319, 21);
  870. this.progressBar1.Step = 20;
  871. this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
  872. this.progressBar1.TabIndex = 0;
  873. //
  874. // dci_warning
  875. //
  876. this.dci_warning.Control = this.warningPanel;
  877. this.dci_warning.Name = "dci_warning";
  878. this.dci_warning.Text = "警告与提示";
  879. //
  880. // dockSite8
  881. //
  882. this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  883. this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
  884. this.dockSite8.Location = new System.Drawing.Point(0, 668);
  885. this.dockSite8.Name = "dockSite8";
  886. this.dockSite8.Size = new System.Drawing.Size(1194, 0);
  887. this.dockSite8.TabIndex = 7;
  888. this.dockSite8.TabStop = false;
  889. //
  890. // dockSite5
  891. //
  892. this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  893. this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
  894. this.dockSite5.Location = new System.Drawing.Point(0, 0);
  895. this.dockSite5.Name = "dockSite5";
  896. this.dockSite5.Size = new System.Drawing.Size(0, 668);
  897. this.dockSite5.TabIndex = 4;
  898. this.dockSite5.TabStop = false;
  899. //
  900. // dockSite6
  901. //
  902. this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  903. this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
  904. this.dockSite6.Location = new System.Drawing.Point(1194, 0);
  905. this.dockSite6.Name = "dockSite6";
  906. this.dockSite6.Size = new System.Drawing.Size(0, 668);
  907. this.dockSite6.TabIndex = 5;
  908. this.dockSite6.TabStop = false;
  909. //
  910. // dockSite_menu
  911. //
  912. this.dockSite_menu.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  913. this.dockSite_menu.Controls.Add(this.bar_Menu);
  914. this.dockSite_menu.Controls.Add(this.bar_shortcut);
  915. this.dockSite_menu.Dock = System.Windows.Forms.DockStyle.Top;
  916. this.dockSite_menu.Location = new System.Drawing.Point(0, 0);
  917. this.dockSite_menu.Name = "dockSite_menu";
  918. this.dockSite_menu.Size = new System.Drawing.Size(1194, 121);
  919. this.dockSite_menu.TabIndex = 6;
  920. this.dockSite_menu.TabStop = false;
  921. //
  922. // bar_Menu
  923. //
  924. this.bar_Menu.AccessibleDescription = "DotNetBar Bar (bar_Menu)";
  925. this.bar_Menu.AccessibleName = "DotNetBar Bar";
  926. this.bar_Menu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
  927. this.bar_Menu.DockSide = DevComponents.DotNetBar.eDockSide.Top;
  928. this.bar_Menu.Font = new System.Drawing.Font("微软雅黑", 9F);
  929. this.bar_Menu.IsMaximized = false;
  930. this.bar_Menu.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  931. this.btn_system,
  932. this.btn_files,
  933. this.btn_views,
  934. this.btn_devices,
  935. this.btn_support});
  936. this.bar_Menu.Location = new System.Drawing.Point(0, 0);
  937. this.bar_Menu.MenuBar = true;
  938. this.bar_Menu.Name = "bar_Menu";
  939. this.bar_Menu.Size = new System.Drawing.Size(1194, 26);
  940. this.bar_Menu.Stretch = true;
  941. this.bar_Menu.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
  942. this.bar_Menu.TabIndex = 0;
  943. this.bar_Menu.TabStop = false;
  944. this.bar_Menu.Text = "bar1";
  945. //
  946. // btn_system
  947. //
  948. this.btn_system.Name = "btn_system";
  949. this.btn_system.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  950. this.btn_login,
  951. this.btn_logout,
  952. this.btn_exit});
  953. this.btn_system.Text = "系统";
  954. //
  955. // btn_login
  956. //
  957. this.btn_login.Name = "btn_login";
  958. this.btn_login.Text = "登录";
  959. //
  960. // btn_logout
  961. //
  962. this.btn_logout.Name = "btn_logout";
  963. this.btn_logout.Text = "登出";
  964. //
  965. // btn_exit
  966. //
  967. this.btn_exit.Name = "btn_exit";
  968. this.btn_exit.Text = "退出系统";
  969. this.btn_exit.Click += new System.EventHandler(this.btn_exit_Click);
  970. //
  971. // btn_files
  972. //
  973. this.btn_files.Name = "btn_files";
  974. this.btn_files.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  975. this.btn_openFile,
  976. this.btn_advertUpdate,
  977. this.btn_recordManagement,
  978. this.btn_exportRecords,
  979. this.btn_setScheme});
  980. this.btn_files.Text = "文件";
  981. //
  982. // btn_openFile
  983. //
  984. this.btn_openFile.Name = "btn_openFile";
  985. this.btn_openFile.Text = "打开日志";
  986. this.btn_openFile.Click += new System.EventHandler(this.btn_openFile_Click);
  987. //
  988. // btn_advertUpdate
  989. //
  990. this.btn_advertUpdate.Name = "btn_advertUpdate";
  991. this.btn_advertUpdate.Text = "手动更新广告";
  992. this.btn_advertUpdate.Click += new System.EventHandler(this.btn_advertUpdate_Click);
  993. //
  994. // btn_recordManagement
  995. //
  996. this.btn_recordManagement.Name = "btn_recordManagement";
  997. this.btn_recordManagement.Text = "记录管理";
  998. this.btn_recordManagement.Click += new System.EventHandler(this.btn_recordManagement_Click);
  999. //
  1000. // btn_exportRecords
  1001. //
  1002. this.btn_exportRecords.Name = "btn_exportRecords";
  1003. this.btn_exportRecords.Text = "导出最近记录";
  1004. this.btn_exportRecords.Click += new System.EventHandler(this.btn_exportRecords_Click);
  1005. //
  1006. // btn_setScheme
  1007. //
  1008. this.btn_setScheme.Name = "btn_setScheme";
  1009. this.btn_setScheme.Text = "收费策略";
  1010. this.btn_setScheme.Click += new System.EventHandler(this.btn_setScheme_Click);
  1011. //
  1012. // btn_views
  1013. //
  1014. this.btn_views.Name = "btn_views";
  1015. this.btn_views.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  1016. this.btn_parkingSpace,
  1017. this.btn_numMachine,
  1018. this.btn_payment,
  1019. this.btn_test,
  1020. this.btn_terminals,
  1021. this.btn_records});
  1022. this.btn_views.Text = "视图";
  1023. //
  1024. // btn_parkingSpace
  1025. //
  1026. this.btn_parkingSpace.Name = "btn_parkingSpace";
  1027. this.btn_parkingSpace.Text = "车位视图";
  1028. this.btn_parkingSpace.Click += new System.EventHandler(this.btn_parkingSpace_Click);
  1029. //
  1030. // btn_numMachine
  1031. //
  1032. this.btn_numMachine.Name = "btn_numMachine";
  1033. this.btn_numMachine.Text = "号牌机视图";
  1034. this.btn_numMachine.Click += new System.EventHandler(this.btn_numMachine_Click);
  1035. //
  1036. // btn_payment
  1037. //
  1038. this.btn_payment.Name = "btn_payment";
  1039. this.btn_payment.Text = "支付视图";
  1040. this.btn_payment.Click += new System.EventHandler(this.btn_payment_Click);
  1041. //
  1042. // btn_test
  1043. //
  1044. this.btn_test.Name = "btn_test";
  1045. this.btn_test.Text = "测试";
  1046. this.btn_test.Click += new System.EventHandler(this.btn_test_Click);
  1047. //
  1048. // btn_terminals
  1049. //
  1050. this.btn_terminals.Name = "btn_terminals";
  1051. this.btn_terminals.Text = "终端视图";
  1052. this.btn_terminals.Click += new System.EventHandler(this.btn_terminals_Click);
  1053. //
  1054. // btn_records
  1055. //
  1056. this.btn_records.Name = "btn_records";
  1057. this.btn_records.Text = "记录视图";
  1058. this.btn_records.Click += new System.EventHandler(this.btn_records_Click);
  1059. //
  1060. // btn_devices
  1061. //
  1062. this.btn_devices.Name = "btn_devices";
  1063. this.btn_devices.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  1064. this.btn_linkPLC,
  1065. this.btn_linkWeb,
  1066. this.btn_PLCConf,
  1067. this.btn_numMachineConf});
  1068. this.btn_devices.Text = "工具";
  1069. //
  1070. // btn_linkPLC
  1071. //
  1072. this.btn_linkPLC.Name = "btn_linkPLC";
  1073. this.btn_linkPLC.Text = "连接PLC";
  1074. this.btn_linkPLC.Click += new System.EventHandler(this.btn_linkPLC_Click);
  1075. //
  1076. // btn_linkWeb
  1077. //
  1078. this.btn_linkWeb.Name = "btn_linkWeb";
  1079. this.btn_linkWeb.Text = "连接Web";
  1080. this.btn_linkWeb.Click += new System.EventHandler(this.btn_linkWeb_Click);
  1081. //
  1082. // btn_PLCConf
  1083. //
  1084. this.btn_PLCConf.Name = "btn_PLCConf";
  1085. this.btn_PLCConf.Text = "PLC数据调试";
  1086. this.btn_PLCConf.Click += new System.EventHandler(this.btn_PLCConf_Click);
  1087. //
  1088. // btn_numMachineConf
  1089. //
  1090. this.btn_numMachineConf.Name = "btn_numMachineConf";
  1091. this.btn_numMachineConf.Text = "号牌机调试";
  1092. this.btn_numMachineConf.Click += new System.EventHandler(this.btn_numMachineConf_Click);
  1093. //
  1094. // btn_support
  1095. //
  1096. this.btn_support.Name = "btn_support";
  1097. this.btn_support.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  1098. this.btn_sysInfo,
  1099. this.btn_about});
  1100. this.btn_support.Text = "帮助";
  1101. //
  1102. // btn_sysInfo
  1103. //
  1104. this.btn_sysInfo.Name = "btn_sysInfo";
  1105. this.btn_sysInfo.Text = "系统信息";
  1106. this.btn_sysInfo.Click += new System.EventHandler(this.btn_sysInfo_Click);
  1107. //
  1108. // btn_about
  1109. //
  1110. this.btn_about.Name = "btn_about";
  1111. this.btn_about.Text = "关于我们";
  1112. //
  1113. // bar_shortcut
  1114. //
  1115. this.bar_shortcut.AccessibleDescription = "DotNetBar Bar (bar_shortcut)";
  1116. this.bar_shortcut.AccessibleName = "DotNetBar Bar";
  1117. this.bar_shortcut.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
  1118. this.bar_shortcut.AutoHide = true;
  1119. this.bar_shortcut.AutoHideAnimationTime = 300;
  1120. this.bar_shortcut.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
  1121. this.bar_shortcut.Controls.Add(this.panel_freeSpace);
  1122. this.bar_shortcut.DockLine = 1;
  1123. this.bar_shortcut.DockSide = DevComponents.DotNetBar.eDockSide.Top;
  1124. this.bar_shortcut.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1125. this.bar_shortcut.IsMaximized = false;
  1126. this.bar_shortcut.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
  1127. this.shortcut_login,
  1128. this.shortcut_logout,
  1129. this.shortcut_sysInfo,
  1130. this.shortcut_about,
  1131. this.shortcut_close});
  1132. this.bar_shortcut.Location = new System.Drawing.Point(0, 27);
  1133. this.bar_shortcut.MenuBar = true;
  1134. this.bar_shortcut.Name = "bar_shortcut";
  1135. this.bar_shortcut.Size = new System.Drawing.Size(1194, 93);
  1136. this.bar_shortcut.Stretch = true;
  1137. this.bar_shortcut.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
  1138. this.bar_shortcut.TabIndex = 1;
  1139. this.bar_shortcut.TabStop = false;
  1140. this.bar_shortcut.Text = "bar1";
  1141. //
  1142. // panel_freeSpace
  1143. //
  1144. this.panel_freeSpace.Controls.Add(this.lbx_freeSpace);
  1145. this.panel_freeSpace.Dock = System.Windows.Forms.DockStyle.Right;
  1146. this.panel_freeSpace.Location = new System.Drawing.Point(866, 0);
  1147. this.panel_freeSpace.Name = "panel_freeSpace";
  1148. this.panel_freeSpace.Size = new System.Drawing.Size(328, 93);
  1149. this.panel_freeSpace.TabIndex = 3;
  1150. //
  1151. // lbx_freeSpace
  1152. //
  1153. this.lbx_freeSpace.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
  1154. //
  1155. //
  1156. //
  1157. this.lbx_freeSpace.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  1158. this.lbx_freeSpace.Dock = System.Windows.Forms.DockStyle.Fill;
  1159. this.lbx_freeSpace.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1160. this.lbx_freeSpace.FontBold = true;
  1161. this.lbx_freeSpace.ForeColor = System.Drawing.Color.Tomato;
  1162. this.lbx_freeSpace.Location = new System.Drawing.Point(0, 0);
  1163. this.lbx_freeSpace.Name = "lbx_freeSpace";
  1164. this.lbx_freeSpace.Size = new System.Drawing.Size(328, 93);
  1165. this.lbx_freeSpace.TabIndex = 2;
  1166. this.lbx_freeSpace.Text = "currentFreeSpace";
  1167. this.lbx_freeSpace.TextAlignment = System.Drawing.StringAlignment.Center;
  1168. //
  1169. // shortcut_login
  1170. //
  1171. this.shortcut_login.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
  1172. this.shortcut_login.Image = global::centralController.Properties.Resources.pc;
  1173. this.shortcut_login.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
  1174. this.shortcut_login.Name = "shortcut_login";
  1175. this.shortcut_login.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.None;
  1176. this.shortcut_login.ShowSubItems = false;
  1177. this.shortcut_login.Text = "登录";
  1178. //
  1179. // shortcut_logout
  1180. //
  1181. this.shortcut_logout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
  1182. this.shortcut_logout.Image = global::centralController.Properties.Resources.monitor;
  1183. this.shortcut_logout.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
  1184. this.shortcut_logout.Name = "shortcut_logout";
  1185. this.shortcut_logout.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.None;
  1186. this.shortcut_logout.ShowSubItems = false;
  1187. this.shortcut_logout.Text = "登出";
  1188. //
  1189. // shortcut_sysInfo
  1190. //
  1191. this.shortcut_sysInfo.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
  1192. this.shortcut_sysInfo.Image = global::centralController.Properties.Resources.sysExplain1;
  1193. this.shortcut_sysInfo.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
  1194. this.shortcut_sysInfo.Name = "shortcut_sysInfo";
  1195. this.shortcut_sysInfo.ShowSubItems = false;
  1196. this.shortcut_sysInfo.Text = "系统信息";
  1197. this.shortcut_sysInfo.Click += new System.EventHandler(this.shortcut_sysInfo_Click);
  1198. //
  1199. // shortcut_about
  1200. //
  1201. this.shortcut_about.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
  1202. this.shortcut_about.Image = global::centralController.Properties.Resources.about;
  1203. this.shortcut_about.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
  1204. this.shortcut_about.Name = "shortcut_about";
  1205. this.shortcut_about.ShowSubItems = false;
  1206. this.shortcut_about.Text = "关于我们";
  1207. //
  1208. // shortcut_close
  1209. //
  1210. this.shortcut_close.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
  1211. this.shortcut_close.Image = global::centralController.Properties.Resources.close;
  1212. this.shortcut_close.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
  1213. this.shortcut_close.Name = "shortcut_close";
  1214. this.shortcut_close.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.None;
  1215. this.shortcut_close.ShowSubItems = false;
  1216. this.shortcut_close.Text = "退出";
  1217. this.shortcut_close.Click += new System.EventHandler(this.shortcut_close_Click);
  1218. //
  1219. // dockSite3
  1220. //
  1221. this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
  1222. this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
  1223. this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
  1224. this.dockSite3.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
  1225. this.dockSite3.Location = new System.Drawing.Point(0, 0);
  1226. this.dockSite3.Name = "dockSite3";
  1227. this.dockSite3.Size = new System.Drawing.Size(1194, 0);
  1228. this.dockSite3.TabIndex = 2;
  1229. this.dockSite3.TabStop = false;
  1230. //
  1231. // panelDockContainer10
  1232. //
  1233. this.panelDockContainer10.DisabledBackColor = System.Drawing.Color.Empty;
  1234. this.panelDockContainer10.Location = new System.Drawing.Point(3, 23);
  1235. this.panelDockContainer10.Name = "panelDockContainer10";
  1236. this.panelDockContainer10.Size = new System.Drawing.Size(215, 373);
  1237. this.panelDockContainer10.Style.Alignment = System.Drawing.StringAlignment.Center;
  1238. this.panelDockContainer10.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  1239. this.panelDockContainer10.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  1240. this.panelDockContainer10.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  1241. this.panelDockContainer10.Style.GradientAngle = 90;
  1242. this.panelDockContainer10.TabIndex = 5;
  1243. //
  1244. // dockContainerItem2
  1245. //
  1246. this.dockContainerItem2.Name = "dockContainerItem2";
  1247. this.dockContainerItem2.Text = "号牌机监控";
  1248. //
  1249. // groupPanel5
  1250. //
  1251. this.groupPanel5.BackColor = System.Drawing.Color.White;
  1252. this.groupPanel5.CanvasColor = System.Drawing.SystemColors.Control;
  1253. this.groupPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
  1254. this.groupPanel5.DisabledBackColor = System.Drawing.Color.Empty;
  1255. this.groupPanel5.Location = new System.Drawing.Point(3, 28);
  1256. this.groupPanel5.Name = "groupPanel5";
  1257. this.groupPanel5.Size = new System.Drawing.Size(796, 395);
  1258. //
  1259. //
  1260. //
  1261. this.groupPanel5.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
  1262. this.groupPanel5.Style.BackColorGradientAngle = 90;
  1263. this.groupPanel5.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
  1264. this.groupPanel5.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
  1265. this.groupPanel5.Style.BorderBottomWidth = 1;
  1266. this.groupPanel5.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
  1267. this.groupPanel5.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
  1268. this.groupPanel5.Style.BorderLeftWidth = 1;
  1269. this.groupPanel5.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
  1270. this.groupPanel5.Style.BorderRightWidth = 1;
  1271. this.groupPanel5.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
  1272. this.groupPanel5.Style.BorderTopWidth = 1;
  1273. this.groupPanel5.Style.CornerDiameter = 4;
  1274. this.groupPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
  1275. this.groupPanel5.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
  1276. this.groupPanel5.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
  1277. this.groupPanel5.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
  1278. //
  1279. //
  1280. //
  1281. this.groupPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  1282. //
  1283. //
  1284. //
  1285. this.groupPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  1286. this.groupPanel5.TabIndex = 11;
  1287. this.groupPanel5.Text = "groupPanel5";
  1288. //
  1289. // dci_PaymentRecords
  1290. //
  1291. this.dci_PaymentRecords.Name = "dci_PaymentRecords";
  1292. this.dci_PaymentRecords.Text = "收费查询";
  1293. //
  1294. // panelDockContainer7
  1295. //
  1296. this.panelDockContainer7.DisabledBackColor = System.Drawing.Color.Empty;
  1297. this.panelDockContainer7.Location = new System.Drawing.Point(3, 28);
  1298. this.panelDockContainer7.Name = "panelDockContainer7";
  1299. this.panelDockContainer7.Size = new System.Drawing.Size(796, 395);
  1300. this.panelDockContainer7.Style.Alignment = System.Drawing.StringAlignment.Center;
  1301. this.panelDockContainer7.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  1302. this.panelDockContainer7.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  1303. this.panelDockContainer7.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  1304. this.panelDockContainer7.Style.GradientAngle = 90;
  1305. this.panelDockContainer7.TabIndex = 37;
  1306. //
  1307. // dockContainerItem1
  1308. //
  1309. this.dockContainerItem1.Control = this.panelDockContainer7;
  1310. this.dockContainerItem1.Name = "dockContainerItem1";
  1311. this.dockContainerItem1.Text = "dockContainerItem1";
  1312. //
  1313. // panelDockContainer8
  1314. //
  1315. this.panelDockContainer8.DisabledBackColor = System.Drawing.Color.Empty;
  1316. this.panelDockContainer8.Location = new System.Drawing.Point(3, 28);
  1317. this.panelDockContainer8.Name = "panelDockContainer8";
  1318. this.panelDockContainer8.Size = new System.Drawing.Size(796, 395);
  1319. this.panelDockContainer8.Style.Alignment = System.Drawing.StringAlignment.Center;
  1320. this.panelDockContainer8.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  1321. this.panelDockContainer8.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  1322. this.panelDockContainer8.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  1323. this.panelDockContainer8.Style.GradientAngle = 90;
  1324. this.panelDockContainer8.TabIndex = 37;
  1325. //
  1326. // controlContainerItem1
  1327. //
  1328. this.controlContainerItem1.AllowItemResize = false;
  1329. this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
  1330. this.controlContainerItem1.Name = "controlContainerItem1";
  1331. //
  1332. // dci_devStatus
  1333. //
  1334. this.dci_devStatus.Control = this.pdc_devStatus;
  1335. this.dci_devStatus.Name = "dci_devStatus";
  1336. this.dci_devStatus.Text = "设备状态监控";
  1337. //
  1338. // pdc_devStatus
  1339. //
  1340. this.pdc_devStatus.CanvasColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1341. this.pdc_devStatus.Controls.Add(this.panel1);
  1342. this.pdc_devStatus.DisabledBackColor = System.Drawing.Color.Empty;
  1343. this.pdc_devStatus.Location = new System.Drawing.Point(3, 28);
  1344. this.pdc_devStatus.Name = "pdc_devStatus";
  1345. this.pdc_devStatus.Size = new System.Drawing.Size(497, 295);
  1346. this.pdc_devStatus.Style.Alignment = System.Drawing.StringAlignment.Center;
  1347. this.pdc_devStatus.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
  1348. this.pdc_devStatus.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
  1349. this.pdc_devStatus.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
  1350. this.pdc_devStatus.Style.GradientAngle = 90;
  1351. this.pdc_devStatus.TabIndex = 43;
  1352. //
  1353. // tableLayoutPanel2
  1354. //
  1355. this.tableLayoutPanel2.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1356. this.tableLayoutPanel2.ColumnCount = 2;
  1357. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  1358. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  1359. this.tableLayoutPanel2.Controls.Add(this.lbx_webStatus, 1, 1);
  1360. this.tableLayoutPanel2.Controls.Add(this.lbx_PLCStatus, 1, 0);
  1361. this.tableLayoutPanel2.Controls.Add(this.lbx_PLC, 0, 0);
  1362. this.tableLayoutPanel2.Controls.Add(this.lbx_web, 0, 1);
  1363. this.tableLayoutPanel2.Location = new System.Drawing.Point(12, 12);
  1364. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  1365. this.tableLayoutPanel2.RowCount = 3;
  1366. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
  1367. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
  1368. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
  1369. this.tableLayoutPanel2.Size = new System.Drawing.Size(179, 121);
  1370. this.tableLayoutPanel2.TabIndex = 1;
  1371. //
  1372. // lbx_PLC
  1373. //
  1374. //
  1375. //
  1376. //
  1377. this.lbx_PLC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  1378. this.lbx_PLC.Dock = System.Windows.Forms.DockStyle.Fill;
  1379. this.lbx_PLC.Location = new System.Drawing.Point(3, 3);
  1380. this.lbx_PLC.Name = "lbx_PLC";
  1381. this.lbx_PLC.Size = new System.Drawing.Size(83, 34);
  1382. this.lbx_PLC.TabIndex = 0;
  1383. this.lbx_PLC.Text = "PLC";
  1384. this.lbx_PLC.TextAlignment = System.Drawing.StringAlignment.Center;
  1385. //
  1386. // lbx_web
  1387. //
  1388. //
  1389. //
  1390. //
  1391. this.lbx_web.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  1392. this.lbx_web.Dock = System.Windows.Forms.DockStyle.Fill;
  1393. this.lbx_web.Location = new System.Drawing.Point(3, 43);
  1394. this.lbx_web.Name = "lbx_web";
  1395. this.lbx_web.Size = new System.Drawing.Size(83, 34);
  1396. this.lbx_web.TabIndex = 1;
  1397. this.lbx_web.Text = "web服务器";
  1398. this.lbx_web.TextAlignment = System.Drawing.StringAlignment.Center;
  1399. //
  1400. // lbx_PLCStatus
  1401. //
  1402. this.lbx_PLCStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
  1403. this.lbx_PLCStatus.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1404. //
  1405. //
  1406. //
  1407. this.lbx_PLCStatus.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  1408. this.lbx_PLCStatus.Location = new System.Drawing.Point(112, 3);
  1409. this.lbx_PLCStatus.Name = "lbx_PLCStatus";
  1410. this.lbx_PLCStatus.Size = new System.Drawing.Size(44, 34);
  1411. this.lbx_PLCStatus.Symbol = "";
  1412. this.lbx_PLCStatus.SymbolColor = System.Drawing.Color.Crimson;
  1413. this.lbx_PLCStatus.SymbolSize = 25F;
  1414. this.lbx_PLCStatus.TabIndex = 2;
  1415. //
  1416. // lbx_webStatus
  1417. //
  1418. this.lbx_webStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
  1419. this.lbx_webStatus.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1420. //
  1421. //
  1422. //
  1423. this.lbx_webStatus.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  1424. this.lbx_webStatus.Location = new System.Drawing.Point(112, 43);
  1425. this.lbx_webStatus.Name = "lbx_webStatus";
  1426. this.lbx_webStatus.Size = new System.Drawing.Size(43, 34);
  1427. this.lbx_webStatus.Symbol = "";
  1428. this.lbx_webStatus.SymbolColor = System.Drawing.Color.Crimson;
  1429. this.lbx_webStatus.SymbolSize = 25F;
  1430. this.lbx_webStatus.TabIndex = 3;
  1431. //
  1432. // panel1
  1433. //
  1434. this.panel1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1435. this.panel1.Controls.Add(this.tableLayoutPanel2);
  1436. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1437. this.panel1.Location = new System.Drawing.Point(0, 0);
  1438. this.panel1.Name = "panel1";
  1439. this.panel1.Size = new System.Drawing.Size(497, 295);
  1440. this.panel1.TabIndex = 2;
  1441. //
  1442. // centralController
  1443. //
  1444. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1445. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1446. this.AutoSize = true;
  1447. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  1448. this.ClientSize = new System.Drawing.Size(1194, 668);
  1449. this.Controls.Add(this.dockSite_mainView);
  1450. this.Controls.Add(this.dockSite_notification);
  1451. this.Controls.Add(this.dockSite_menu);
  1452. this.Controls.Add(this.dockSite1);
  1453. this.Controls.Add(this.dockSite3);
  1454. this.Controls.Add(this.dockSite4);
  1455. this.Controls.Add(this.dockSite5);
  1456. this.Controls.Add(this.dockSite6);
  1457. this.Controls.Add(this.dockSite8);
  1458. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  1459. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1460. this.Name = "centralController";
  1461. this.Text = "智象停车中控端";
  1462. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  1463. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.centralController_FormClosing);
  1464. this.dockSite_mainView.ResumeLayout(false);
  1465. ((System.ComponentModel.ISupportInitialize)(this.bar_mainWin)).EndInit();
  1466. this.bar_mainWin.ResumeLayout(false);
  1467. this.NumMachineMonitorPanel.ResumeLayout(false);
  1468. this.testPanel.ResumeLayout(false);
  1469. this.testPanel.PerformLayout();
  1470. this.groupPanel2.ResumeLayout(false);
  1471. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  1472. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  1473. this.groupPanel1.ResumeLayout(false);
  1474. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  1475. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  1476. this.tableLayoutPanel1.ResumeLayout(false);
  1477. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  1478. ((System.ComponentModel.ISupportInitialize)(this.bar_bottom)).EndInit();
  1479. this.bar_bottom.ResumeLayout(false);
  1480. this.RecordsMonitorPanel.ResumeLayout(false);
  1481. ((System.ComponentModel.ISupportInitialize)(this.dgvx_parkingRecords)).EndInit();
  1482. ((System.ComponentModel.ISupportInitialize)(this.bar_side)).EndInit();
  1483. this.bar_side.ResumeLayout(false);
  1484. this.terminalMonitorPanel.ResumeLayout(false);
  1485. this.dockSite_notification.ResumeLayout(false);
  1486. ((System.ComponentModel.ISupportInitialize)(this.bar_notification)).EndInit();
  1487. this.bar_notification.ResumeLayout(false);
  1488. this.warningPanel.ResumeLayout(false);
  1489. this.dockSite_menu.ResumeLayout(false);
  1490. ((System.ComponentModel.ISupportInitialize)(this.bar_Menu)).EndInit();
  1491. ((System.ComponentModel.ISupportInitialize)(this.bar_shortcut)).EndInit();
  1492. this.bar_shortcut.ResumeLayout(false);
  1493. this.panel_freeSpace.ResumeLayout(false);
  1494. this.pdc_devStatus.ResumeLayout(false);
  1495. this.tableLayoutPanel2.ResumeLayout(false);
  1496. this.panel1.ResumeLayout(false);
  1497. this.ResumeLayout(false);
  1498. }
  1499. #endregion
  1500. private DevComponents.DotNetBar.DotNetBarManager dotNetBarManager1;
  1501. private DevComponents.DotNetBar.DockSite dockSite4;
  1502. private DevComponents.DotNetBar.DockSite dockSite1;
  1503. private DevComponents.DotNetBar.DockSite dockSite_notification;
  1504. private DevComponents.DotNetBar.DockSite dockSite3;
  1505. private DevComponents.DotNetBar.DockSite dockSite5;
  1506. private DevComponents.DotNetBar.DockSite dockSite6;
  1507. private DevComponents.DotNetBar.DockSite dockSite_menu;
  1508. private DevComponents.DotNetBar.Bar bar_Menu;
  1509. private DevComponents.DotNetBar.ButtonItem btn_system;
  1510. private DevComponents.DotNetBar.DockSite dockSite8;
  1511. private DevComponents.DotNetBar.DockSite dockSite_mainView;
  1512. private DevComponents.DotNetBar.ButtonItem btn_devices;
  1513. private DevComponents.DotNetBar.ButtonItem btn_files;
  1514. private DevComponents.DotNetBar.ButtonItem btn_login;
  1515. private DevComponents.DotNetBar.ButtonItem btn_logout;
  1516. private DevComponents.DotNetBar.ButtonItem btn_openFile;
  1517. private DevComponents.DotNetBar.ButtonItem btn_linkPLC;
  1518. private DevComponents.DotNetBar.DockContainerItem dockContainerItem2;
  1519. private DevComponents.DotNetBar.Controls.GroupPanel groupPanel5;
  1520. private DevComponents.DotNetBar.DockContainerItem dci_PaymentRecords;
  1521. private DevComponents.DotNetBar.PanelDockContainer terminalMonitorPanel;
  1522. private DevComponents.DotNetBar.DockContainerItem dci_terminal;
  1523. private DevComponents.DotNetBar.PanelDockContainer panelDockContainer7;
  1524. private DevComponents.DotNetBar.DockContainerItem dockContainerItem1;
  1525. private DevComponents.DotNetBar.PanelDockContainer panelDockContainer8;
  1526. private DevComponents.DotNetBar.PanelDockContainer panelDockContainer10;
  1527. private DevComponents.DotNetBar.ButtonItem btn_exit;
  1528. private DevComponents.DotNetBar.PanelDockContainer warningPanel;
  1529. private DevComponents.DotNetBar.DockContainerItem dci_warning;
  1530. private System.Windows.Forms.ProgressBar progressBar1;
  1531. private DevComponents.DotNetBar.ButtonItem btn_recordManagement;
  1532. private DevComponents.DotNetBar.ButtonItem btn_exportRecords;
  1533. private DevComponents.DotNetBar.Bar bar_bottom;
  1534. private DevComponents.DotNetBar.Bar bar_notification;
  1535. private DevComponents.DotNetBar.LabelX lbx_freeSpace;
  1536. private DevComponents.DotNetBar.ButtonItem btn_views;
  1537. private DevComponents.DotNetBar.ButtonItem btn_numMachine;
  1538. private DevComponents.DotNetBar.ButtonItem btn_test;
  1539. private DevComponents.DotNetBar.ButtonItem btn_parkingSpace;
  1540. private DevComponents.DotNetBar.ButtonItem btn_payment;
  1541. private DevComponents.DotNetBar.ButtonItem btn_terminals;
  1542. private DevComponents.DotNetBar.ButtonItem btn_records;
  1543. private DevComponents.DotNetBar.ButtonItem btn_setScheme;
  1544. private DevComponents.DotNetBar.ButtonItem btn_PLCConf;
  1545. private DevComponents.DotNetBar.Bar bar_mainWin;
  1546. private DevComponents.DotNetBar.PanelDockContainer NumMachineMonitorPanel;
  1547. public System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  1548. private DevComponents.DotNetBar.PanelDockContainer paymentPanel;
  1549. private DevComponents.DotNetBar.PanelDockContainer testPanel;
  1550. private System.Windows.Forms.Button button1;
  1551. private System.Windows.Forms.TextBox textBox2;
  1552. private System.Windows.Forms.TextBox textBox1;
  1553. private DevComponents.DotNetBar.PanelDockContainer ParkingSpaceMonitorPanel;
  1554. private DevComponents.DotNetBar.DockContainerItem dci_ParkingSpace;
  1555. private DevComponents.DotNetBar.DockContainerItem dci_NumMachine;
  1556. private DevComponents.DotNetBar.DockContainerItem dci_payment;
  1557. private DevComponents.DotNetBar.DockContainerItem dci_Test;
  1558. private DevComponents.DotNetBar.PanelDockContainer RecordsMonitorPanel;
  1559. private DevComponents.DotNetBar.Controls.DataGridViewX dgvx_parkingRecords;
  1560. private DevComponents.DotNetBar.DockContainerItem dci_ParkingRecords;
  1561. private DevComponents.DotNetBar.Bar bar_shortcut;
  1562. private DevComponents.DotNetBar.Bar bar_side;
  1563. private DevComponents.DotNetBar.ButtonItem btn_numMachineConf;
  1564. private DevComponents.DotNetBar.ButtonItem shortcut_login;
  1565. private DevComponents.DotNetBar.ButtonItem shortcut_logout;
  1566. private DevComponents.DotNetBar.ButtonItem shortcut_close;
  1567. private System.Windows.Forms.Panel panel_freeSpace;
  1568. private DevComponents.DotNetBar.ControlContainerItem controlContainerItem1;
  1569. private DevComponents.DotNetBar.ButtonItem btn_support;
  1570. private DevComponents.DotNetBar.ButtonItem btn_sysInfo;
  1571. private DevComponents.DotNetBar.ButtonItem btn_about;
  1572. private DevComponents.DotNetBar.ButtonItem shortcut_sysInfo;
  1573. private DevComponents.DotNetBar.ButtonItem shortcut_about;
  1574. private DevComponents.DotNetBar.ButtonItem btn_advertUpdate;
  1575. private System.Windows.Forms.DateTimePicker dateTimePicker1;
  1576. private System.Windows.Forms.DataGridViewTextBoxColumn parkingRecordsID;
  1577. private System.Windows.Forms.DataGridViewTextBoxColumn userID;
  1578. private System.Windows.Forms.DataGridViewTextBoxColumn numberPlate;
  1579. private System.Windows.Forms.DataGridViewTextBoxColumn parkingSpaceID;
  1580. private System.Windows.Forms.DataGridViewTextBoxColumn realParkTime;
  1581. private System.Windows.Forms.DataGridViewTextBoxColumn realGetTime;
  1582. private System.Windows.Forms.DataGridViewTextBoxColumn receiptNum;
  1583. private System.Windows.Forms.DataGridViewTextBoxColumn parkingPrice;
  1584. private System.Windows.Forms.DataGridViewTextBoxColumn paymentStatus;
  1585. private System.Windows.Forms.Button button2;
  1586. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  1587. private System.Windows.Forms.PictureBox pictureBox1;
  1588. private DevComponents.DotNetBar.LabelX labelX1;
  1589. private System.Windows.Forms.RichTextBox rtb_notification;
  1590. private System.Windows.Forms.PictureBox pictureBox2;
  1591. private DevComponents.DotNetBar.Controls.GroupPanel groupPanel1;
  1592. private DevComponents.DotNetBar.Controls.GroupPanel groupPanel2;
  1593. private System.Windows.Forms.PictureBox pictureBox4;
  1594. private System.Windows.Forms.PictureBox pictureBox5;
  1595. private System.Windows.Forms.PictureBox pictureBox3;
  1596. private System.Windows.Forms.FlowLayoutPanel flp_Term;
  1597. private DevComponents.DotNetBar.ButtonItem btn_linkWeb;
  1598. private DevComponents.DotNetBar.PanelDockContainer pdc_devStatus;
  1599. private DevComponents.DotNetBar.DockContainerItem dci_devStatus;
  1600. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  1601. private DevComponents.DotNetBar.LabelX lbx_PLC;
  1602. private DevComponents.DotNetBar.LabelX lbx_web;
  1603. private DevComponents.DotNetBar.LabelX lbx_webStatus;
  1604. private DevComponents.DotNetBar.LabelX lbx_PLCStatus;
  1605. private System.Windows.Forms.Panel panel1;
  1606. }
  1607. }