RealTimeTwoCarForm.Designer.cs 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  1. using System;
  2. using DevExpress.XtraCharts;
  3. using DevExpress.XtraEditors;
  4. namespace GCAS
  5. {
  6. partial class RealTimeTwoCarForm
  7. {
  8. /// <summary>
  9. /// Required designer variable.
  10. /// </summary>
  11. private System.ComponentModel.IContainer components = null;
  12. /// <summary>
  13. /// Clean up any resources being used.
  14. /// </summary>
  15. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  16. protected override void Dispose(bool disposing)
  17. {
  18. if (disposing && (components != null))
  19. {
  20. components.Dispose();
  21. }
  22. base.Dispose(disposing);
  23. }
  24. #region Windows Form Designer generated code
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.components = new System.ComponentModel.Container();
  32. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RealTimeTwoCarForm));
  33. DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
  34. DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
  35. DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
  36. DevExpress.XtraCharts.AreaSeriesView areaSeriesView1 = new DevExpress.XtraCharts.AreaSeriesView();
  37. DevExpress.XtraCharts.AreaSeriesView areaSeriesView2 = new DevExpress.XtraCharts.AreaSeriesView();
  38. DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
  39. DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
  40. DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
  41. DevExpress.XtraCharts.AreaSeriesView areaSeriesView3 = new DevExpress.XtraCharts.AreaSeriesView();
  42. DevExpress.XtraCharts.AreaSeriesView areaSeriesView4 = new DevExpress.XtraCharts.AreaSeriesView();
  43. this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
  44. this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
  45. this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
  46. this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
  47. this.chartControl2 = new DevExpress.XtraCharts.ChartControl();
  48. this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
  49. this.lbl_entrance_2 = new DevExpress.XtraEditors.LabelControl();
  50. this.pic_entrance_2_2 = new DevExpress.XtraEditors.PictureEdit();
  51. this.pic_entrance_2_1 = new DevExpress.XtraEditors.PictureEdit();
  52. this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
  53. this.lbl_entrance_1 = new DevExpress.XtraEditors.LabelControl();
  54. this.pic_entrance_1_2 = new DevExpress.XtraEditors.PictureEdit();
  55. this.pic_entrance_1_1 = new DevExpress.XtraEditors.PictureEdit();
  56. this.panelControl16 = new DevExpress.XtraEditors.PanelControl();
  57. this.panelControl21 = new DevExpress.XtraEditors.PanelControl();
  58. this.lbl_yj_2 = new DevExpress.XtraEditors.LabelControl();
  59. this.pic_yj_2 = new DevExpress.XtraEditors.PictureEdit();
  60. this.panelControl20 = new DevExpress.XtraEditors.PanelControl();
  61. this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
  62. this.pic_wd_2 = new DevExpress.XtraEditors.PictureEdit();
  63. this.panelControl19 = new DevExpress.XtraEditors.PanelControl();
  64. this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
  65. this.pic_lw_2 = new DevExpress.XtraEditors.PictureEdit();
  66. this.panelControl15 = new DevExpress.XtraEditors.PanelControl();
  67. this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
  68. this.lbl_total_2 = new DevExpress.XtraEditors.LabelControl();
  69. this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
  70. this.panelControl14 = new DevExpress.XtraEditors.PanelControl();
  71. this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
  72. this.lbl_netWeight_2 = new DevExpress.XtraEditors.LabelControl();
  73. this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
  74. this.panelControl12 = new DevExpress.XtraEditors.PanelControl();
  75. this.panelControl17 = new DevExpress.XtraEditors.PanelControl();
  76. this.lbl_team_2 = new DevExpress.XtraEditors.LabelControl();
  77. this.lbl_changeTeam2 = new System.Windows.Forms.Label();
  78. this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
  79. this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
  80. this.lbl_isOnline_2 = new DevExpress.XtraEditors.LabelControl();
  81. this.pic_isOnline_2 = new DevExpress.XtraEditors.PictureEdit();
  82. this.lbl_devcieName_2 = new DevExpress.XtraEditors.LabelControl();
  83. this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
  84. this.lbl_isOnline_1 = new DevExpress.XtraEditors.LabelControl();
  85. this.pic_isOnline_1 = new DevExpress.XtraEditors.PictureEdit();
  86. this.lbl_devcieName_1 = new DevExpress.XtraEditors.LabelControl();
  87. this.panelControl13 = new DevExpress.XtraEditors.PanelControl();
  88. this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
  89. this.lbl_changeTeam1 = new System.Windows.Forms.Label();
  90. this.lbl_team_1 = new DevExpress.XtraEditors.LabelControl();
  91. this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
  92. this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
  93. this.lbl_yj_1 = new DevExpress.XtraEditors.LabelControl();
  94. this.pic_yj_1 = new DevExpress.XtraEditors.PictureEdit();
  95. this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
  96. this.lbl_wd_1 = new DevExpress.XtraEditors.LabelControl();
  97. this.pic_wd_1 = new DevExpress.XtraEditors.PictureEdit();
  98. this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
  99. this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
  100. this.pic_lw_1 = new DevExpress.XtraEditors.PictureEdit();
  101. this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
  102. this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
  103. this.lbl_total_1 = new DevExpress.XtraEditors.LabelControl();
  104. this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
  105. this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
  106. this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
  107. this.lbl_netWeight_1 = new DevExpress.XtraEditors.LabelControl();
  108. this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
  109. this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
  110. this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
  111. this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
  112. this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
  113. this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
  114. this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
  115. this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
  116. this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
  117. this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
  118. this.simpleSeparator4 = new DevExpress.XtraLayout.SimpleSeparator();
  119. this.simpleSeparator8 = new DevExpress.XtraLayout.SimpleSeparator();
  120. this.simpleSeparator3 = new DevExpress.XtraLayout.SimpleSeparator();
  121. this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
  122. this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
  123. this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
  124. this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
  125. this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
  126. this.lbl_all_entrance_2_name = new DevExpress.XtraLayout.SimpleLabelItem();
  127. this.lbl_all_entrance_all_name = new DevExpress.XtraLayout.SimpleLabelItem();
  128. this.simpleLabelItem7 = new DevExpress.XtraLayout.SimpleLabelItem();
  129. this.lbl_all_entrance_1_team = new DevExpress.XtraLayout.SimpleLabelItem();
  130. this.lbl_all_entrance_2_team = new DevExpress.XtraLayout.SimpleLabelItem();
  131. this.lbl_all_entrance_all_team = new DevExpress.XtraLayout.SimpleLabelItem();
  132. this.simpleLabelItem8 = new DevExpress.XtraLayout.SimpleLabelItem();
  133. this.lbl_all_entrance_1_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  134. this.lbl_all_entrance_2_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  135. this.lbl_all_entrance_all_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  136. this.lbl_all_entrance_1_name = new DevExpress.XtraLayout.SimpleLabelItem();
  137. this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
  138. this.simpleSeparator11 = new DevExpress.XtraLayout.SimpleSeparator();
  139. this.simpleSeparator10 = new DevExpress.XtraLayout.SimpleSeparator();
  140. this.group_1 = new DevExpress.XtraLayout.LayoutControlGroup();
  141. this.simpleLabelItem2 = new DevExpress.XtraLayout.SimpleLabelItem();
  142. this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
  143. this.emptySpaceItem7 = new DevExpress.XtraLayout.EmptySpaceItem();
  144. this.lbl_1_entrance_1_name = new DevExpress.XtraLayout.SimpleLabelItem();
  145. this.lbl_1_entrance_1_team = new DevExpress.XtraLayout.SimpleLabelItem();
  146. this.lbl_1_entrance_1_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  147. this.lbl_1_entrance_2_name = new DevExpress.XtraLayout.SimpleLabelItem();
  148. this.lbl_1_entrance_2_team = new DevExpress.XtraLayout.SimpleLabelItem();
  149. this.lbl_1_entrance_2_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  150. this.lbl_1_entrance_all_name = new DevExpress.XtraLayout.SimpleLabelItem();
  151. this.lbl_1_entrance_all_team = new DevExpress.XtraLayout.SimpleLabelItem();
  152. this.lbl_1_entrance_all_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  153. this.simpleSeparator18 = new DevExpress.XtraLayout.SimpleSeparator();
  154. this.simpleSeparator2 = new DevExpress.XtraLayout.SimpleSeparator();
  155. this.simpleSeparator13 = new DevExpress.XtraLayout.SimpleSeparator();
  156. this.simpleSeparator16 = new DevExpress.XtraLayout.SimpleSeparator();
  157. this.simpleSeparator5 = new DevExpress.XtraLayout.SimpleSeparator();
  158. this.group_2 = new DevExpress.XtraLayout.LayoutControlGroup();
  159. this.simpleLabelItem12 = new DevExpress.XtraLayout.SimpleLabelItem();
  160. this.simpleLabelItem13 = new DevExpress.XtraLayout.SimpleLabelItem();
  161. this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
  162. this.lbl_2_entrance_1_name = new DevExpress.XtraLayout.SimpleLabelItem();
  163. this.lbl_2_entrance_1_team = new DevExpress.XtraLayout.SimpleLabelItem();
  164. this.lbl_2_entrance_1_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  165. this.lbl_2_entrance_2_name = new DevExpress.XtraLayout.SimpleLabelItem();
  166. this.lbl_2_entrance_2_team = new DevExpress.XtraLayout.SimpleLabelItem();
  167. this.lbl_2_entrance_2_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  168. this.lbl_2_entrance_all_name = new DevExpress.XtraLayout.SimpleLabelItem();
  169. this.lbl_2_entrance_all_team = new DevExpress.XtraLayout.SimpleLabelItem();
  170. this.lbl_2_entrance_all_daily = new DevExpress.XtraLayout.SimpleLabelItem();
  171. this.simpleSeparator1 = new DevExpress.XtraLayout.SimpleSeparator();
  172. this.simpleSeparator19 = new DevExpress.XtraLayout.SimpleSeparator();
  173. this.simpleSeparator6 = new DevExpress.XtraLayout.SimpleSeparator();
  174. this.simpleSeparator7 = new DevExpress.XtraLayout.SimpleSeparator();
  175. this.simpleSeparator9 = new DevExpress.XtraLayout.SimpleSeparator();
  176. this.digitalGauge1 = new DevExpress.XtraGauges.Win.Gauges.Digital.DigitalGauge();
  177. this.digitalBackgroundLayerComponent1 = new DevExpress.XtraGauges.Win.Gauges.Digital.DigitalBackgroundLayerComponent();
  178. this.circularGauge1 = new DevExpress.XtraGauges.Win.Gauges.Circular.CircularGauge();
  179. ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
  180. this.layoutControl1.SuspendLayout();
  181. ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
  182. this.panelControl9.SuspendLayout();
  183. ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
  184. ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
  185. ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
  186. ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
  187. ((System.ComponentModel.ISupportInitialize)(areaSeriesView1)).BeginInit();
  188. ((System.ComponentModel.ISupportInitialize)(areaSeriesView2)).BeginInit();
  189. ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
  190. this.panelControl11.SuspendLayout();
  191. ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).BeginInit();
  192. ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
  193. ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
  194. ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
  195. ((System.ComponentModel.ISupportInitialize)(areaSeriesView3)).BeginInit();
  196. ((System.ComponentModel.ISupportInitialize)(areaSeriesView4)).BeginInit();
  197. ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
  198. this.panelControl5.SuspendLayout();
  199. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_2_2.Properties)).BeginInit();
  200. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_2_1.Properties)).BeginInit();
  201. ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
  202. this.panelControl2.SuspendLayout();
  203. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_1_2.Properties)).BeginInit();
  204. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_1_1.Properties)).BeginInit();
  205. ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).BeginInit();
  206. this.panelControl16.SuspendLayout();
  207. ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).BeginInit();
  208. this.panelControl21.SuspendLayout();
  209. ((System.ComponentModel.ISupportInitialize)(this.pic_yj_2.Properties)).BeginInit();
  210. ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).BeginInit();
  211. this.panelControl20.SuspendLayout();
  212. ((System.ComponentModel.ISupportInitialize)(this.pic_wd_2.Properties)).BeginInit();
  213. ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).BeginInit();
  214. this.panelControl19.SuspendLayout();
  215. ((System.ComponentModel.ISupportInitialize)(this.pic_lw_2.Properties)).BeginInit();
  216. ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).BeginInit();
  217. this.panelControl15.SuspendLayout();
  218. ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).BeginInit();
  219. this.panelControl14.SuspendLayout();
  220. ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).BeginInit();
  221. this.panelControl12.SuspendLayout();
  222. ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).BeginInit();
  223. this.panelControl17.SuspendLayout();
  224. ((System.ComponentModel.ISupportInitialize)(this.pic_isOnline_2.Properties)).BeginInit();
  225. ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
  226. this.panelControl10.SuspendLayout();
  227. ((System.ComponentModel.ISupportInitialize)(this.pic_isOnline_1.Properties)).BeginInit();
  228. ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).BeginInit();
  229. this.panelControl13.SuspendLayout();
  230. ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
  231. this.panelControl4.SuspendLayout();
  232. ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
  233. this.panelControl8.SuspendLayout();
  234. ((System.ComponentModel.ISupportInitialize)(this.pic_yj_1.Properties)).BeginInit();
  235. ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
  236. this.panelControl7.SuspendLayout();
  237. ((System.ComponentModel.ISupportInitialize)(this.pic_wd_1.Properties)).BeginInit();
  238. ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
  239. this.panelControl6.SuspendLayout();
  240. ((System.ComponentModel.ISupportInitialize)(this.pic_lw_1.Properties)).BeginInit();
  241. ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
  242. this.panelControl3.SuspendLayout();
  243. ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
  244. this.panelControl1.SuspendLayout();
  245. ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
  246. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
  247. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
  248. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
  249. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
  250. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
  251. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
  253. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
  254. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator4)).BeginInit();
  255. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator8)).BeginInit();
  256. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).BeginInit();
  257. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
  259. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
  260. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
  261. ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
  262. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_2_name)).BeginInit();
  263. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_all_name)).BeginInit();
  264. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem7)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_1_team)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_2_team)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_all_team)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem8)).BeginInit();
  269. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_1_daily)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_2_daily)).BeginInit();
  271. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_all_daily)).BeginInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_1_name)).BeginInit();
  273. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
  274. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator11)).BeginInit();
  275. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator10)).BeginInit();
  276. ((System.ComponentModel.ISupportInitialize)(this.group_1)).BeginInit();
  277. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).BeginInit();
  278. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
  279. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).BeginInit();
  280. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_1_name)).BeginInit();
  281. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_1_team)).BeginInit();
  282. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_1_daily)).BeginInit();
  283. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_2_name)).BeginInit();
  284. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_2_team)).BeginInit();
  285. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_2_daily)).BeginInit();
  286. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_all_name)).BeginInit();
  287. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_all_team)).BeginInit();
  288. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_all_daily)).BeginInit();
  289. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator18)).BeginInit();
  290. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).BeginInit();
  291. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator13)).BeginInit();
  292. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator16)).BeginInit();
  293. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator5)).BeginInit();
  294. ((System.ComponentModel.ISupportInitialize)(this.group_2)).BeginInit();
  295. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem12)).BeginInit();
  296. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).BeginInit();
  297. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
  298. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_1_name)).BeginInit();
  299. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_1_team)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_1_daily)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_2_name)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_2_team)).BeginInit();
  303. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_2_daily)).BeginInit();
  304. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_all_name)).BeginInit();
  305. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_all_team)).BeginInit();
  306. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_all_daily)).BeginInit();
  307. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).BeginInit();
  308. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator19)).BeginInit();
  309. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator6)).BeginInit();
  310. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator7)).BeginInit();
  311. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator9)).BeginInit();
  312. ((System.ComponentModel.ISupportInitialize)(this.digitalGauge1)).BeginInit();
  313. ((System.ComponentModel.ISupportInitialize)(this.digitalBackgroundLayerComponent1)).BeginInit();
  314. ((System.ComponentModel.ISupportInitialize)(this.circularGauge1)).BeginInit();
  315. this.SuspendLayout();
  316. //
  317. // layoutControl1
  318. //
  319. this.layoutControl1.Appearance.Control.BorderColor = ((System.Drawing.Color)(resources.GetObject("layoutControl1.Appearance.Control.BorderColor")));
  320. this.layoutControl1.Appearance.Control.Options.UseBorderColor = true;
  321. this.layoutControl1.Controls.Add(this.panelControl9);
  322. this.layoutControl1.Controls.Add(this.panelControl11);
  323. this.layoutControl1.Controls.Add(this.panelControl5);
  324. this.layoutControl1.Controls.Add(this.panelControl2);
  325. this.layoutControl1.Controls.Add(this.panelControl16);
  326. this.layoutControl1.Controls.Add(this.panelControl15);
  327. this.layoutControl1.Controls.Add(this.panelControl14);
  328. this.layoutControl1.Controls.Add(this.panelControl12);
  329. this.layoutControl1.Controls.Add(this.panelControl10);
  330. this.layoutControl1.Controls.Add(this.panelControl4);
  331. this.layoutControl1.Controls.Add(this.panelControl3);
  332. this.layoutControl1.Controls.Add(this.panelControl1);
  333. resources.ApplyResources(this.layoutControl1, "layoutControl1");
  334. this.layoutControl1.Name = "layoutControl1";
  335. this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(736, 215, 723, 411);
  336. this.layoutControl1.Root = this.layoutControlGroup1;
  337. //
  338. // panelControl9
  339. //
  340. this.panelControl9.Controls.Add(this.chartControl1);
  341. resources.ApplyResources(this.panelControl9, "panelControl9");
  342. this.panelControl9.Name = "panelControl9";
  343. //
  344. // chartControl1
  345. //
  346. xyDiagram1.AxisX.DateTimeScaleOptions.AutoGrid = false;
  347. xyDiagram1.AxisX.DateTimeScaleOptions.GridSpacing = 2D;
  348. xyDiagram1.AxisX.DateTimeScaleOptions.ScaleMode = DevExpress.XtraCharts.ScaleMode.Automatic;
  349. xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
  350. xyDiagram1.AxisX.WholeRange.AutoSideMargins = false;
  351. xyDiagram1.AxisX.WholeRange.SideMarginsValue = 0D;
  352. xyDiagram1.AxisY.Label.TextPattern = "{V:#,#}T";
  353. xyDiagram1.AxisY.NumericScaleOptions.AutoGrid = false;
  354. xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
  355. xyDiagram1.EnableAxisXScrolling = true;
  356. xyDiagram1.EnableAxisXZooming = true;
  357. this.chartControl1.Diagram = xyDiagram1;
  358. resources.ApplyResources(this.chartControl1, "chartControl1");
  359. this.chartControl1.Legend.Name = "Default Legend";
  360. this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
  361. this.chartControl1.Name = "chartControl1";
  362. series1.ArgumentDataMember = "Time";
  363. series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.DateTime;
  364. series1.CrosshairLabelPattern = "{A:HH:mm}\n{V:.##}T";
  365. pointSeriesLabel1.TextPattern = "{V:0.00}T";
  366. series1.Label = pointSeriesLabel1;
  367. series1.LabelsVisibility = DevExpress.Utils.DefaultBoolean.True;
  368. series1.LegendName = "Default Legend";
  369. series1.LegendTextPattern = "{A}\n{V:.#}T";
  370. series1.ToolTipEnabled = DevExpress.Utils.DefaultBoolean.False;
  371. series1.ToolTipPointPattern = "{A}\n{V:.#}T";
  372. series1.ValueDataMembersSerializable = "Weight";
  373. areaSeriesView1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(208)))), ((int)(((byte)(80)))));
  374. areaSeriesView1.MarkerOptions.Size = 6;
  375. areaSeriesView1.MarkerVisibility = DevExpress.Utils.DefaultBoolean.False;
  376. series1.View = areaSeriesView1;
  377. this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
  378. series1};
  379. areaSeriesView2.Transparency = ((byte)(0));
  380. this.chartControl1.SeriesTemplate.View = areaSeriesView2;
  381. //
  382. // panelControl11
  383. //
  384. this.panelControl11.Controls.Add(this.chartControl2);
  385. resources.ApplyResources(this.panelControl11, "panelControl11");
  386. this.panelControl11.Name = "panelControl11";
  387. //
  388. // chartControl2
  389. //
  390. xyDiagram2.AxisX.DateTimeScaleOptions.AutoGrid = false;
  391. xyDiagram2.AxisX.DateTimeScaleOptions.GridSpacing = 2D;
  392. xyDiagram2.AxisX.DateTimeScaleOptions.ScaleMode = DevExpress.XtraCharts.ScaleMode.Automatic;
  393. xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
  394. xyDiagram2.AxisX.WholeRange.AutoSideMargins = false;
  395. xyDiagram2.AxisX.WholeRange.SideMarginsValue = 0D;
  396. xyDiagram2.AxisY.Label.TextPattern = "{V:#,#}T";
  397. xyDiagram2.AxisY.NumericScaleOptions.AutoGrid = false;
  398. xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
  399. xyDiagram2.EnableAxisXScrolling = true;
  400. xyDiagram2.EnableAxisXZooming = true;
  401. this.chartControl2.Diagram = xyDiagram2;
  402. resources.ApplyResources(this.chartControl2, "chartControl2");
  403. this.chartControl2.Legend.Name = "Default Legend";
  404. this.chartControl2.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
  405. this.chartControl2.Name = "chartControl2";
  406. series2.ArgumentDataMember = "Time";
  407. series2.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.DateTime;
  408. series2.CrosshairLabelPattern = "{A:HH:mm}\n{V:.##}T";
  409. pointSeriesLabel2.TextPattern = "{V:0.00}T";
  410. series2.Label = pointSeriesLabel2;
  411. series2.LabelsVisibility = DevExpress.Utils.DefaultBoolean.True;
  412. series2.LegendName = "Default Legend";
  413. series2.LegendTextPattern = "{A}\n{V:.#}T";
  414. series2.ToolTipEnabled = DevExpress.Utils.DefaultBoolean.False;
  415. series2.ToolTipPointPattern = "{A}\n{V:.#}T";
  416. series2.ToolTipSeriesPattern = "{S:0.00}T";
  417. series2.ValueDataMembersSerializable = "Weight";
  418. areaSeriesView3.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(208)))), ((int)(((byte)(80)))));
  419. areaSeriesView3.MarkerOptions.Size = 6;
  420. areaSeriesView3.MarkerVisibility = DevExpress.Utils.DefaultBoolean.False;
  421. series2.View = areaSeriesView3;
  422. this.chartControl2.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
  423. series2};
  424. areaSeriesView4.Transparency = ((byte)(0));
  425. this.chartControl2.SeriesTemplate.View = areaSeriesView4;
  426. //
  427. // panelControl5
  428. //
  429. this.panelControl5.Controls.Add(this.lbl_entrance_2);
  430. this.panelControl5.Controls.Add(this.pic_entrance_2_2);
  431. this.panelControl5.Controls.Add(this.pic_entrance_2_1);
  432. resources.ApplyResources(this.panelControl5, "panelControl5");
  433. this.panelControl5.Name = "panelControl5";
  434. //
  435. // lbl_entrance_2
  436. //
  437. this.lbl_entrance_2.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("lbl_entrance_2.Appearance.BackColor")));
  438. this.lbl_entrance_2.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_entrance_2.Appearance.Font")));
  439. this.lbl_entrance_2.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("lbl_entrance_2.Appearance.ForeColor")));
  440. this.lbl_entrance_2.Appearance.Options.UseBackColor = true;
  441. this.lbl_entrance_2.Appearance.Options.UseFont = true;
  442. this.lbl_entrance_2.Appearance.Options.UseForeColor = true;
  443. resources.ApplyResources(this.lbl_entrance_2, "lbl_entrance_2");
  444. this.lbl_entrance_2.Name = "lbl_entrance_2";
  445. //
  446. // pic_entrance_2_2
  447. //
  448. resources.ApplyResources(this.pic_entrance_2_2, "pic_entrance_2_2");
  449. this.pic_entrance_2_2.EditValue = global::GCAS.Properties.Resources.fire_2;
  450. this.pic_entrance_2_2.Name = "pic_entrance_2_2";
  451. this.pic_entrance_2_2.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_entrance_2_2.Properties.Appearance.BackColor")));
  452. this.pic_entrance_2_2.Properties.Appearance.Options.UseBackColor = true;
  453. this.pic_entrance_2_2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  454. this.pic_entrance_2_2.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  455. this.pic_entrance_2_2.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  456. //
  457. // pic_entrance_2_1
  458. //
  459. resources.ApplyResources(this.pic_entrance_2_1, "pic_entrance_2_1");
  460. this.pic_entrance_2_1.EditValue = global::GCAS.Properties.Resources.fire_1;
  461. this.pic_entrance_2_1.Name = "pic_entrance_2_1";
  462. this.pic_entrance_2_1.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_entrance_2_1.Properties.Appearance.BackColor")));
  463. this.pic_entrance_2_1.Properties.Appearance.Options.UseBackColor = true;
  464. this.pic_entrance_2_1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  465. this.pic_entrance_2_1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  466. this.pic_entrance_2_1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  467. //
  468. // panelControl2
  469. //
  470. this.panelControl2.Controls.Add(this.lbl_entrance_1);
  471. this.panelControl2.Controls.Add(this.pic_entrance_1_2);
  472. this.panelControl2.Controls.Add(this.pic_entrance_1_1);
  473. resources.ApplyResources(this.panelControl2, "panelControl2");
  474. this.panelControl2.Name = "panelControl2";
  475. //
  476. // lbl_entrance_1
  477. //
  478. this.lbl_entrance_1.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("lbl_entrance_1.Appearance.BackColor")));
  479. this.lbl_entrance_1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_entrance_1.Appearance.Font")));
  480. this.lbl_entrance_1.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("lbl_entrance_1.Appearance.ForeColor")));
  481. this.lbl_entrance_1.Appearance.Options.UseBackColor = true;
  482. this.lbl_entrance_1.Appearance.Options.UseFont = true;
  483. this.lbl_entrance_1.Appearance.Options.UseForeColor = true;
  484. resources.ApplyResources(this.lbl_entrance_1, "lbl_entrance_1");
  485. this.lbl_entrance_1.Name = "lbl_entrance_1";
  486. //
  487. // pic_entrance_1_2
  488. //
  489. resources.ApplyResources(this.pic_entrance_1_2, "pic_entrance_1_2");
  490. this.pic_entrance_1_2.EditValue = global::GCAS.Properties.Resources.fire_2;
  491. this.pic_entrance_1_2.Name = "pic_entrance_1_2";
  492. this.pic_entrance_1_2.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_entrance_1_2.Properties.Appearance.BackColor")));
  493. this.pic_entrance_1_2.Properties.Appearance.Options.UseBackColor = true;
  494. this.pic_entrance_1_2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  495. this.pic_entrance_1_2.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  496. this.pic_entrance_1_2.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  497. //
  498. // pic_entrance_1_1
  499. //
  500. resources.ApplyResources(this.pic_entrance_1_1, "pic_entrance_1_1");
  501. this.pic_entrance_1_1.EditValue = global::GCAS.Properties.Resources.fire_1;
  502. this.pic_entrance_1_1.Name = "pic_entrance_1_1";
  503. this.pic_entrance_1_1.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_entrance_1_1.Properties.Appearance.BackColor")));
  504. this.pic_entrance_1_1.Properties.Appearance.Options.UseBackColor = true;
  505. this.pic_entrance_1_1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  506. this.pic_entrance_1_1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  507. this.pic_entrance_1_1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  508. //
  509. // panelControl16
  510. //
  511. this.panelControl16.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl16.Appearance.BackColor")));
  512. this.panelControl16.Appearance.Options.UseBackColor = true;
  513. this.panelControl16.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  514. this.panelControl16.Controls.Add(this.panelControl21);
  515. this.panelControl16.Controls.Add(this.panelControl20);
  516. this.panelControl16.Controls.Add(this.panelControl19);
  517. resources.ApplyResources(this.panelControl16, "panelControl16");
  518. this.panelControl16.Name = "panelControl16";
  519. //
  520. // panelControl21
  521. //
  522. this.panelControl21.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl21.Appearance.BackColor")));
  523. this.panelControl21.Appearance.Options.UseBackColor = true;
  524. this.panelControl21.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  525. this.panelControl21.Controls.Add(this.lbl_yj_2);
  526. this.panelControl21.Controls.Add(this.pic_yj_2);
  527. resources.ApplyResources(this.panelControl21, "panelControl21");
  528. this.panelControl21.Name = "panelControl21";
  529. //
  530. // lbl_yj_2
  531. //
  532. resources.ApplyResources(this.lbl_yj_2, "lbl_yj_2");
  533. this.lbl_yj_2.Name = "lbl_yj_2";
  534. //
  535. // pic_yj_2
  536. //
  537. resources.ApplyResources(this.pic_yj_2, "pic_yj_2");
  538. this.pic_yj_2.Name = "pic_yj_2";
  539. this.pic_yj_2.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_yj_2.Properties.Appearance.BackColor")));
  540. this.pic_yj_2.Properties.Appearance.Options.UseBackColor = true;
  541. this.pic_yj_2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  542. this.pic_yj_2.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  543. this.pic_yj_2.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  544. //
  545. // panelControl20
  546. //
  547. this.panelControl20.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl20.Appearance.BackColor")));
  548. this.panelControl20.Appearance.Options.UseBackColor = true;
  549. this.panelControl20.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  550. this.panelControl20.Controls.Add(this.labelControl20);
  551. this.panelControl20.Controls.Add(this.pic_wd_2);
  552. resources.ApplyResources(this.panelControl20, "panelControl20");
  553. this.panelControl20.Name = "panelControl20";
  554. //
  555. // labelControl20
  556. //
  557. resources.ApplyResources(this.labelControl20, "labelControl20");
  558. this.labelControl20.Name = "labelControl20";
  559. //
  560. // pic_wd_2
  561. //
  562. resources.ApplyResources(this.pic_wd_2, "pic_wd_2");
  563. this.pic_wd_2.Name = "pic_wd_2";
  564. this.pic_wd_2.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_wd_2.Properties.Appearance.BackColor")));
  565. this.pic_wd_2.Properties.Appearance.Options.UseBackColor = true;
  566. this.pic_wd_2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  567. this.pic_wd_2.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  568. this.pic_wd_2.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  569. //
  570. // panelControl19
  571. //
  572. this.panelControl19.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  573. this.panelControl19.Controls.Add(this.labelControl19);
  574. this.panelControl19.Controls.Add(this.pic_lw_2);
  575. resources.ApplyResources(this.panelControl19, "panelControl19");
  576. this.panelControl19.Name = "panelControl19";
  577. //
  578. // labelControl19
  579. //
  580. resources.ApplyResources(this.labelControl19, "labelControl19");
  581. this.labelControl19.Name = "labelControl19";
  582. //
  583. // pic_lw_2
  584. //
  585. resources.ApplyResources(this.pic_lw_2, "pic_lw_2");
  586. this.pic_lw_2.Name = "pic_lw_2";
  587. this.pic_lw_2.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_lw_2.Properties.Appearance.BackColor")));
  588. this.pic_lw_2.Properties.Appearance.Options.UseBackColor = true;
  589. this.pic_lw_2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  590. this.pic_lw_2.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  591. this.pic_lw_2.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  592. //
  593. // panelControl15
  594. //
  595. this.panelControl15.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl15.Appearance.BackColor")));
  596. this.panelControl15.Appearance.Options.UseBackColor = true;
  597. this.panelControl15.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  598. this.panelControl15.Controls.Add(this.labelControl15);
  599. this.panelControl15.Controls.Add(this.lbl_total_2);
  600. this.panelControl15.Controls.Add(this.labelControl8);
  601. resources.ApplyResources(this.panelControl15, "panelControl15");
  602. this.panelControl15.Name = "panelControl15";
  603. //
  604. // labelControl15
  605. //
  606. resources.ApplyResources(this.labelControl15, "labelControl15");
  607. this.labelControl15.Name = "labelControl15";
  608. //
  609. // lbl_total_2
  610. //
  611. this.lbl_total_2.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_total_2.Appearance.Font")));
  612. this.lbl_total_2.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("lbl_total_2.Appearance.ForeColor")));
  613. this.lbl_total_2.Appearance.Options.UseFont = true;
  614. this.lbl_total_2.Appearance.Options.UseForeColor = true;
  615. this.lbl_total_2.Appearance.Options.UseTextOptions = true;
  616. this.lbl_total_2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  617. this.lbl_total_2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  618. resources.ApplyResources(this.lbl_total_2, "lbl_total_2");
  619. this.lbl_total_2.Name = "lbl_total_2";
  620. //
  621. // labelControl8
  622. //
  623. this.labelControl8.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl8.Appearance.Font")));
  624. this.labelControl8.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("labelControl8.Appearance.ForeColor")));
  625. this.labelControl8.Appearance.Options.UseFont = true;
  626. this.labelControl8.Appearance.Options.UseForeColor = true;
  627. this.labelControl8.Appearance.Options.UseTextOptions = true;
  628. this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  629. this.labelControl8.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  630. resources.ApplyResources(this.labelControl8, "labelControl8");
  631. this.labelControl8.Name = "labelControl8";
  632. //
  633. // panelControl14
  634. //
  635. this.panelControl14.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl14.Appearance.BackColor")));
  636. this.panelControl14.Appearance.Options.UseBackColor = true;
  637. this.panelControl14.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  638. this.panelControl14.Controls.Add(this.labelControl11);
  639. this.panelControl14.Controls.Add(this.lbl_netWeight_2);
  640. this.panelControl14.Controls.Add(this.labelControl5);
  641. resources.ApplyResources(this.panelControl14, "panelControl14");
  642. this.panelControl14.Name = "panelControl14";
  643. //
  644. // labelControl11
  645. //
  646. resources.ApplyResources(this.labelControl11, "labelControl11");
  647. this.labelControl11.Name = "labelControl11";
  648. //
  649. // lbl_netWeight_2
  650. //
  651. this.lbl_netWeight_2.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_netWeight_2.Appearance.Font")));
  652. this.lbl_netWeight_2.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("lbl_netWeight_2.Appearance.ForeColor")));
  653. this.lbl_netWeight_2.Appearance.Options.UseFont = true;
  654. this.lbl_netWeight_2.Appearance.Options.UseForeColor = true;
  655. this.lbl_netWeight_2.Appearance.Options.UseTextOptions = true;
  656. this.lbl_netWeight_2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  657. this.lbl_netWeight_2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  658. resources.ApplyResources(this.lbl_netWeight_2, "lbl_netWeight_2");
  659. this.lbl_netWeight_2.Name = "lbl_netWeight_2";
  660. //
  661. // labelControl5
  662. //
  663. this.labelControl5.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl5.Appearance.Font")));
  664. this.labelControl5.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("labelControl5.Appearance.ForeColor")));
  665. this.labelControl5.Appearance.Options.UseFont = true;
  666. this.labelControl5.Appearance.Options.UseForeColor = true;
  667. this.labelControl5.Appearance.Options.UseTextOptions = true;
  668. this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  669. this.labelControl5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  670. resources.ApplyResources(this.labelControl5, "labelControl5");
  671. this.labelControl5.Name = "labelControl5";
  672. //
  673. // panelControl12
  674. //
  675. this.panelControl12.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl12.Appearance.BackColor")));
  676. this.panelControl12.Appearance.Options.UseBackColor = true;
  677. this.panelControl12.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  678. this.panelControl12.Controls.Add(this.panelControl17);
  679. this.panelControl12.Controls.Add(this.lbl_isOnline_2);
  680. this.panelControl12.Controls.Add(this.pic_isOnline_2);
  681. this.panelControl12.Controls.Add(this.lbl_devcieName_2);
  682. resources.ApplyResources(this.panelControl12, "panelControl12");
  683. this.panelControl12.Name = "panelControl12";
  684. this.panelControl12.Resize += new System.EventHandler(this.panelControl12_Resize);
  685. //
  686. // panelControl17
  687. //
  688. this.panelControl17.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  689. this.panelControl17.Controls.Add(this.lbl_team_2);
  690. this.panelControl17.Controls.Add(this.lbl_changeTeam2);
  691. this.panelControl17.Controls.Add(this.labelControl9);
  692. this.panelControl17.Controls.Add(this.labelControl2);
  693. resources.ApplyResources(this.panelControl17, "panelControl17");
  694. this.panelControl17.Name = "panelControl17";
  695. //
  696. // lbl_team_2
  697. //
  698. resources.ApplyResources(this.lbl_team_2, "lbl_team_2");
  699. this.lbl_team_2.Name = "lbl_team_2";
  700. //
  701. // lbl_changeTeam2
  702. //
  703. resources.ApplyResources(this.lbl_changeTeam2, "lbl_changeTeam2");
  704. this.lbl_changeTeam2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
  705. this.lbl_changeTeam2.Name = "lbl_changeTeam2";
  706. //
  707. // labelControl9
  708. //
  709. resources.ApplyResources(this.labelControl9, "labelControl9");
  710. this.labelControl9.Name = "labelControl9";
  711. //
  712. // labelControl2
  713. //
  714. this.labelControl2.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("labelControl2.Appearance.ForeColor")));
  715. this.labelControl2.Appearance.Options.UseForeColor = true;
  716. resources.ApplyResources(this.labelControl2, "labelControl2");
  717. this.labelControl2.Name = "labelControl2";
  718. //
  719. // lbl_isOnline_2
  720. //
  721. resources.ApplyResources(this.lbl_isOnline_2, "lbl_isOnline_2");
  722. this.lbl_isOnline_2.Name = "lbl_isOnline_2";
  723. //
  724. // pic_isOnline_2
  725. //
  726. resources.ApplyResources(this.pic_isOnline_2, "pic_isOnline_2");
  727. this.pic_isOnline_2.Name = "pic_isOnline_2";
  728. this.pic_isOnline_2.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_isOnline_2.Properties.Appearance.BackColor")));
  729. this.pic_isOnline_2.Properties.Appearance.Options.UseBackColor = true;
  730. this.pic_isOnline_2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  731. this.pic_isOnline_2.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  732. this.pic_isOnline_2.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  733. //
  734. // lbl_devcieName_2
  735. //
  736. this.lbl_devcieName_2.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_devcieName_2.Appearance.Font")));
  737. this.lbl_devcieName_2.Appearance.Options.UseFont = true;
  738. resources.ApplyResources(this.lbl_devcieName_2, "lbl_devcieName_2");
  739. this.lbl_devcieName_2.Name = "lbl_devcieName_2";
  740. //
  741. // panelControl10
  742. //
  743. this.panelControl10.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl10.Appearance.BackColor")));
  744. this.panelControl10.Appearance.Options.UseBackColor = true;
  745. this.panelControl10.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  746. this.panelControl10.Controls.Add(this.lbl_isOnline_1);
  747. this.panelControl10.Controls.Add(this.pic_isOnline_1);
  748. this.panelControl10.Controls.Add(this.lbl_devcieName_1);
  749. this.panelControl10.Controls.Add(this.panelControl13);
  750. resources.ApplyResources(this.panelControl10, "panelControl10");
  751. this.panelControl10.Name = "panelControl10";
  752. this.panelControl10.Resize += new System.EventHandler(this.panelControl10_Resize);
  753. //
  754. // lbl_isOnline_1
  755. //
  756. resources.ApplyResources(this.lbl_isOnline_1, "lbl_isOnline_1");
  757. this.lbl_isOnline_1.Name = "lbl_isOnline_1";
  758. //
  759. // pic_isOnline_1
  760. //
  761. resources.ApplyResources(this.pic_isOnline_1, "pic_isOnline_1");
  762. this.pic_isOnline_1.Name = "pic_isOnline_1";
  763. this.pic_isOnline_1.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_isOnline_1.Properties.Appearance.BackColor")));
  764. this.pic_isOnline_1.Properties.Appearance.Options.UseBackColor = true;
  765. this.pic_isOnline_1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  766. this.pic_isOnline_1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  767. this.pic_isOnline_1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  768. //
  769. // lbl_devcieName_1
  770. //
  771. this.lbl_devcieName_1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_devcieName_1.Appearance.Font")));
  772. this.lbl_devcieName_1.Appearance.Options.UseFont = true;
  773. resources.ApplyResources(this.lbl_devcieName_1, "lbl_devcieName_1");
  774. this.lbl_devcieName_1.Name = "lbl_devcieName_1";
  775. //
  776. // panelControl13
  777. //
  778. this.panelControl13.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  779. this.panelControl13.Controls.Add(this.labelControl12);
  780. this.panelControl13.Controls.Add(this.lbl_changeTeam1);
  781. this.panelControl13.Controls.Add(this.lbl_team_1);
  782. resources.ApplyResources(this.panelControl13, "panelControl13");
  783. this.panelControl13.Name = "panelControl13";
  784. //
  785. // labelControl12
  786. //
  787. resources.ApplyResources(this.labelControl12, "labelControl12");
  788. this.labelControl12.Name = "labelControl12";
  789. //
  790. // lbl_changeTeam1
  791. //
  792. resources.ApplyResources(this.lbl_changeTeam1, "lbl_changeTeam1");
  793. this.lbl_changeTeam1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
  794. this.lbl_changeTeam1.Name = "lbl_changeTeam1";
  795. //
  796. // lbl_team_1
  797. //
  798. resources.ApplyResources(this.lbl_team_1, "lbl_team_1");
  799. this.lbl_team_1.Name = "lbl_team_1";
  800. //
  801. // panelControl4
  802. //
  803. this.panelControl4.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl4.Appearance.BackColor")));
  804. this.panelControl4.Appearance.Options.UseBackColor = true;
  805. this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  806. this.panelControl4.Controls.Add(this.panelControl8);
  807. this.panelControl4.Controls.Add(this.panelControl7);
  808. this.panelControl4.Controls.Add(this.panelControl6);
  809. resources.ApplyResources(this.panelControl4, "panelControl4");
  810. this.panelControl4.Name = "panelControl4";
  811. //
  812. // panelControl8
  813. //
  814. this.panelControl8.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl8.Appearance.BackColor")));
  815. this.panelControl8.Appearance.Options.UseBackColor = true;
  816. this.panelControl8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  817. this.panelControl8.Controls.Add(this.lbl_yj_1);
  818. this.panelControl8.Controls.Add(this.pic_yj_1);
  819. resources.ApplyResources(this.panelControl8, "panelControl8");
  820. this.panelControl8.Name = "panelControl8";
  821. //
  822. // lbl_yj_1
  823. //
  824. resources.ApplyResources(this.lbl_yj_1, "lbl_yj_1");
  825. this.lbl_yj_1.Name = "lbl_yj_1";
  826. //
  827. // pic_yj_1
  828. //
  829. resources.ApplyResources(this.pic_yj_1, "pic_yj_1");
  830. this.pic_yj_1.Name = "pic_yj_1";
  831. this.pic_yj_1.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_yj_1.Properties.Appearance.BackColor")));
  832. this.pic_yj_1.Properties.Appearance.Options.UseBackColor = true;
  833. this.pic_yj_1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  834. this.pic_yj_1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  835. this.pic_yj_1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  836. //
  837. // panelControl7
  838. //
  839. this.panelControl7.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl7.Appearance.BackColor")));
  840. this.panelControl7.Appearance.Options.UseBackColor = true;
  841. this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  842. this.panelControl7.Controls.Add(this.lbl_wd_1);
  843. this.panelControl7.Controls.Add(this.pic_wd_1);
  844. resources.ApplyResources(this.panelControl7, "panelControl7");
  845. this.panelControl7.Name = "panelControl7";
  846. //
  847. // lbl_wd_1
  848. //
  849. resources.ApplyResources(this.lbl_wd_1, "lbl_wd_1");
  850. this.lbl_wd_1.Name = "lbl_wd_1";
  851. //
  852. // pic_wd_1
  853. //
  854. resources.ApplyResources(this.pic_wd_1, "pic_wd_1");
  855. this.pic_wd_1.Name = "pic_wd_1";
  856. this.pic_wd_1.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_wd_1.Properties.Appearance.BackColor")));
  857. this.pic_wd_1.Properties.Appearance.Options.UseBackColor = true;
  858. this.pic_wd_1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  859. this.pic_wd_1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  860. this.pic_wd_1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  861. //
  862. // panelControl6
  863. //
  864. this.panelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  865. this.panelControl6.Controls.Add(this.labelControl6);
  866. this.panelControl6.Controls.Add(this.pic_lw_1);
  867. resources.ApplyResources(this.panelControl6, "panelControl6");
  868. this.panelControl6.Name = "panelControl6";
  869. //
  870. // labelControl6
  871. //
  872. resources.ApplyResources(this.labelControl6, "labelControl6");
  873. this.labelControl6.Name = "labelControl6";
  874. //
  875. // pic_lw_1
  876. //
  877. resources.ApplyResources(this.pic_lw_1, "pic_lw_1");
  878. this.pic_lw_1.Name = "pic_lw_1";
  879. this.pic_lw_1.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("pic_lw_1.Properties.Appearance.BackColor")));
  880. this.pic_lw_1.Properties.Appearance.Options.UseBackColor = true;
  881. this.pic_lw_1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  882. this.pic_lw_1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
  883. this.pic_lw_1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
  884. //
  885. // panelControl3
  886. //
  887. this.panelControl3.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl3.Appearance.BackColor")));
  888. this.panelControl3.Appearance.Options.UseBackColor = true;
  889. this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  890. this.panelControl3.Controls.Add(this.labelControl4);
  891. this.panelControl3.Controls.Add(this.lbl_total_1);
  892. this.panelControl3.Controls.Add(this.labelControl7);
  893. resources.ApplyResources(this.panelControl3, "panelControl3");
  894. this.panelControl3.Name = "panelControl3";
  895. //
  896. // labelControl4
  897. //
  898. resources.ApplyResources(this.labelControl4, "labelControl4");
  899. this.labelControl4.Name = "labelControl4";
  900. //
  901. // lbl_total_1
  902. //
  903. this.lbl_total_1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_total_1.Appearance.Font")));
  904. this.lbl_total_1.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("lbl_total_1.Appearance.ForeColor")));
  905. this.lbl_total_1.Appearance.Options.UseFont = true;
  906. this.lbl_total_1.Appearance.Options.UseForeColor = true;
  907. this.lbl_total_1.Appearance.Options.UseTextOptions = true;
  908. this.lbl_total_1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  909. this.lbl_total_1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  910. resources.ApplyResources(this.lbl_total_1, "lbl_total_1");
  911. this.lbl_total_1.Name = "lbl_total_1";
  912. //
  913. // labelControl7
  914. //
  915. this.labelControl7.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl7.Appearance.Font")));
  916. this.labelControl7.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("labelControl7.Appearance.ForeColor")));
  917. this.labelControl7.Appearance.Options.UseFont = true;
  918. this.labelControl7.Appearance.Options.UseForeColor = true;
  919. this.labelControl7.Appearance.Options.UseTextOptions = true;
  920. this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  921. this.labelControl7.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  922. resources.ApplyResources(this.labelControl7, "labelControl7");
  923. this.labelControl7.Name = "labelControl7";
  924. //
  925. // panelControl1
  926. //
  927. this.panelControl1.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl1.Appearance.BackColor")));
  928. this.panelControl1.Appearance.Options.UseBackColor = true;
  929. this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
  930. this.panelControl1.Controls.Add(this.labelControl3);
  931. this.panelControl1.Controls.Add(this.lbl_netWeight_1);
  932. this.panelControl1.Controls.Add(this.labelControl1);
  933. resources.ApplyResources(this.panelControl1, "panelControl1");
  934. this.panelControl1.Name = "panelControl1";
  935. //
  936. // labelControl3
  937. //
  938. resources.ApplyResources(this.labelControl3, "labelControl3");
  939. this.labelControl3.Name = "labelControl3";
  940. //
  941. // lbl_netWeight_1
  942. //
  943. this.lbl_netWeight_1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lbl_netWeight_1.Appearance.Font")));
  944. this.lbl_netWeight_1.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("lbl_netWeight_1.Appearance.ForeColor")));
  945. this.lbl_netWeight_1.Appearance.Options.UseFont = true;
  946. this.lbl_netWeight_1.Appearance.Options.UseForeColor = true;
  947. this.lbl_netWeight_1.Appearance.Options.UseTextOptions = true;
  948. this.lbl_netWeight_1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  949. this.lbl_netWeight_1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  950. resources.ApplyResources(this.lbl_netWeight_1, "lbl_netWeight_1");
  951. this.lbl_netWeight_1.Name = "lbl_netWeight_1";
  952. //
  953. // labelControl1
  954. //
  955. this.labelControl1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl1.Appearance.Font")));
  956. this.labelControl1.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("labelControl1.Appearance.ForeColor")));
  957. this.labelControl1.Appearance.Options.UseFont = true;
  958. this.labelControl1.Appearance.Options.UseForeColor = true;
  959. this.labelControl1.Appearance.Options.UseTextOptions = true;
  960. this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
  961. this.labelControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Bottom;
  962. resources.ApplyResources(this.labelControl1, "labelControl1");
  963. this.labelControl1.Name = "labelControl1";
  964. //
  965. // layoutControlGroup1
  966. //
  967. this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
  968. this.layoutControlGroup1.GroupBordersVisible = false;
  969. this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
  970. this.layoutControlItem2,
  971. this.layoutControlItem3,
  972. this.layoutControlItem4,
  973. this.layoutControlItem9,
  974. this.layoutControlItem11,
  975. this.layoutControlItem13,
  976. this.layoutControlItem14,
  977. this.layoutControlItem15,
  978. this.simpleSeparator4,
  979. this.simpleSeparator8,
  980. this.simpleSeparator3,
  981. this.layoutControlItem1,
  982. this.layoutControlItem5,
  983. this.layoutControlItem6,
  984. this.layoutControlItem7,
  985. this.layoutControlGroup2,
  986. this.group_1,
  987. this.group_2});
  988. this.layoutControlGroup1.Name = "Root";
  989. this.layoutControlGroup1.Size = new System.Drawing.Size(1262, 786);
  990. this.layoutControlGroup1.TextVisible = false;
  991. //
  992. // layoutControlItem2
  993. //
  994. this.layoutControlItem2.Control = this.panelControl1;
  995. this.layoutControlItem2.Location = new System.Drawing.Point(0, 58);
  996. this.layoutControlItem2.MaxSize = new System.Drawing.Size(0, 63);
  997. this.layoutControlItem2.MinSize = new System.Drawing.Size(5, 63);
  998. this.layoutControlItem2.Name = "layoutControlItem2";
  999. this.layoutControlItem2.Size = new System.Drawing.Size(348, 63);
  1000. this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1001. this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
  1002. this.layoutControlItem2.TextVisible = false;
  1003. //
  1004. // layoutControlItem3
  1005. //
  1006. this.layoutControlItem3.Control = this.panelControl3;
  1007. this.layoutControlItem3.Location = new System.Drawing.Point(348, 58);
  1008. this.layoutControlItem3.MaxSize = new System.Drawing.Size(0, 63);
  1009. this.layoutControlItem3.MinSize = new System.Drawing.Size(5, 63);
  1010. this.layoutControlItem3.Name = "layoutControlItem3";
  1011. this.layoutControlItem3.Size = new System.Drawing.Size(273, 63);
  1012. this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1013. this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
  1014. this.layoutControlItem3.TextVisible = false;
  1015. //
  1016. // layoutControlItem4
  1017. //
  1018. this.layoutControlItem4.Control = this.panelControl4;
  1019. this.layoutControlItem4.Location = new System.Drawing.Point(0, 121);
  1020. this.layoutControlItem4.MaxSize = new System.Drawing.Size(0, 68);
  1021. this.layoutControlItem4.MinSize = new System.Drawing.Size(5, 68);
  1022. this.layoutControlItem4.Name = "layoutControlItem4";
  1023. this.layoutControlItem4.Size = new System.Drawing.Size(248, 68);
  1024. this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1025. this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
  1026. this.layoutControlItem4.TextVisible = false;
  1027. //
  1028. // layoutControlItem9
  1029. //
  1030. this.layoutControlItem9.Control = this.panelControl10;
  1031. this.layoutControlItem9.Location = new System.Drawing.Point(0, 0);
  1032. this.layoutControlItem9.MaxSize = new System.Drawing.Size(0, 58);
  1033. this.layoutControlItem9.MinSize = new System.Drawing.Size(5, 58);
  1034. this.layoutControlItem9.Name = "layoutControlItem9";
  1035. this.layoutControlItem9.Size = new System.Drawing.Size(621, 58);
  1036. this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1037. this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
  1038. this.layoutControlItem9.TextVisible = false;
  1039. //
  1040. // layoutControlItem11
  1041. //
  1042. this.layoutControlItem11.Control = this.panelControl12;
  1043. this.layoutControlItem11.Location = new System.Drawing.Point(623, 0);
  1044. this.layoutControlItem11.MaxSize = new System.Drawing.Size(0, 58);
  1045. this.layoutControlItem11.MinSize = new System.Drawing.Size(5, 58);
  1046. this.layoutControlItem11.Name = "layoutControlItem11";
  1047. this.layoutControlItem11.Size = new System.Drawing.Size(619, 58);
  1048. this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1049. this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
  1050. this.layoutControlItem11.TextVisible = false;
  1051. //
  1052. // layoutControlItem13
  1053. //
  1054. this.layoutControlItem13.Control = this.panelControl14;
  1055. this.layoutControlItem13.Location = new System.Drawing.Point(623, 58);
  1056. this.layoutControlItem13.MaxSize = new System.Drawing.Size(0, 63);
  1057. this.layoutControlItem13.MinSize = new System.Drawing.Size(5, 63);
  1058. this.layoutControlItem13.Name = "layoutControlItem13";
  1059. this.layoutControlItem13.Size = new System.Drawing.Size(346, 63);
  1060. this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1061. this.layoutControlItem13.TextSize = new System.Drawing.Size(0, 0);
  1062. this.layoutControlItem13.TextVisible = false;
  1063. //
  1064. // layoutControlItem14
  1065. //
  1066. this.layoutControlItem14.Control = this.panelControl15;
  1067. this.layoutControlItem14.Location = new System.Drawing.Point(969, 58);
  1068. this.layoutControlItem14.MaxSize = new System.Drawing.Size(0, 63);
  1069. this.layoutControlItem14.MinSize = new System.Drawing.Size(5, 63);
  1070. this.layoutControlItem14.Name = "layoutControlItem14";
  1071. this.layoutControlItem14.Size = new System.Drawing.Size(273, 63);
  1072. this.layoutControlItem14.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1073. this.layoutControlItem14.TextSize = new System.Drawing.Size(0, 0);
  1074. this.layoutControlItem14.TextVisible = false;
  1075. //
  1076. // layoutControlItem15
  1077. //
  1078. this.layoutControlItem15.Control = this.panelControl16;
  1079. this.layoutControlItem15.Location = new System.Drawing.Point(623, 121);
  1080. this.layoutControlItem15.MaxSize = new System.Drawing.Size(0, 68);
  1081. this.layoutControlItem15.MinSize = new System.Drawing.Size(5, 68);
  1082. this.layoutControlItem15.Name = "layoutControlItem15";
  1083. this.layoutControlItem15.Size = new System.Drawing.Size(249, 68);
  1084. this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1085. this.layoutControlItem15.TextSize = new System.Drawing.Size(0, 0);
  1086. this.layoutControlItem15.TextVisible = false;
  1087. //
  1088. // simpleSeparator4
  1089. //
  1090. this.simpleSeparator4.AllowHotTrack = false;
  1091. this.simpleSeparator4.Location = new System.Drawing.Point(0, 508);
  1092. this.simpleSeparator4.Name = "simpleSeparator4";
  1093. this.simpleSeparator4.Size = new System.Drawing.Size(621, 2);
  1094. //
  1095. // simpleSeparator8
  1096. //
  1097. this.simpleSeparator8.AllowHotTrack = false;
  1098. this.simpleSeparator8.Location = new System.Drawing.Point(0, 651);
  1099. this.simpleSeparator8.Name = "simpleSeparator8";
  1100. this.simpleSeparator8.Size = new System.Drawing.Size(1242, 2);
  1101. //
  1102. // simpleSeparator3
  1103. //
  1104. this.simpleSeparator3.AllowHotTrack = false;
  1105. this.simpleSeparator3.Location = new System.Drawing.Point(621, 0);
  1106. this.simpleSeparator3.Name = "simpleSeparator3";
  1107. this.simpleSeparator3.Size = new System.Drawing.Size(2, 651);
  1108. //
  1109. // layoutControlItem1
  1110. //
  1111. this.layoutControlItem1.Control = this.panelControl2;
  1112. this.layoutControlItem1.Location = new System.Drawing.Point(248, 121);
  1113. this.layoutControlItem1.MinSize = new System.Drawing.Size(5, 5);
  1114. this.layoutControlItem1.Name = "layoutControlItem1";
  1115. this.layoutControlItem1.Size = new System.Drawing.Size(373, 68);
  1116. this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1117. this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
  1118. this.layoutControlItem1.TextVisible = false;
  1119. //
  1120. // layoutControlItem5
  1121. //
  1122. this.layoutControlItem5.Control = this.panelControl5;
  1123. this.layoutControlItem5.Location = new System.Drawing.Point(872, 121);
  1124. this.layoutControlItem5.MinSize = new System.Drawing.Size(5, 5);
  1125. this.layoutControlItem5.Name = "layoutControlItem5";
  1126. this.layoutControlItem5.Size = new System.Drawing.Size(370, 68);
  1127. this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1128. this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
  1129. this.layoutControlItem5.TextVisible = false;
  1130. //
  1131. // layoutControlItem6
  1132. //
  1133. this.layoutControlItem6.Control = this.panelControl9;
  1134. this.layoutControlItem6.Location = new System.Drawing.Point(0, 189);
  1135. this.layoutControlItem6.MinSize = new System.Drawing.Size(5, 5);
  1136. this.layoutControlItem6.Name = "layoutControlItem6";
  1137. this.layoutControlItem6.Size = new System.Drawing.Size(621, 319);
  1138. this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1139. this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
  1140. this.layoutControlItem6.TextVisible = false;
  1141. //
  1142. // layoutControlItem7
  1143. //
  1144. this.layoutControlItem7.Control = this.panelControl11;
  1145. this.layoutControlItem7.Location = new System.Drawing.Point(623, 189);
  1146. this.layoutControlItem7.MinSize = new System.Drawing.Size(5, 5);
  1147. this.layoutControlItem7.Name = "layoutControlItem7";
  1148. this.layoutControlItem7.Size = new System.Drawing.Size(619, 321);
  1149. this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  1150. this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
  1151. this.layoutControlItem7.TextVisible = false;
  1152. //
  1153. // layoutControlGroup2
  1154. //
  1155. this.layoutControlGroup2.AppearanceGroup.BackColor = ((System.Drawing.Color)(resources.GetObject("layoutControlGroup2.AppearanceGroup.BackColor")));
  1156. this.layoutControlGroup2.AppearanceGroup.Options.UseBackColor = true;
  1157. this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
  1158. this.lbl_all_entrance_2_name,
  1159. this.lbl_all_entrance_all_name,
  1160. this.simpleLabelItem7,
  1161. this.lbl_all_entrance_1_team,
  1162. this.lbl_all_entrance_2_team,
  1163. this.lbl_all_entrance_all_team,
  1164. this.simpleLabelItem8,
  1165. this.lbl_all_entrance_1_daily,
  1166. this.lbl_all_entrance_2_daily,
  1167. this.lbl_all_entrance_all_daily,
  1168. this.lbl_all_entrance_1_name,
  1169. this.emptySpaceItem1,
  1170. this.simpleSeparator11,
  1171. this.simpleSeparator10});
  1172. this.layoutControlGroup2.Location = new System.Drawing.Point(0, 653);
  1173. this.layoutControlGroup2.Name = "layoutControlGroup2";
  1174. this.layoutControlGroup2.Size = new System.Drawing.Size(1242, 113);
  1175. resources.ApplyResources(this.layoutControlGroup2, "layoutControlGroup2");
  1176. //
  1177. // lbl_all_entrance_2_name
  1178. //
  1179. this.lbl_all_entrance_2_name.AllowHotTrack = false;
  1180. this.lbl_all_entrance_2_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_2_name.AppearanceItemCaption.Font")));
  1181. this.lbl_all_entrance_2_name.AppearanceItemCaption.Options.UseFont = true;
  1182. this.lbl_all_entrance_2_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1183. this.lbl_all_entrance_2_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1184. this.lbl_all_entrance_2_name.Location = new System.Drawing.Point(519, 0);
  1185. this.lbl_all_entrance_2_name.Name = "lbl_all_entrance_2_name";
  1186. this.lbl_all_entrance_2_name.Size = new System.Drawing.Size(360, 22);
  1187. resources.ApplyResources(this.lbl_all_entrance_2_name, "lbl_all_entrance_2_name");
  1188. this.lbl_all_entrance_2_name.TextSize = new System.Drawing.Size(64, 18);
  1189. //
  1190. // lbl_all_entrance_all_name
  1191. //
  1192. this.lbl_all_entrance_all_name.AllowHotTrack = false;
  1193. this.lbl_all_entrance_all_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_all_name.AppearanceItemCaption.Font")));
  1194. this.lbl_all_entrance_all_name.AppearanceItemCaption.Options.UseFont = true;
  1195. this.lbl_all_entrance_all_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1196. this.lbl_all_entrance_all_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1197. this.lbl_all_entrance_all_name.Location = new System.Drawing.Point(879, 0);
  1198. this.lbl_all_entrance_all_name.Name = "lbl_all_entrance_all_name";
  1199. this.lbl_all_entrance_all_name.Size = new System.Drawing.Size(339, 22);
  1200. resources.ApplyResources(this.lbl_all_entrance_all_name, "lbl_all_entrance_all_name");
  1201. this.lbl_all_entrance_all_name.TextSize = new System.Drawing.Size(64, 18);
  1202. //
  1203. // simpleLabelItem7
  1204. //
  1205. this.simpleLabelItem7.AllowHotTrack = false;
  1206. this.simpleLabelItem7.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("simpleLabelItem7.AppearanceItemCaption.Font")));
  1207. this.simpleLabelItem7.AppearanceItemCaption.Options.UseFont = true;
  1208. this.simpleLabelItem7.AppearanceItemCaption.Options.UseTextOptions = true;
  1209. this.simpleLabelItem7.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1210. resources.ApplyResources(this.simpleLabelItem7, "simpleLabelItem7");
  1211. this.simpleLabelItem7.Location = new System.Drawing.Point(0, 24);
  1212. this.simpleLabelItem7.Name = "simpleLabelItem7";
  1213. this.simpleLabelItem7.Size = new System.Drawing.Size(213, 22);
  1214. this.simpleLabelItem7.TextSize = new System.Drawing.Size(64, 18);
  1215. //
  1216. // lbl_all_entrance_1_team
  1217. //
  1218. this.lbl_all_entrance_1_team.AllowHotTrack = false;
  1219. this.lbl_all_entrance_1_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_1_team.AppearanceItemCaption.Font")));
  1220. this.lbl_all_entrance_1_team.AppearanceItemCaption.Options.UseFont = true;
  1221. this.lbl_all_entrance_1_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1222. this.lbl_all_entrance_1_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1223. this.lbl_all_entrance_1_team.Location = new System.Drawing.Point(213, 24);
  1224. this.lbl_all_entrance_1_team.Name = "lbl_all_entrance_1_team";
  1225. this.lbl_all_entrance_1_team.Size = new System.Drawing.Size(306, 22);
  1226. resources.ApplyResources(this.lbl_all_entrance_1_team, "lbl_all_entrance_1_team");
  1227. this.lbl_all_entrance_1_team.TextSize = new System.Drawing.Size(64, 18);
  1228. //
  1229. // lbl_all_entrance_2_team
  1230. //
  1231. this.lbl_all_entrance_2_team.AllowHotTrack = false;
  1232. this.lbl_all_entrance_2_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_2_team.AppearanceItemCaption.Font")));
  1233. this.lbl_all_entrance_2_team.AppearanceItemCaption.Options.UseFont = true;
  1234. this.lbl_all_entrance_2_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1235. this.lbl_all_entrance_2_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1236. this.lbl_all_entrance_2_team.Location = new System.Drawing.Point(519, 24);
  1237. this.lbl_all_entrance_2_team.Name = "lbl_all_entrance_2_team";
  1238. this.lbl_all_entrance_2_team.Size = new System.Drawing.Size(360, 22);
  1239. resources.ApplyResources(this.lbl_all_entrance_2_team, "lbl_all_entrance_2_team");
  1240. this.lbl_all_entrance_2_team.TextSize = new System.Drawing.Size(64, 18);
  1241. //
  1242. // lbl_all_entrance_all_team
  1243. //
  1244. this.lbl_all_entrance_all_team.AllowHotTrack = false;
  1245. this.lbl_all_entrance_all_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_all_team.AppearanceItemCaption.Font")));
  1246. this.lbl_all_entrance_all_team.AppearanceItemCaption.Options.UseFont = true;
  1247. this.lbl_all_entrance_all_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1248. this.lbl_all_entrance_all_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1249. this.lbl_all_entrance_all_team.Location = new System.Drawing.Point(879, 24);
  1250. this.lbl_all_entrance_all_team.Name = "lbl_all_entrance_all_team";
  1251. this.lbl_all_entrance_all_team.Size = new System.Drawing.Size(339, 22);
  1252. resources.ApplyResources(this.lbl_all_entrance_all_team, "lbl_all_entrance_all_team");
  1253. this.lbl_all_entrance_all_team.TextSize = new System.Drawing.Size(64, 18);
  1254. //
  1255. // simpleLabelItem8
  1256. //
  1257. this.simpleLabelItem8.AllowHotTrack = false;
  1258. this.simpleLabelItem8.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("simpleLabelItem8.AppearanceItemCaption.Font")));
  1259. this.simpleLabelItem8.AppearanceItemCaption.Options.UseFont = true;
  1260. this.simpleLabelItem8.AppearanceItemCaption.Options.UseTextOptions = true;
  1261. this.simpleLabelItem8.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1262. resources.ApplyResources(this.simpleLabelItem8, "simpleLabelItem8");
  1263. this.simpleLabelItem8.Location = new System.Drawing.Point(0, 48);
  1264. this.simpleLabelItem8.Name = "simpleLabelItem8";
  1265. this.simpleLabelItem8.Size = new System.Drawing.Size(213, 22);
  1266. this.simpleLabelItem8.TextSize = new System.Drawing.Size(64, 18);
  1267. //
  1268. // lbl_all_entrance_1_daily
  1269. //
  1270. this.lbl_all_entrance_1_daily.AllowHotTrack = false;
  1271. this.lbl_all_entrance_1_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_1_daily.AppearanceItemCaption.Font")));
  1272. this.lbl_all_entrance_1_daily.AppearanceItemCaption.Options.UseFont = true;
  1273. this.lbl_all_entrance_1_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1274. this.lbl_all_entrance_1_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1275. this.lbl_all_entrance_1_daily.Location = new System.Drawing.Point(213, 48);
  1276. this.lbl_all_entrance_1_daily.Name = "lbl_all_entrance_1_daily";
  1277. this.lbl_all_entrance_1_daily.Size = new System.Drawing.Size(306, 22);
  1278. resources.ApplyResources(this.lbl_all_entrance_1_daily, "lbl_all_entrance_1_daily");
  1279. this.lbl_all_entrance_1_daily.TextSize = new System.Drawing.Size(64, 18);
  1280. //
  1281. // lbl_all_entrance_2_daily
  1282. //
  1283. this.lbl_all_entrance_2_daily.AllowHotTrack = false;
  1284. this.lbl_all_entrance_2_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_2_daily.AppearanceItemCaption.Font")));
  1285. this.lbl_all_entrance_2_daily.AppearanceItemCaption.Options.UseFont = true;
  1286. this.lbl_all_entrance_2_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1287. this.lbl_all_entrance_2_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1288. this.lbl_all_entrance_2_daily.Location = new System.Drawing.Point(519, 48);
  1289. this.lbl_all_entrance_2_daily.Name = "lbl_all_entrance_2_daily";
  1290. this.lbl_all_entrance_2_daily.Size = new System.Drawing.Size(360, 22);
  1291. resources.ApplyResources(this.lbl_all_entrance_2_daily, "lbl_all_entrance_2_daily");
  1292. this.lbl_all_entrance_2_daily.TextSize = new System.Drawing.Size(64, 18);
  1293. //
  1294. // lbl_all_entrance_all_daily
  1295. //
  1296. this.lbl_all_entrance_all_daily.AllowHotTrack = false;
  1297. this.lbl_all_entrance_all_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_all_daily.AppearanceItemCaption.Font")));
  1298. this.lbl_all_entrance_all_daily.AppearanceItemCaption.Options.UseFont = true;
  1299. this.lbl_all_entrance_all_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1300. this.lbl_all_entrance_all_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1301. this.lbl_all_entrance_all_daily.Location = new System.Drawing.Point(879, 48);
  1302. this.lbl_all_entrance_all_daily.Name = "lbl_all_entrance_all_daily";
  1303. this.lbl_all_entrance_all_daily.Size = new System.Drawing.Size(339, 22);
  1304. resources.ApplyResources(this.lbl_all_entrance_all_daily, "lbl_all_entrance_all_daily");
  1305. this.lbl_all_entrance_all_daily.TextSize = new System.Drawing.Size(64, 18);
  1306. //
  1307. // lbl_all_entrance_1_name
  1308. //
  1309. this.lbl_all_entrance_1_name.AllowHotTrack = false;
  1310. this.lbl_all_entrance_1_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_all_entrance_1_name.AppearanceItemCaption.Font")));
  1311. this.lbl_all_entrance_1_name.AppearanceItemCaption.Options.UseFont = true;
  1312. this.lbl_all_entrance_1_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1313. this.lbl_all_entrance_1_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1314. this.lbl_all_entrance_1_name.Location = new System.Drawing.Point(213, 0);
  1315. this.lbl_all_entrance_1_name.Name = "lbl_all_entrance_1_name";
  1316. this.lbl_all_entrance_1_name.Size = new System.Drawing.Size(306, 22);
  1317. resources.ApplyResources(this.lbl_all_entrance_1_name, "lbl_all_entrance_1_name");
  1318. this.lbl_all_entrance_1_name.TextSize = new System.Drawing.Size(64, 18);
  1319. //
  1320. // emptySpaceItem1
  1321. //
  1322. this.emptySpaceItem1.AllowHotTrack = false;
  1323. this.emptySpaceItem1.Location = new System.Drawing.Point(0, 0);
  1324. this.emptySpaceItem1.Name = "emptySpaceItem1";
  1325. this.emptySpaceItem1.Size = new System.Drawing.Size(213, 22);
  1326. this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
  1327. //
  1328. // simpleSeparator11
  1329. //
  1330. this.simpleSeparator11.AllowHotTrack = false;
  1331. this.simpleSeparator11.Location = new System.Drawing.Point(0, 22);
  1332. this.simpleSeparator11.Name = "simpleSeparator11";
  1333. this.simpleSeparator11.Size = new System.Drawing.Size(1218, 2);
  1334. //
  1335. // simpleSeparator10
  1336. //
  1337. this.simpleSeparator10.AllowHotTrack = false;
  1338. this.simpleSeparator10.Location = new System.Drawing.Point(0, 46);
  1339. this.simpleSeparator10.Name = "simpleSeparator10";
  1340. this.simpleSeparator10.Size = new System.Drawing.Size(1218, 2);
  1341. //
  1342. // group_1
  1343. //
  1344. this.group_1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
  1345. this.simpleLabelItem2,
  1346. this.simpleLabelItem1,
  1347. this.emptySpaceItem7,
  1348. this.lbl_1_entrance_1_name,
  1349. this.lbl_1_entrance_1_team,
  1350. this.lbl_1_entrance_1_daily,
  1351. this.lbl_1_entrance_2_name,
  1352. this.lbl_1_entrance_2_team,
  1353. this.lbl_1_entrance_2_daily,
  1354. this.lbl_1_entrance_all_name,
  1355. this.lbl_1_entrance_all_team,
  1356. this.lbl_1_entrance_all_daily,
  1357. this.simpleSeparator18,
  1358. this.simpleSeparator2,
  1359. this.simpleSeparator13,
  1360. this.simpleSeparator16,
  1361. this.simpleSeparator5});
  1362. this.group_1.Location = new System.Drawing.Point(0, 510);
  1363. this.group_1.Name = "group_1";
  1364. this.group_1.Size = new System.Drawing.Size(621, 141);
  1365. resources.ApplyResources(this.group_1, "group_1");
  1366. //
  1367. // simpleLabelItem2
  1368. //
  1369. this.simpleLabelItem2.AllowHotTrack = false;
  1370. this.simpleLabelItem2.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("simpleLabelItem2.AppearanceItemCaption.Font")));
  1371. this.simpleLabelItem2.AppearanceItemCaption.Options.UseFont = true;
  1372. this.simpleLabelItem2.AppearanceItemCaption.Options.UseTextOptions = true;
  1373. this.simpleLabelItem2.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1374. resources.ApplyResources(this.simpleLabelItem2, "simpleLabelItem2");
  1375. this.simpleLabelItem2.Location = new System.Drawing.Point(362, 0);
  1376. this.simpleLabelItem2.Name = "simpleLabelItem2";
  1377. this.simpleLabelItem2.Size = new System.Drawing.Size(235, 22);
  1378. this.simpleLabelItem2.TextSize = new System.Drawing.Size(64, 18);
  1379. //
  1380. // simpleLabelItem1
  1381. //
  1382. this.simpleLabelItem1.AllowHotTrack = false;
  1383. this.simpleLabelItem1.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("simpleLabelItem1.AppearanceItemCaption.Font")));
  1384. this.simpleLabelItem1.AppearanceItemCaption.Options.UseFont = true;
  1385. this.simpleLabelItem1.AppearanceItemCaption.Options.UseTextOptions = true;
  1386. this.simpleLabelItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1387. resources.ApplyResources(this.simpleLabelItem1, "simpleLabelItem1");
  1388. this.simpleLabelItem1.Location = new System.Drawing.Point(156, 0);
  1389. this.simpleLabelItem1.Name = "simpleLabelItem1";
  1390. this.simpleLabelItem1.Size = new System.Drawing.Size(206, 22);
  1391. this.simpleLabelItem1.TextSize = new System.Drawing.Size(64, 18);
  1392. //
  1393. // emptySpaceItem7
  1394. //
  1395. this.emptySpaceItem7.AllowHotTrack = false;
  1396. this.emptySpaceItem7.AppearanceItemCaption.BorderColor = ((System.Drawing.Color)(resources.GetObject("emptySpaceItem7.AppearanceItemCaption.BorderColor")));
  1397. this.emptySpaceItem7.AppearanceItemCaption.Options.UseBorderColor = true;
  1398. this.emptySpaceItem7.Location = new System.Drawing.Point(0, 0);
  1399. this.emptySpaceItem7.Name = "emptySpaceItem7";
  1400. this.emptySpaceItem7.Size = new System.Drawing.Size(156, 22);
  1401. this.emptySpaceItem7.TextSize = new System.Drawing.Size(0, 0);
  1402. //
  1403. // lbl_1_entrance_1_name
  1404. //
  1405. this.lbl_1_entrance_1_name.AllowHotTrack = false;
  1406. this.lbl_1_entrance_1_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_1_name.AppearanceItemCaption.Font")));
  1407. this.lbl_1_entrance_1_name.AppearanceItemCaption.Options.UseFont = true;
  1408. this.lbl_1_entrance_1_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1409. this.lbl_1_entrance_1_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1410. this.lbl_1_entrance_1_name.Location = new System.Drawing.Point(0, 24);
  1411. this.lbl_1_entrance_1_name.Name = "lbl_1_entrance_1_name";
  1412. this.lbl_1_entrance_1_name.Size = new System.Drawing.Size(156, 22);
  1413. resources.ApplyResources(this.lbl_1_entrance_1_name, "lbl_1_entrance_1_name");
  1414. this.lbl_1_entrance_1_name.TextSize = new System.Drawing.Size(64, 18);
  1415. //
  1416. // lbl_1_entrance_1_team
  1417. //
  1418. this.lbl_1_entrance_1_team.AllowHotTrack = false;
  1419. this.lbl_1_entrance_1_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_1_team.AppearanceItemCaption.Font")));
  1420. this.lbl_1_entrance_1_team.AppearanceItemCaption.Options.UseFont = true;
  1421. this.lbl_1_entrance_1_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1422. this.lbl_1_entrance_1_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1423. this.lbl_1_entrance_1_team.Location = new System.Drawing.Point(156, 24);
  1424. this.lbl_1_entrance_1_team.Name = "lbl_1_entrance_1_team";
  1425. this.lbl_1_entrance_1_team.Size = new System.Drawing.Size(206, 22);
  1426. resources.ApplyResources(this.lbl_1_entrance_1_team, "lbl_1_entrance_1_team");
  1427. this.lbl_1_entrance_1_team.TextSize = new System.Drawing.Size(64, 18);
  1428. //
  1429. // lbl_1_entrance_1_daily
  1430. //
  1431. this.lbl_1_entrance_1_daily.AllowHotTrack = false;
  1432. this.lbl_1_entrance_1_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_1_daily.AppearanceItemCaption.Font")));
  1433. this.lbl_1_entrance_1_daily.AppearanceItemCaption.Options.UseFont = true;
  1434. this.lbl_1_entrance_1_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1435. this.lbl_1_entrance_1_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1436. this.lbl_1_entrance_1_daily.Location = new System.Drawing.Point(362, 24);
  1437. this.lbl_1_entrance_1_daily.Name = "lbl_1_entrance_1_daily";
  1438. this.lbl_1_entrance_1_daily.Size = new System.Drawing.Size(235, 22);
  1439. resources.ApplyResources(this.lbl_1_entrance_1_daily, "lbl_1_entrance_1_daily");
  1440. this.lbl_1_entrance_1_daily.TextSize = new System.Drawing.Size(64, 18);
  1441. //
  1442. // lbl_1_entrance_2_name
  1443. //
  1444. this.lbl_1_entrance_2_name.AllowHotTrack = false;
  1445. this.lbl_1_entrance_2_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_2_name.AppearanceItemCaption.Font")));
  1446. this.lbl_1_entrance_2_name.AppearanceItemCaption.Options.UseFont = true;
  1447. this.lbl_1_entrance_2_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1448. this.lbl_1_entrance_2_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1449. this.lbl_1_entrance_2_name.Location = new System.Drawing.Point(0, 48);
  1450. this.lbl_1_entrance_2_name.Name = "lbl_1_entrance_2_name";
  1451. this.lbl_1_entrance_2_name.Size = new System.Drawing.Size(156, 22);
  1452. resources.ApplyResources(this.lbl_1_entrance_2_name, "lbl_1_entrance_2_name");
  1453. this.lbl_1_entrance_2_name.TextSize = new System.Drawing.Size(64, 18);
  1454. //
  1455. // lbl_1_entrance_2_team
  1456. //
  1457. this.lbl_1_entrance_2_team.AllowHotTrack = false;
  1458. this.lbl_1_entrance_2_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_2_team.AppearanceItemCaption.Font")));
  1459. this.lbl_1_entrance_2_team.AppearanceItemCaption.Options.UseFont = true;
  1460. this.lbl_1_entrance_2_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1461. this.lbl_1_entrance_2_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1462. this.lbl_1_entrance_2_team.Location = new System.Drawing.Point(156, 48);
  1463. this.lbl_1_entrance_2_team.Name = "lbl_1_entrance_2_team";
  1464. this.lbl_1_entrance_2_team.Size = new System.Drawing.Size(206, 22);
  1465. resources.ApplyResources(this.lbl_1_entrance_2_team, "lbl_1_entrance_2_team");
  1466. this.lbl_1_entrance_2_team.TextSize = new System.Drawing.Size(64, 18);
  1467. //
  1468. // lbl_1_entrance_2_daily
  1469. //
  1470. this.lbl_1_entrance_2_daily.AllowHotTrack = false;
  1471. this.lbl_1_entrance_2_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_2_daily.AppearanceItemCaption.Font")));
  1472. this.lbl_1_entrance_2_daily.AppearanceItemCaption.Options.UseFont = true;
  1473. this.lbl_1_entrance_2_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1474. this.lbl_1_entrance_2_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1475. this.lbl_1_entrance_2_daily.Location = new System.Drawing.Point(362, 48);
  1476. this.lbl_1_entrance_2_daily.Name = "lbl_1_entrance_2_daily";
  1477. this.lbl_1_entrance_2_daily.Size = new System.Drawing.Size(235, 22);
  1478. resources.ApplyResources(this.lbl_1_entrance_2_daily, "lbl_1_entrance_2_daily");
  1479. this.lbl_1_entrance_2_daily.TextSize = new System.Drawing.Size(64, 18);
  1480. //
  1481. // lbl_1_entrance_all_name
  1482. //
  1483. this.lbl_1_entrance_all_name.AllowHotTrack = false;
  1484. this.lbl_1_entrance_all_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_all_name.AppearanceItemCaption.Font")));
  1485. this.lbl_1_entrance_all_name.AppearanceItemCaption.Options.UseFont = true;
  1486. this.lbl_1_entrance_all_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1487. this.lbl_1_entrance_all_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1488. this.lbl_1_entrance_all_name.Location = new System.Drawing.Point(0, 74);
  1489. this.lbl_1_entrance_all_name.Name = "lbl_1_entrance_all_name";
  1490. this.lbl_1_entrance_all_name.Size = new System.Drawing.Size(156, 22);
  1491. resources.ApplyResources(this.lbl_1_entrance_all_name, "lbl_1_entrance_all_name");
  1492. this.lbl_1_entrance_all_name.TextSize = new System.Drawing.Size(64, 18);
  1493. //
  1494. // lbl_1_entrance_all_team
  1495. //
  1496. this.lbl_1_entrance_all_team.AllowHotTrack = false;
  1497. this.lbl_1_entrance_all_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_all_team.AppearanceItemCaption.Font")));
  1498. this.lbl_1_entrance_all_team.AppearanceItemCaption.Options.UseFont = true;
  1499. this.lbl_1_entrance_all_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1500. this.lbl_1_entrance_all_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1501. this.lbl_1_entrance_all_team.Location = new System.Drawing.Point(156, 74);
  1502. this.lbl_1_entrance_all_team.Name = "lbl_1_entrance_all_team";
  1503. this.lbl_1_entrance_all_team.Size = new System.Drawing.Size(206, 22);
  1504. resources.ApplyResources(this.lbl_1_entrance_all_team, "lbl_1_entrance_all_team");
  1505. this.lbl_1_entrance_all_team.TextSize = new System.Drawing.Size(64, 18);
  1506. //
  1507. // lbl_1_entrance_all_daily
  1508. //
  1509. this.lbl_1_entrance_all_daily.AllowHotTrack = false;
  1510. this.lbl_1_entrance_all_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_1_entrance_all_daily.AppearanceItemCaption.Font")));
  1511. this.lbl_1_entrance_all_daily.AppearanceItemCaption.Options.UseFont = true;
  1512. this.lbl_1_entrance_all_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1513. this.lbl_1_entrance_all_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1514. this.lbl_1_entrance_all_daily.Location = new System.Drawing.Point(362, 74);
  1515. this.lbl_1_entrance_all_daily.Name = "lbl_1_entrance_all_daily";
  1516. this.lbl_1_entrance_all_daily.Size = new System.Drawing.Size(235, 22);
  1517. resources.ApplyResources(this.lbl_1_entrance_all_daily, "lbl_1_entrance_all_daily");
  1518. this.lbl_1_entrance_all_daily.TextSize = new System.Drawing.Size(64, 18);
  1519. //
  1520. // simpleSeparator18
  1521. //
  1522. this.simpleSeparator18.AllowHotTrack = false;
  1523. this.simpleSeparator18.Location = new System.Drawing.Point(0, 22);
  1524. this.simpleSeparator18.Name = "simpleSeparator18";
  1525. this.simpleSeparator18.Size = new System.Drawing.Size(597, 2);
  1526. //
  1527. // simpleSeparator2
  1528. //
  1529. this.simpleSeparator2.AllowHotTrack = false;
  1530. this.simpleSeparator2.Location = new System.Drawing.Point(0, 46);
  1531. this.simpleSeparator2.Name = "simpleSeparator2";
  1532. this.simpleSeparator2.Size = new System.Drawing.Size(597, 2);
  1533. //
  1534. // simpleSeparator13
  1535. //
  1536. this.simpleSeparator13.AllowHotTrack = false;
  1537. this.simpleSeparator13.AppearanceItemCaption.BackColor = ((System.Drawing.Color)(resources.GetObject("simpleSeparator13.AppearanceItemCaption.BackColor")));
  1538. this.simpleSeparator13.AppearanceItemCaption.BackColor2 = ((System.Drawing.Color)(resources.GetObject("simpleSeparator13.AppearanceItemCaption.BackColor2")));
  1539. this.simpleSeparator13.AppearanceItemCaption.BorderColor = ((System.Drawing.Color)(resources.GetObject("simpleSeparator13.AppearanceItemCaption.BorderColor")));
  1540. this.simpleSeparator13.AppearanceItemCaption.ForeColor = ((System.Drawing.Color)(resources.GetObject("simpleSeparator13.AppearanceItemCaption.ForeColor")));
  1541. this.simpleSeparator13.AppearanceItemCaption.Options.UseBackColor = true;
  1542. this.simpleSeparator13.AppearanceItemCaption.Options.UseBorderColor = true;
  1543. this.simpleSeparator13.AppearanceItemCaption.Options.UseForeColor = true;
  1544. this.simpleSeparator13.Location = new System.Drawing.Point(0, 96);
  1545. this.simpleSeparator13.Name = "simpleSeparator13";
  1546. this.simpleSeparator13.Size = new System.Drawing.Size(597, 2);
  1547. //
  1548. // simpleSeparator16
  1549. //
  1550. this.simpleSeparator16.AllowHotTrack = false;
  1551. this.simpleSeparator16.Location = new System.Drawing.Point(0, 70);
  1552. this.simpleSeparator16.Name = "simpleSeparator16";
  1553. this.simpleSeparator16.Size = new System.Drawing.Size(597, 2);
  1554. //
  1555. // simpleSeparator5
  1556. //
  1557. this.simpleSeparator5.AllowHotTrack = false;
  1558. this.simpleSeparator5.Location = new System.Drawing.Point(0, 72);
  1559. this.simpleSeparator5.Name = "simpleSeparator5";
  1560. this.simpleSeparator5.Size = new System.Drawing.Size(597, 2);
  1561. //
  1562. // group_2
  1563. //
  1564. this.group_2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
  1565. this.simpleLabelItem12,
  1566. this.simpleLabelItem13,
  1567. this.emptySpaceItem2,
  1568. this.lbl_2_entrance_1_name,
  1569. this.lbl_2_entrance_1_team,
  1570. this.lbl_2_entrance_1_daily,
  1571. this.lbl_2_entrance_2_name,
  1572. this.lbl_2_entrance_2_team,
  1573. this.lbl_2_entrance_2_daily,
  1574. this.lbl_2_entrance_all_name,
  1575. this.lbl_2_entrance_all_team,
  1576. this.lbl_2_entrance_all_daily,
  1577. this.simpleSeparator1,
  1578. this.simpleSeparator19,
  1579. this.simpleSeparator6,
  1580. this.simpleSeparator7,
  1581. this.simpleSeparator9});
  1582. this.group_2.Location = new System.Drawing.Point(623, 510);
  1583. this.group_2.Name = "group_2";
  1584. this.group_2.Size = new System.Drawing.Size(619, 141);
  1585. resources.ApplyResources(this.group_2, "group_2");
  1586. //
  1587. // simpleLabelItem12
  1588. //
  1589. this.simpleLabelItem12.AllowHotTrack = false;
  1590. this.simpleLabelItem12.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("simpleLabelItem12.AppearanceItemCaption.Font")));
  1591. this.simpleLabelItem12.AppearanceItemCaption.Options.UseFont = true;
  1592. this.simpleLabelItem12.AppearanceItemCaption.Options.UseTextOptions = true;
  1593. this.simpleLabelItem12.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1594. resources.ApplyResources(this.simpleLabelItem12, "simpleLabelItem12");
  1595. this.simpleLabelItem12.Location = new System.Drawing.Point(392, 0);
  1596. this.simpleLabelItem12.Name = "simpleLabelItem12";
  1597. this.simpleLabelItem12.Size = new System.Drawing.Size(203, 22);
  1598. this.simpleLabelItem12.TextSize = new System.Drawing.Size(64, 18);
  1599. //
  1600. // simpleLabelItem13
  1601. //
  1602. this.simpleLabelItem13.AllowHotTrack = false;
  1603. this.simpleLabelItem13.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("simpleLabelItem13.AppearanceItemCaption.Font")));
  1604. this.simpleLabelItem13.AppearanceItemCaption.Options.UseFont = true;
  1605. this.simpleLabelItem13.AppearanceItemCaption.Options.UseTextOptions = true;
  1606. this.simpleLabelItem13.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1607. resources.ApplyResources(this.simpleLabelItem13, "simpleLabelItem13");
  1608. this.simpleLabelItem13.Location = new System.Drawing.Point(176, 0);
  1609. this.simpleLabelItem13.Name = "simpleLabelItem13";
  1610. this.simpleLabelItem13.Size = new System.Drawing.Size(216, 22);
  1611. this.simpleLabelItem13.TextSize = new System.Drawing.Size(64, 18);
  1612. //
  1613. // emptySpaceItem2
  1614. //
  1615. this.emptySpaceItem2.AllowHotTrack = false;
  1616. this.emptySpaceItem2.Location = new System.Drawing.Point(0, 0);
  1617. this.emptySpaceItem2.Name = "emptySpaceItem2";
  1618. this.emptySpaceItem2.Size = new System.Drawing.Size(176, 22);
  1619. this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
  1620. //
  1621. // lbl_2_entrance_1_name
  1622. //
  1623. this.lbl_2_entrance_1_name.AllowHotTrack = false;
  1624. this.lbl_2_entrance_1_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_1_name.AppearanceItemCaption.Font")));
  1625. this.lbl_2_entrance_1_name.AppearanceItemCaption.Options.UseFont = true;
  1626. this.lbl_2_entrance_1_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1627. this.lbl_2_entrance_1_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1628. this.lbl_2_entrance_1_name.Location = new System.Drawing.Point(0, 24);
  1629. this.lbl_2_entrance_1_name.Name = "lbl_2_entrance_1_name";
  1630. this.lbl_2_entrance_1_name.Size = new System.Drawing.Size(176, 22);
  1631. resources.ApplyResources(this.lbl_2_entrance_1_name, "lbl_2_entrance_1_name");
  1632. this.lbl_2_entrance_1_name.TextSize = new System.Drawing.Size(64, 18);
  1633. //
  1634. // lbl_2_entrance_1_team
  1635. //
  1636. this.lbl_2_entrance_1_team.AllowHotTrack = false;
  1637. this.lbl_2_entrance_1_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_1_team.AppearanceItemCaption.Font")));
  1638. this.lbl_2_entrance_1_team.AppearanceItemCaption.Options.UseFont = true;
  1639. this.lbl_2_entrance_1_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1640. this.lbl_2_entrance_1_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1641. this.lbl_2_entrance_1_team.Location = new System.Drawing.Point(176, 24);
  1642. this.lbl_2_entrance_1_team.Name = "lbl_2_entrance_1_team";
  1643. this.lbl_2_entrance_1_team.Size = new System.Drawing.Size(216, 22);
  1644. resources.ApplyResources(this.lbl_2_entrance_1_team, "lbl_2_entrance_1_team");
  1645. this.lbl_2_entrance_1_team.TextSize = new System.Drawing.Size(64, 18);
  1646. //
  1647. // lbl_2_entrance_1_daily
  1648. //
  1649. this.lbl_2_entrance_1_daily.AllowHotTrack = false;
  1650. this.lbl_2_entrance_1_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_1_daily.AppearanceItemCaption.Font")));
  1651. this.lbl_2_entrance_1_daily.AppearanceItemCaption.Options.UseFont = true;
  1652. this.lbl_2_entrance_1_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1653. this.lbl_2_entrance_1_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1654. this.lbl_2_entrance_1_daily.Location = new System.Drawing.Point(392, 24);
  1655. this.lbl_2_entrance_1_daily.Name = "lbl_2_entrance_1_daily";
  1656. this.lbl_2_entrance_1_daily.Size = new System.Drawing.Size(203, 22);
  1657. resources.ApplyResources(this.lbl_2_entrance_1_daily, "lbl_2_entrance_1_daily");
  1658. this.lbl_2_entrance_1_daily.TextSize = new System.Drawing.Size(64, 18);
  1659. //
  1660. // lbl_2_entrance_2_name
  1661. //
  1662. this.lbl_2_entrance_2_name.AllowHotTrack = false;
  1663. this.lbl_2_entrance_2_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_2_name.AppearanceItemCaption.Font")));
  1664. this.lbl_2_entrance_2_name.AppearanceItemCaption.Options.UseFont = true;
  1665. this.lbl_2_entrance_2_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1666. this.lbl_2_entrance_2_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1667. this.lbl_2_entrance_2_name.Location = new System.Drawing.Point(0, 48);
  1668. this.lbl_2_entrance_2_name.Name = "lbl_2_entrance_2_name";
  1669. this.lbl_2_entrance_2_name.Size = new System.Drawing.Size(176, 22);
  1670. resources.ApplyResources(this.lbl_2_entrance_2_name, "lbl_2_entrance_2_name");
  1671. this.lbl_2_entrance_2_name.TextSize = new System.Drawing.Size(64, 18);
  1672. //
  1673. // lbl_2_entrance_2_team
  1674. //
  1675. this.lbl_2_entrance_2_team.AllowHotTrack = false;
  1676. this.lbl_2_entrance_2_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_2_team.AppearanceItemCaption.Font")));
  1677. this.lbl_2_entrance_2_team.AppearanceItemCaption.Options.UseFont = true;
  1678. this.lbl_2_entrance_2_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1679. this.lbl_2_entrance_2_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1680. this.lbl_2_entrance_2_team.Location = new System.Drawing.Point(176, 48);
  1681. this.lbl_2_entrance_2_team.Name = "lbl_2_entrance_2_team";
  1682. this.lbl_2_entrance_2_team.Size = new System.Drawing.Size(216, 22);
  1683. resources.ApplyResources(this.lbl_2_entrance_2_team, "lbl_2_entrance_2_team");
  1684. this.lbl_2_entrance_2_team.TextSize = new System.Drawing.Size(64, 18);
  1685. //
  1686. // lbl_2_entrance_2_daily
  1687. //
  1688. this.lbl_2_entrance_2_daily.AllowHotTrack = false;
  1689. this.lbl_2_entrance_2_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_2_daily.AppearanceItemCaption.Font")));
  1690. this.lbl_2_entrance_2_daily.AppearanceItemCaption.Options.UseFont = true;
  1691. this.lbl_2_entrance_2_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1692. this.lbl_2_entrance_2_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1693. this.lbl_2_entrance_2_daily.Location = new System.Drawing.Point(392, 48);
  1694. this.lbl_2_entrance_2_daily.Name = "lbl_2_entrance_2_daily";
  1695. this.lbl_2_entrance_2_daily.Size = new System.Drawing.Size(203, 22);
  1696. resources.ApplyResources(this.lbl_2_entrance_2_daily, "lbl_2_entrance_2_daily");
  1697. this.lbl_2_entrance_2_daily.TextSize = new System.Drawing.Size(64, 18);
  1698. //
  1699. // lbl_2_entrance_all_name
  1700. //
  1701. this.lbl_2_entrance_all_name.AllowHotTrack = false;
  1702. this.lbl_2_entrance_all_name.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_all_name.AppearanceItemCaption.Font")));
  1703. this.lbl_2_entrance_all_name.AppearanceItemCaption.Options.UseFont = true;
  1704. this.lbl_2_entrance_all_name.AppearanceItemCaption.Options.UseTextOptions = true;
  1705. this.lbl_2_entrance_all_name.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1706. this.lbl_2_entrance_all_name.Location = new System.Drawing.Point(0, 74);
  1707. this.lbl_2_entrance_all_name.Name = "lbl_2_entrance_all_name";
  1708. this.lbl_2_entrance_all_name.Size = new System.Drawing.Size(176, 22);
  1709. resources.ApplyResources(this.lbl_2_entrance_all_name, "lbl_2_entrance_all_name");
  1710. this.lbl_2_entrance_all_name.TextSize = new System.Drawing.Size(64, 18);
  1711. //
  1712. // lbl_2_entrance_all_team
  1713. //
  1714. this.lbl_2_entrance_all_team.AllowHotTrack = false;
  1715. this.lbl_2_entrance_all_team.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_all_team.AppearanceItemCaption.Font")));
  1716. this.lbl_2_entrance_all_team.AppearanceItemCaption.Options.UseFont = true;
  1717. this.lbl_2_entrance_all_team.AppearanceItemCaption.Options.UseTextOptions = true;
  1718. this.lbl_2_entrance_all_team.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1719. this.lbl_2_entrance_all_team.Location = new System.Drawing.Point(176, 74);
  1720. this.lbl_2_entrance_all_team.Name = "lbl_2_entrance_all_team";
  1721. this.lbl_2_entrance_all_team.Size = new System.Drawing.Size(216, 22);
  1722. resources.ApplyResources(this.lbl_2_entrance_all_team, "lbl_2_entrance_all_team");
  1723. this.lbl_2_entrance_all_team.TextSize = new System.Drawing.Size(64, 18);
  1724. //
  1725. // lbl_2_entrance_all_daily
  1726. //
  1727. this.lbl_2_entrance_all_daily.AllowHotTrack = false;
  1728. this.lbl_2_entrance_all_daily.AppearanceItemCaption.Font = ((System.Drawing.Font)(resources.GetObject("lbl_2_entrance_all_daily.AppearanceItemCaption.Font")));
  1729. this.lbl_2_entrance_all_daily.AppearanceItemCaption.Options.UseFont = true;
  1730. this.lbl_2_entrance_all_daily.AppearanceItemCaption.Options.UseTextOptions = true;
  1731. this.lbl_2_entrance_all_daily.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
  1732. this.lbl_2_entrance_all_daily.Location = new System.Drawing.Point(392, 74);
  1733. this.lbl_2_entrance_all_daily.Name = "lbl_2_entrance_all_daily";
  1734. this.lbl_2_entrance_all_daily.Size = new System.Drawing.Size(203, 22);
  1735. resources.ApplyResources(this.lbl_2_entrance_all_daily, "lbl_2_entrance_all_daily");
  1736. this.lbl_2_entrance_all_daily.TextSize = new System.Drawing.Size(64, 18);
  1737. //
  1738. // simpleSeparator1
  1739. //
  1740. this.simpleSeparator1.AllowHotTrack = false;
  1741. this.simpleSeparator1.Location = new System.Drawing.Point(0, 22);
  1742. this.simpleSeparator1.Name = "simpleSeparator1";
  1743. this.simpleSeparator1.Size = new System.Drawing.Size(595, 2);
  1744. //
  1745. // simpleSeparator19
  1746. //
  1747. this.simpleSeparator19.AllowHotTrack = false;
  1748. this.simpleSeparator19.Location = new System.Drawing.Point(0, 46);
  1749. this.simpleSeparator19.Name = "simpleSeparator19";
  1750. this.simpleSeparator19.Size = new System.Drawing.Size(595, 2);
  1751. //
  1752. // simpleSeparator6
  1753. //
  1754. this.simpleSeparator6.AllowHotTrack = false;
  1755. this.simpleSeparator6.Location = new System.Drawing.Point(0, 72);
  1756. this.simpleSeparator6.Name = "simpleSeparator6";
  1757. this.simpleSeparator6.Size = new System.Drawing.Size(595, 2);
  1758. //
  1759. // simpleSeparator7
  1760. //
  1761. this.simpleSeparator7.AllowHotTrack = false;
  1762. this.simpleSeparator7.Location = new System.Drawing.Point(0, 96);
  1763. this.simpleSeparator7.Name = "simpleSeparator7";
  1764. this.simpleSeparator7.Size = new System.Drawing.Size(595, 2);
  1765. //
  1766. // simpleSeparator9
  1767. //
  1768. this.simpleSeparator9.AllowHotTrack = false;
  1769. this.simpleSeparator9.Location = new System.Drawing.Point(0, 70);
  1770. this.simpleSeparator9.Name = "simpleSeparator9";
  1771. this.simpleSeparator9.Size = new System.Drawing.Size(595, 2);
  1772. //
  1773. // digitalGauge1
  1774. //
  1775. this.digitalGauge1.AppearanceOff.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#EAECF1");
  1776. this.digitalGauge1.AppearanceOn.ContentBrush = new DevExpress.XtraGauges.Core.Drawing.SolidBrushObject("Color:#7184BA");
  1777. this.digitalGauge1.Bounds = new System.Drawing.Rectangle(6, 6, 151, 47);
  1778. this.digitalGauge1.DigitCount = 5;
  1779. this.digitalGauge1.Name = "digitalGauge1";
  1780. this.digitalGauge1.Text = "00,000";
  1781. //
  1782. // digitalBackgroundLayerComponent1
  1783. //
  1784. this.digitalBackgroundLayerComponent1.BottomRight = new DevExpress.XtraGauges.Core.Base.PointF2D(259.8125F, 99.9625F);
  1785. this.digitalBackgroundLayerComponent1.Name = "digitalBackgroundLayerComponent13";
  1786. this.digitalBackgroundLayerComponent1.ShapeType = DevExpress.XtraGauges.Core.Model.DigitalBackgroundShapeSetType.Style16;
  1787. this.digitalBackgroundLayerComponent1.TopLeft = new DevExpress.XtraGauges.Core.Base.PointF2D(20F, 0F);
  1788. this.digitalBackgroundLayerComponent1.ZOrder = 1000;
  1789. //
  1790. // circularGauge1
  1791. //
  1792. this.circularGauge1.Bounds = new System.Drawing.Rectangle(6, 6, 246, 305);
  1793. this.circularGauge1.Name = "circularGauge1";
  1794. //
  1795. // RealTimeTwoCarForm
  1796. //
  1797. resources.ApplyResources(this, "$this");
  1798. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  1799. this.Controls.Add(this.layoutControl1);
  1800. this.DoubleBuffered = true;
  1801. this.Name = "RealTimeTwoCarForm";
  1802. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RealTimeForm_FormClosing);
  1803. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RealTimeForm_FormClosed);
  1804. ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
  1805. this.layoutControl1.ResumeLayout(false);
  1806. ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
  1807. this.panelControl9.ResumeLayout(false);
  1808. ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
  1809. ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
  1810. ((System.ComponentModel.ISupportInitialize)(areaSeriesView1)).EndInit();
  1811. ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
  1812. ((System.ComponentModel.ISupportInitialize)(areaSeriesView2)).EndInit();
  1813. ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
  1814. ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
  1815. this.panelControl11.ResumeLayout(false);
  1816. ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
  1817. ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
  1818. ((System.ComponentModel.ISupportInitialize)(areaSeriesView3)).EndInit();
  1819. ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
  1820. ((System.ComponentModel.ISupportInitialize)(areaSeriesView4)).EndInit();
  1821. ((System.ComponentModel.ISupportInitialize)(this.chartControl2)).EndInit();
  1822. ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
  1823. this.panelControl5.ResumeLayout(false);
  1824. this.panelControl5.PerformLayout();
  1825. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_2_2.Properties)).EndInit();
  1826. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_2_1.Properties)).EndInit();
  1827. ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
  1828. this.panelControl2.ResumeLayout(false);
  1829. this.panelControl2.PerformLayout();
  1830. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_1_2.Properties)).EndInit();
  1831. ((System.ComponentModel.ISupportInitialize)(this.pic_entrance_1_1.Properties)).EndInit();
  1832. ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).EndInit();
  1833. this.panelControl16.ResumeLayout(false);
  1834. ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).EndInit();
  1835. this.panelControl21.ResumeLayout(false);
  1836. this.panelControl21.PerformLayout();
  1837. ((System.ComponentModel.ISupportInitialize)(this.pic_yj_2.Properties)).EndInit();
  1838. ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).EndInit();
  1839. this.panelControl20.ResumeLayout(false);
  1840. this.panelControl20.PerformLayout();
  1841. ((System.ComponentModel.ISupportInitialize)(this.pic_wd_2.Properties)).EndInit();
  1842. ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).EndInit();
  1843. this.panelControl19.ResumeLayout(false);
  1844. this.panelControl19.PerformLayout();
  1845. ((System.ComponentModel.ISupportInitialize)(this.pic_lw_2.Properties)).EndInit();
  1846. ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).EndInit();
  1847. this.panelControl15.ResumeLayout(false);
  1848. this.panelControl15.PerformLayout();
  1849. ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).EndInit();
  1850. this.panelControl14.ResumeLayout(false);
  1851. this.panelControl14.PerformLayout();
  1852. ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).EndInit();
  1853. this.panelControl12.ResumeLayout(false);
  1854. this.panelControl12.PerformLayout();
  1855. ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).EndInit();
  1856. this.panelControl17.ResumeLayout(false);
  1857. this.panelControl17.PerformLayout();
  1858. ((System.ComponentModel.ISupportInitialize)(this.pic_isOnline_2.Properties)).EndInit();
  1859. ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
  1860. this.panelControl10.ResumeLayout(false);
  1861. this.panelControl10.PerformLayout();
  1862. ((System.ComponentModel.ISupportInitialize)(this.pic_isOnline_1.Properties)).EndInit();
  1863. ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).EndInit();
  1864. this.panelControl13.ResumeLayout(false);
  1865. this.panelControl13.PerformLayout();
  1866. ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
  1867. this.panelControl4.ResumeLayout(false);
  1868. ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
  1869. this.panelControl8.ResumeLayout(false);
  1870. this.panelControl8.PerformLayout();
  1871. ((System.ComponentModel.ISupportInitialize)(this.pic_yj_1.Properties)).EndInit();
  1872. ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
  1873. this.panelControl7.ResumeLayout(false);
  1874. this.panelControl7.PerformLayout();
  1875. ((System.ComponentModel.ISupportInitialize)(this.pic_wd_1.Properties)).EndInit();
  1876. ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
  1877. this.panelControl6.ResumeLayout(false);
  1878. this.panelControl6.PerformLayout();
  1879. ((System.ComponentModel.ISupportInitialize)(this.pic_lw_1.Properties)).EndInit();
  1880. ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
  1881. this.panelControl3.ResumeLayout(false);
  1882. this.panelControl3.PerformLayout();
  1883. ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
  1884. this.panelControl1.ResumeLayout(false);
  1885. this.panelControl1.PerformLayout();
  1886. ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
  1887. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
  1888. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
  1889. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
  1890. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
  1891. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
  1892. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
  1893. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
  1894. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
  1895. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator4)).EndInit();
  1896. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator8)).EndInit();
  1897. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).EndInit();
  1898. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
  1899. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
  1900. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
  1901. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
  1902. ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
  1903. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_2_name)).EndInit();
  1904. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_all_name)).EndInit();
  1905. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem7)).EndInit();
  1906. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_1_team)).EndInit();
  1907. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_2_team)).EndInit();
  1908. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_all_team)).EndInit();
  1909. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem8)).EndInit();
  1910. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_1_daily)).EndInit();
  1911. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_2_daily)).EndInit();
  1912. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_all_daily)).EndInit();
  1913. ((System.ComponentModel.ISupportInitialize)(this.lbl_all_entrance_1_name)).EndInit();
  1914. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
  1915. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator11)).EndInit();
  1916. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator10)).EndInit();
  1917. ((System.ComponentModel.ISupportInitialize)(this.group_1)).EndInit();
  1918. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).EndInit();
  1919. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
  1920. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).EndInit();
  1921. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_1_name)).EndInit();
  1922. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_1_team)).EndInit();
  1923. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_1_daily)).EndInit();
  1924. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_2_name)).EndInit();
  1925. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_2_team)).EndInit();
  1926. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_2_daily)).EndInit();
  1927. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_all_name)).EndInit();
  1928. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_all_team)).EndInit();
  1929. ((System.ComponentModel.ISupportInitialize)(this.lbl_1_entrance_all_daily)).EndInit();
  1930. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator18)).EndInit();
  1931. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).EndInit();
  1932. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator13)).EndInit();
  1933. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator16)).EndInit();
  1934. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator5)).EndInit();
  1935. ((System.ComponentModel.ISupportInitialize)(this.group_2)).EndInit();
  1936. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem12)).EndInit();
  1937. ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).EndInit();
  1938. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
  1939. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_1_name)).EndInit();
  1940. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_1_team)).EndInit();
  1941. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_1_daily)).EndInit();
  1942. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_2_name)).EndInit();
  1943. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_2_team)).EndInit();
  1944. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_2_daily)).EndInit();
  1945. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_all_name)).EndInit();
  1946. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_all_team)).EndInit();
  1947. ((System.ComponentModel.ISupportInitialize)(this.lbl_2_entrance_all_daily)).EndInit();
  1948. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).EndInit();
  1949. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator19)).EndInit();
  1950. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator6)).EndInit();
  1951. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator7)).EndInit();
  1952. ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator9)).EndInit();
  1953. ((System.ComponentModel.ISupportInitialize)(this.digitalGauge1)).EndInit();
  1954. ((System.ComponentModel.ISupportInitialize)(this.digitalBackgroundLayerComponent1)).EndInit();
  1955. ((System.ComponentModel.ISupportInitialize)(this.circularGauge1)).EndInit();
  1956. this.ResumeLayout(false);
  1957. }
  1958. #endregion
  1959. private DevExpress.XtraLayout.LayoutControl layoutControl1;
  1960. private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup1;
  1961. private DevExpress.XtraGauges.Win.Gauges.Digital.DigitalGauge digitalGauge1;
  1962. private DevExpress.XtraGauges.Win.Gauges.Digital.DigitalBackgroundLayerComponent digitalBackgroundLayerComponent1;
  1963. private PanelControl panelControl1;
  1964. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem2;
  1965. private LabelControl labelControl3;
  1966. private PanelControl panelControl3;
  1967. private LabelControl labelControl4;
  1968. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem3;
  1969. private PanelControl panelControl4;
  1970. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem4;
  1971. private LabelControl lbl_isOnline_1;
  1972. private PictureEdit pic_isOnline_1;
  1973. private PanelControl panelControl8;
  1974. private LabelControl lbl_yj_1;
  1975. private PictureEdit pic_yj_1;
  1976. private PanelControl panelControl7;
  1977. private LabelControl lbl_wd_1;
  1978. private PictureEdit pic_wd_1;
  1979. private PanelControl panelControl6;
  1980. private LabelControl labelControl6;
  1981. private PictureEdit pic_lw_1;
  1982. private DevExpress.XtraGauges.Win.Gauges.Circular.CircularGauge circularGauge1;
  1983. private PanelControl panelControl10;
  1984. private LabelControl lbl_team_1;
  1985. private LabelControl labelControl12;
  1986. private LabelControl lbl_devcieName_1;
  1987. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem9;
  1988. private PanelControl panelControl16;
  1989. private PanelControl panelControl21;
  1990. private LabelControl lbl_yj_2;
  1991. private PictureEdit pic_yj_2;
  1992. private PanelControl panelControl20;
  1993. private LabelControl labelControl20;
  1994. private PictureEdit pic_wd_2;
  1995. private PanelControl panelControl19;
  1996. private LabelControl labelControl19;
  1997. private PictureEdit pic_lw_2;
  1998. private PanelControl panelControl15;
  1999. private LabelControl labelControl15;
  2000. private PanelControl panelControl14;
  2001. private LabelControl labelControl11;
  2002. private PictureEdit pic_isOnline_2;
  2003. private PanelControl panelControl12;
  2004. private LabelControl labelControl2;
  2005. private LabelControl lbl_devcieName_2;
  2006. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem11;
  2007. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem13;
  2008. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem15;
  2009. private DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem7;
  2010. private DevExpress.XtraLayout.SimpleLabelItem simpleLabelItem1;
  2011. private DevExpress.XtraLayout.SimpleLabelItem simpleLabelItem2;
  2012. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_1_name;
  2013. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_1_team;
  2014. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_1_daily;
  2015. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_2_name;
  2016. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_2_team;
  2017. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_2_daily;
  2018. private DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem2;
  2019. private DevExpress.XtraLayout.SimpleLabelItem simpleLabelItem12;
  2020. private DevExpress.XtraLayout.SimpleLabelItem simpleLabelItem13;
  2021. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_2_name;
  2022. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_2_team;
  2023. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_1_daily;
  2024. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_2_daily;
  2025. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_1_team;
  2026. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_1_name;
  2027. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator4;
  2028. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator16;
  2029. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator18;
  2030. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator19;
  2031. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator1;
  2032. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator2;
  2033. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_all_name;
  2034. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_all_team;
  2035. private DevExpress.XtraLayout.SimpleLabelItem lbl_1_entrance_all_daily;
  2036. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_all_name;
  2037. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_all_team;
  2038. private DevExpress.XtraLayout.SimpleLabelItem lbl_2_entrance_all_daily;
  2039. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator8;
  2040. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator3;
  2041. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_1_name;
  2042. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_all_name;
  2043. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_2_name;
  2044. private DevExpress.XtraLayout.SimpleLabelItem simpleLabelItem7;
  2045. private DevExpress.XtraLayout.SimpleLabelItem simpleLabelItem8;
  2046. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_1_team;
  2047. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_2_team;
  2048. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_all_team;
  2049. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_1_daily;
  2050. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_all_daily;
  2051. private DevExpress.XtraLayout.SimpleLabelItem lbl_all_entrance_2_daily;
  2052. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator10;
  2053. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator11;
  2054. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator13;
  2055. private PanelControl panelControl5;
  2056. private PictureEdit pic_entrance_2_2;
  2057. private PictureEdit pic_entrance_2_1;
  2058. private PanelControl panelControl2;
  2059. private PictureEdit pic_entrance_1_2;
  2060. private PictureEdit pic_entrance_1_1;
  2061. private LabelControl lbl_isOnline_2;
  2062. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem1;
  2063. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem5;
  2064. private PanelControl panelControl11;
  2065. private ChartControl chartControl2;
  2066. private PanelControl panelControl9;
  2067. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem6;
  2068. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem7;
  2069. private ChartControl chartControl1;
  2070. private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup2;
  2071. private DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem1;
  2072. private DevExpress.XtraLayout.LayoutControlGroup group_1;
  2073. private DevExpress.XtraLayout.LayoutControlGroup group_2;
  2074. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator6;
  2075. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator7;
  2076. private System.Windows.Forms.Label lbl_changeTeam1;
  2077. private LabelControl lbl_entrance_2;
  2078. private LabelControl lbl_entrance_1;
  2079. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem14;
  2080. private PanelControl panelControl17;
  2081. private PanelControl panelControl13;
  2082. private LabelControl lbl_total_2;
  2083. private LabelControl labelControl8;
  2084. private LabelControl lbl_netWeight_2;
  2085. private LabelControl labelControl5;
  2086. private LabelControl lbl_total_1;
  2087. private LabelControl labelControl7;
  2088. private LabelControl lbl_netWeight_1;
  2089. private LabelControl labelControl1;
  2090. private LabelControl labelControl9;
  2091. private System.Windows.Forms.Label lbl_changeTeam2;
  2092. private LabelControl lbl_team_2;
  2093. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator5;
  2094. private DevExpress.XtraLayout.SimpleSeparator simpleSeparator9;
  2095. }
  2096. }