e815bb90cea084294ce8555968e0513d33114961.svn-base 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. namespace Core.LZMes.Client.UIM
  2. {
  3. partial class UIM010051
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UIM010051));
  29. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  31. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  32. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  33. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  34. this.textBox_153 = new System.Windows.Forms.TextBox();
  35. this.pictureBox_153 = new System.Windows.Forms.PictureBox();
  36. this.textBox_143 = new System.Windows.Forms.TextBox();
  37. this.pictureBox_143 = new System.Windows.Forms.PictureBox();
  38. this.textBox_133 = new System.Windows.Forms.TextBox();
  39. this.pictureBox_133 = new System.Windows.Forms.PictureBox();
  40. this.textBox_123 = new System.Windows.Forms.TextBox();
  41. this.pictureBox_123 = new System.Windows.Forms.PictureBox();
  42. this.textBox_113 = new System.Windows.Forms.TextBox();
  43. this.pictureBox_113 = new System.Windows.Forms.PictureBox();
  44. this.textBox_103 = new System.Windows.Forms.TextBox();
  45. this.pictureBox_103 = new System.Windows.Forms.PictureBox();
  46. this.textBox_93 = new System.Windows.Forms.TextBox();
  47. this.pictureBox_93 = new System.Windows.Forms.PictureBox();
  48. this.textBox_83 = new System.Windows.Forms.TextBox();
  49. this.pictureBox_83 = new System.Windows.Forms.PictureBox();
  50. this.textBox_73 = new System.Windows.Forms.TextBox();
  51. this.pictureBox_73 = new System.Windows.Forms.PictureBox();
  52. this.textBox_63 = new System.Windows.Forms.TextBox();
  53. this.pictureBox_63 = new System.Windows.Forms.PictureBox();
  54. this.textBox_53 = new System.Windows.Forms.TextBox();
  55. this.pictureBox_53 = new System.Windows.Forms.PictureBox();
  56. this.textBox_43 = new System.Windows.Forms.TextBox();
  57. this.pictureBox_43 = new System.Windows.Forms.PictureBox();
  58. this.textBox_33 = new System.Windows.Forms.TextBox();
  59. this.pictureBox_33 = new System.Windows.Forms.PictureBox();
  60. this.textBox_23 = new System.Windows.Forms.TextBox();
  61. this.pictureBox_23 = new System.Windows.Forms.PictureBox();
  62. this.textBox_13 = new System.Windows.Forms.TextBox();
  63. this.pictureBox_13 = new System.Windows.Forms.PictureBox();
  64. this.textBox_162 = new System.Windows.Forms.TextBox();
  65. this.pictureBox_162 = new System.Windows.Forms.PictureBox();
  66. this.textBox_152 = new System.Windows.Forms.TextBox();
  67. this.pictureBox_152 = new System.Windows.Forms.PictureBox();
  68. this.textBox_142 = new System.Windows.Forms.TextBox();
  69. this.pictureBox_142 = new System.Windows.Forms.PictureBox();
  70. this.textBox_132 = new System.Windows.Forms.TextBox();
  71. this.pictureBox_132 = new System.Windows.Forms.PictureBox();
  72. this.textBox_122 = new System.Windows.Forms.TextBox();
  73. this.pictureBox_122 = new System.Windows.Forms.PictureBox();
  74. this.textBox_112 = new System.Windows.Forms.TextBox();
  75. this.pictureBox_112 = new System.Windows.Forms.PictureBox();
  76. this.textBox_102 = new System.Windows.Forms.TextBox();
  77. this.pictureBox_102 = new System.Windows.Forms.PictureBox();
  78. this.textBox_92 = new System.Windows.Forms.TextBox();
  79. this.pictureBox_92 = new System.Windows.Forms.PictureBox();
  80. this.textBox_82 = new System.Windows.Forms.TextBox();
  81. this.pictureBox_82 = new System.Windows.Forms.PictureBox();
  82. this.textBox_72 = new System.Windows.Forms.TextBox();
  83. this.pictureBox_72 = new System.Windows.Forms.PictureBox();
  84. this.textBox_62 = new System.Windows.Forms.TextBox();
  85. this.pictureBox_62 = new System.Windows.Forms.PictureBox();
  86. this.textBox_52 = new System.Windows.Forms.TextBox();
  87. this.pictureBox_52 = new System.Windows.Forms.PictureBox();
  88. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  89. this.panel2 = new System.Windows.Forms.Panel();
  90. this.panel3 = new System.Windows.Forms.Panel();
  91. this.panel4 = new System.Windows.Forms.Panel();
  92. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  93. this.panel6 = new System.Windows.Forms.Panel();
  94. this.label22 = new System.Windows.Forms.Label();
  95. this.panel7 = new System.Windows.Forms.Panel();
  96. this.panel5 = new System.Windows.Forms.Panel();
  97. this.textBox_42 = new System.Windows.Forms.TextBox();
  98. this.pictureBox_42 = new System.Windows.Forms.PictureBox();
  99. this.textBox_32 = new System.Windows.Forms.TextBox();
  100. this.pictureBox_32 = new System.Windows.Forms.PictureBox();
  101. this.textBox_22 = new System.Windows.Forms.TextBox();
  102. this.pictureBox_22 = new System.Windows.Forms.PictureBox();
  103. this.textBox_12 = new System.Windows.Forms.TextBox();
  104. this.pictureBox_12 = new System.Windows.Forms.PictureBox();
  105. this.textBox_171 = new System.Windows.Forms.TextBox();
  106. this.pictureBox_171 = new System.Windows.Forms.PictureBox();
  107. this.textBox_161 = new System.Windows.Forms.TextBox();
  108. this.pictureBox_161 = new System.Windows.Forms.PictureBox();
  109. this.textBox_151 = new System.Windows.Forms.TextBox();
  110. this.pictureBox_151 = new System.Windows.Forms.PictureBox();
  111. this.textBox_141 = new System.Windows.Forms.TextBox();
  112. this.pictureBox_141 = new System.Windows.Forms.PictureBox();
  113. this.textBox_131 = new System.Windows.Forms.TextBox();
  114. this.pictureBox_131 = new System.Windows.Forms.PictureBox();
  115. this.textBox_121 = new System.Windows.Forms.TextBox();
  116. this.pictureBox_121 = new System.Windows.Forms.PictureBox();
  117. this.textBox_111 = new System.Windows.Forms.TextBox();
  118. this.pictureBox_111 = new System.Windows.Forms.PictureBox();
  119. this.textBox_101 = new System.Windows.Forms.TextBox();
  120. this.pictureBox_101 = new System.Windows.Forms.PictureBox();
  121. this.textBox_91 = new System.Windows.Forms.TextBox();
  122. this.pictureBox_91 = new System.Windows.Forms.PictureBox();
  123. this.textBox_81 = new System.Windows.Forms.TextBox();
  124. this.pictureBox_81 = new System.Windows.Forms.PictureBox();
  125. this.textBox_71 = new System.Windows.Forms.TextBox();
  126. this.pictureBox_71 = new System.Windows.Forms.PictureBox();
  127. this.textBox_61 = new System.Windows.Forms.TextBox();
  128. this.pictureBox_61 = new System.Windows.Forms.PictureBox();
  129. this.textBox_51 = new System.Windows.Forms.TextBox();
  130. this.pictureBox_51 = new System.Windows.Forms.PictureBox();
  131. this.textBox_41 = new System.Windows.Forms.TextBox();
  132. this.pictureBox_41 = new System.Windows.Forms.PictureBox();
  133. this.textBox_31 = new System.Windows.Forms.TextBox();
  134. this.pictureBox_31 = new System.Windows.Forms.PictureBox();
  135. this.textBox_21 = new System.Windows.Forms.TextBox();
  136. this.pictureBox_21 = new System.Windows.Forms.PictureBox();
  137. this.textBox_11 = new System.Windows.Forms.TextBox();
  138. this.pictureBox_11 = new System.Windows.Forms.PictureBox();
  139. this.label18 = new System.Windows.Forms.Label();
  140. this.label14 = new System.Windows.Forms.Label();
  141. this.label15 = new System.Windows.Forms.Label();
  142. this.label16 = new System.Windows.Forms.Label();
  143. this.label17 = new System.Windows.Forms.Label();
  144. this.label10 = new System.Windows.Forms.Label();
  145. this.label11 = new System.Windows.Forms.Label();
  146. this.label12 = new System.Windows.Forms.Label();
  147. this.label13 = new System.Windows.Forms.Label();
  148. this.label6 = new System.Windows.Forms.Label();
  149. this.label7 = new System.Windows.Forms.Label();
  150. this.label8 = new System.Windows.Forms.Label();
  151. this.label9 = new System.Windows.Forms.Label();
  152. this.label5 = new System.Windows.Forms.Label();
  153. this.label19 = new System.Windows.Forms.Label();
  154. this.label20 = new System.Windows.Forms.Label();
  155. this.label21 = new System.Windows.Forms.Label();
  156. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  157. this.panel1 = new System.Windows.Forms.Panel();
  158. this.label4 = new System.Windows.Forms.Label();
  159. this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  160. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  161. this.label3 = new System.Windows.Forms.Label();
  162. this.label2 = new System.Windows.Forms.Label();
  163. this.textBox1 = new System.Windows.Forms.TextBox();
  164. this.label1 = new System.Windows.Forms.Label();
  165. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_153)).BeginInit();
  166. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_143)).BeginInit();
  167. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_133)).BeginInit();
  168. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_123)).BeginInit();
  169. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_113)).BeginInit();
  170. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_103)).BeginInit();
  171. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_93)).BeginInit();
  172. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_83)).BeginInit();
  173. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_73)).BeginInit();
  174. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_63)).BeginInit();
  175. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_53)).BeginInit();
  176. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_43)).BeginInit();
  177. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_33)).BeginInit();
  178. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_23)).BeginInit();
  179. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_13)).BeginInit();
  180. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_162)).BeginInit();
  181. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_152)).BeginInit();
  182. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_142)).BeginInit();
  183. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_132)).BeginInit();
  184. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_122)).BeginInit();
  185. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_112)).BeginInit();
  186. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_102)).BeginInit();
  187. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_92)).BeginInit();
  188. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_82)).BeginInit();
  189. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_72)).BeginInit();
  190. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_62)).BeginInit();
  191. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_52)).BeginInit();
  192. this.ultraPanel1.ClientArea.SuspendLayout();
  193. this.ultraPanel1.SuspendLayout();
  194. this.panel2.SuspendLayout();
  195. this.panel3.SuspendLayout();
  196. this.panel4.SuspendLayout();
  197. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  198. this.panel6.SuspendLayout();
  199. this.panel7.SuspendLayout();
  200. this.panel5.SuspendLayout();
  201. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_42)).BeginInit();
  202. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_32)).BeginInit();
  203. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_22)).BeginInit();
  204. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_12)).BeginInit();
  205. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_171)).BeginInit();
  206. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_161)).BeginInit();
  207. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_151)).BeginInit();
  208. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_141)).BeginInit();
  209. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_131)).BeginInit();
  210. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_121)).BeginInit();
  211. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_111)).BeginInit();
  212. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_101)).BeginInit();
  213. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_91)).BeginInit();
  214. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_81)).BeginInit();
  215. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_71)).BeginInit();
  216. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_61)).BeginInit();
  217. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_51)).BeginInit();
  218. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_41)).BeginInit();
  219. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_31)).BeginInit();
  220. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_21)).BeginInit();
  221. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_11)).BeginInit();
  222. this.panel1.SuspendLayout();
  223. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
  224. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  225. this.SuspendLayout();
  226. //
  227. // textBox_153
  228. //
  229. this.textBox_153.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  230. this.textBox_153.Location = new System.Drawing.Point(1182, 11);
  231. this.textBox_153.Name = "textBox_153";
  232. this.textBox_153.ReadOnly = true;
  233. this.textBox_153.Size = new System.Drawing.Size(73, 19);
  234. this.textBox_153.TabIndex = 279;
  235. //
  236. // pictureBox_153
  237. //
  238. this.pictureBox_153.BackColor = System.Drawing.SystemColors.InactiveBorder;
  239. this.pictureBox_153.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_153.Image")));
  240. this.pictureBox_153.Location = new System.Drawing.Point(1179, 0);
  241. this.pictureBox_153.Name = "pictureBox_153";
  242. this.pictureBox_153.Size = new System.Drawing.Size(79, 41);
  243. this.pictureBox_153.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  244. this.pictureBox_153.TabIndex = 278;
  245. this.pictureBox_153.TabStop = false;
  246. //
  247. // textBox_143
  248. //
  249. this.textBox_143.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  250. this.textBox_143.Location = new System.Drawing.Point(1104, 11);
  251. this.textBox_143.Name = "textBox_143";
  252. this.textBox_143.ReadOnly = true;
  253. this.textBox_143.Size = new System.Drawing.Size(73, 19);
  254. this.textBox_143.TabIndex = 277;
  255. //
  256. // pictureBox_143
  257. //
  258. this.pictureBox_143.BackColor = System.Drawing.SystemColors.InactiveBorder;
  259. this.pictureBox_143.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_143.Image")));
  260. this.pictureBox_143.Location = new System.Drawing.Point(1101, 0);
  261. this.pictureBox_143.Name = "pictureBox_143";
  262. this.pictureBox_143.Size = new System.Drawing.Size(79, 41);
  263. this.pictureBox_143.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  264. this.pictureBox_143.TabIndex = 276;
  265. this.pictureBox_143.TabStop = false;
  266. //
  267. // textBox_133
  268. //
  269. this.textBox_133.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  270. this.textBox_133.Location = new System.Drawing.Point(1026, 11);
  271. this.textBox_133.Name = "textBox_133";
  272. this.textBox_133.ReadOnly = true;
  273. this.textBox_133.Size = new System.Drawing.Size(73, 19);
  274. this.textBox_133.TabIndex = 275;
  275. //
  276. // pictureBox_133
  277. //
  278. this.pictureBox_133.BackColor = System.Drawing.SystemColors.InactiveBorder;
  279. this.pictureBox_133.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_133.Image")));
  280. this.pictureBox_133.Location = new System.Drawing.Point(1023, 0);
  281. this.pictureBox_133.Name = "pictureBox_133";
  282. this.pictureBox_133.Size = new System.Drawing.Size(79, 41);
  283. this.pictureBox_133.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  284. this.pictureBox_133.TabIndex = 274;
  285. this.pictureBox_133.TabStop = false;
  286. //
  287. // textBox_123
  288. //
  289. this.textBox_123.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  290. this.textBox_123.Location = new System.Drawing.Point(948, 11);
  291. this.textBox_123.Name = "textBox_123";
  292. this.textBox_123.ReadOnly = true;
  293. this.textBox_123.Size = new System.Drawing.Size(73, 19);
  294. this.textBox_123.TabIndex = 273;
  295. //
  296. // pictureBox_123
  297. //
  298. this.pictureBox_123.BackColor = System.Drawing.SystemColors.InactiveBorder;
  299. this.pictureBox_123.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_123.Image")));
  300. this.pictureBox_123.Location = new System.Drawing.Point(945, 0);
  301. this.pictureBox_123.Name = "pictureBox_123";
  302. this.pictureBox_123.Size = new System.Drawing.Size(79, 41);
  303. this.pictureBox_123.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  304. this.pictureBox_123.TabIndex = 272;
  305. this.pictureBox_123.TabStop = false;
  306. //
  307. // textBox_113
  308. //
  309. this.textBox_113.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  310. this.textBox_113.Location = new System.Drawing.Point(870, 11);
  311. this.textBox_113.Name = "textBox_113";
  312. this.textBox_113.ReadOnly = true;
  313. this.textBox_113.Size = new System.Drawing.Size(73, 19);
  314. this.textBox_113.TabIndex = 271;
  315. //
  316. // pictureBox_113
  317. //
  318. this.pictureBox_113.BackColor = System.Drawing.SystemColors.InactiveBorder;
  319. this.pictureBox_113.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_113.Image")));
  320. this.pictureBox_113.Location = new System.Drawing.Point(867, 0);
  321. this.pictureBox_113.Name = "pictureBox_113";
  322. this.pictureBox_113.Size = new System.Drawing.Size(79, 41);
  323. this.pictureBox_113.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  324. this.pictureBox_113.TabIndex = 270;
  325. this.pictureBox_113.TabStop = false;
  326. //
  327. // textBox_103
  328. //
  329. this.textBox_103.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  330. this.textBox_103.Location = new System.Drawing.Point(792, 11);
  331. this.textBox_103.Name = "textBox_103";
  332. this.textBox_103.ReadOnly = true;
  333. this.textBox_103.Size = new System.Drawing.Size(73, 19);
  334. this.textBox_103.TabIndex = 269;
  335. //
  336. // pictureBox_103
  337. //
  338. this.pictureBox_103.BackColor = System.Drawing.SystemColors.InactiveBorder;
  339. this.pictureBox_103.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_103.Image")));
  340. this.pictureBox_103.Location = new System.Drawing.Point(789, 0);
  341. this.pictureBox_103.Name = "pictureBox_103";
  342. this.pictureBox_103.Size = new System.Drawing.Size(79, 41);
  343. this.pictureBox_103.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  344. this.pictureBox_103.TabIndex = 268;
  345. this.pictureBox_103.TabStop = false;
  346. //
  347. // textBox_93
  348. //
  349. this.textBox_93.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  350. this.textBox_93.Location = new System.Drawing.Point(714, 11);
  351. this.textBox_93.Name = "textBox_93";
  352. this.textBox_93.ReadOnly = true;
  353. this.textBox_93.Size = new System.Drawing.Size(73, 19);
  354. this.textBox_93.TabIndex = 267;
  355. //
  356. // pictureBox_93
  357. //
  358. this.pictureBox_93.BackColor = System.Drawing.SystemColors.InactiveBorder;
  359. this.pictureBox_93.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_93.Image")));
  360. this.pictureBox_93.Location = new System.Drawing.Point(711, 0);
  361. this.pictureBox_93.Name = "pictureBox_93";
  362. this.pictureBox_93.Size = new System.Drawing.Size(79, 41);
  363. this.pictureBox_93.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  364. this.pictureBox_93.TabIndex = 266;
  365. this.pictureBox_93.TabStop = false;
  366. //
  367. // textBox_83
  368. //
  369. this.textBox_83.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  370. this.textBox_83.Location = new System.Drawing.Point(636, 11);
  371. this.textBox_83.Name = "textBox_83";
  372. this.textBox_83.ReadOnly = true;
  373. this.textBox_83.Size = new System.Drawing.Size(73, 19);
  374. this.textBox_83.TabIndex = 265;
  375. //
  376. // pictureBox_83
  377. //
  378. this.pictureBox_83.BackColor = System.Drawing.SystemColors.InactiveBorder;
  379. this.pictureBox_83.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_83.Image")));
  380. this.pictureBox_83.Location = new System.Drawing.Point(633, 0);
  381. this.pictureBox_83.Name = "pictureBox_83";
  382. this.pictureBox_83.Size = new System.Drawing.Size(79, 41);
  383. this.pictureBox_83.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  384. this.pictureBox_83.TabIndex = 264;
  385. this.pictureBox_83.TabStop = false;
  386. //
  387. // textBox_73
  388. //
  389. this.textBox_73.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  390. this.textBox_73.Location = new System.Drawing.Point(558, 11);
  391. this.textBox_73.Name = "textBox_73";
  392. this.textBox_73.ReadOnly = true;
  393. this.textBox_73.Size = new System.Drawing.Size(73, 19);
  394. this.textBox_73.TabIndex = 263;
  395. //
  396. // pictureBox_73
  397. //
  398. this.pictureBox_73.BackColor = System.Drawing.SystemColors.InactiveBorder;
  399. this.pictureBox_73.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_73.Image")));
  400. this.pictureBox_73.Location = new System.Drawing.Point(555, 0);
  401. this.pictureBox_73.Name = "pictureBox_73";
  402. this.pictureBox_73.Size = new System.Drawing.Size(79, 41);
  403. this.pictureBox_73.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  404. this.pictureBox_73.TabIndex = 262;
  405. this.pictureBox_73.TabStop = false;
  406. //
  407. // textBox_63
  408. //
  409. this.textBox_63.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  410. this.textBox_63.Location = new System.Drawing.Point(480, 11);
  411. this.textBox_63.Name = "textBox_63";
  412. this.textBox_63.ReadOnly = true;
  413. this.textBox_63.Size = new System.Drawing.Size(73, 19);
  414. this.textBox_63.TabIndex = 261;
  415. //
  416. // pictureBox_63
  417. //
  418. this.pictureBox_63.BackColor = System.Drawing.SystemColors.InactiveBorder;
  419. this.pictureBox_63.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_63.Image")));
  420. this.pictureBox_63.Location = new System.Drawing.Point(477, 0);
  421. this.pictureBox_63.Name = "pictureBox_63";
  422. this.pictureBox_63.Size = new System.Drawing.Size(79, 41);
  423. this.pictureBox_63.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  424. this.pictureBox_63.TabIndex = 260;
  425. this.pictureBox_63.TabStop = false;
  426. //
  427. // textBox_53
  428. //
  429. this.textBox_53.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  430. this.textBox_53.Location = new System.Drawing.Point(402, 11);
  431. this.textBox_53.Name = "textBox_53";
  432. this.textBox_53.ReadOnly = true;
  433. this.textBox_53.Size = new System.Drawing.Size(73, 19);
  434. this.textBox_53.TabIndex = 259;
  435. //
  436. // pictureBox_53
  437. //
  438. this.pictureBox_53.BackColor = System.Drawing.SystemColors.InactiveBorder;
  439. this.pictureBox_53.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_53.Image")));
  440. this.pictureBox_53.Location = new System.Drawing.Point(399, 0);
  441. this.pictureBox_53.Name = "pictureBox_53";
  442. this.pictureBox_53.Size = new System.Drawing.Size(79, 41);
  443. this.pictureBox_53.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  444. this.pictureBox_53.TabIndex = 258;
  445. this.pictureBox_53.TabStop = false;
  446. //
  447. // textBox_43
  448. //
  449. this.textBox_43.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  450. this.textBox_43.Location = new System.Drawing.Point(324, 11);
  451. this.textBox_43.Name = "textBox_43";
  452. this.textBox_43.ReadOnly = true;
  453. this.textBox_43.Size = new System.Drawing.Size(73, 19);
  454. this.textBox_43.TabIndex = 257;
  455. //
  456. // pictureBox_43
  457. //
  458. this.pictureBox_43.BackColor = System.Drawing.SystemColors.InactiveBorder;
  459. this.pictureBox_43.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_43.Image")));
  460. this.pictureBox_43.Location = new System.Drawing.Point(321, 0);
  461. this.pictureBox_43.Name = "pictureBox_43";
  462. this.pictureBox_43.Size = new System.Drawing.Size(79, 41);
  463. this.pictureBox_43.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  464. this.pictureBox_43.TabIndex = 256;
  465. this.pictureBox_43.TabStop = false;
  466. //
  467. // textBox_33
  468. //
  469. this.textBox_33.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  470. this.textBox_33.Location = new System.Drawing.Point(246, 11);
  471. this.textBox_33.Name = "textBox_33";
  472. this.textBox_33.ReadOnly = true;
  473. this.textBox_33.Size = new System.Drawing.Size(73, 19);
  474. this.textBox_33.TabIndex = 255;
  475. //
  476. // pictureBox_33
  477. //
  478. this.pictureBox_33.BackColor = System.Drawing.SystemColors.InactiveBorder;
  479. this.pictureBox_33.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_33.Image")));
  480. this.pictureBox_33.Location = new System.Drawing.Point(243, 0);
  481. this.pictureBox_33.Name = "pictureBox_33";
  482. this.pictureBox_33.Size = new System.Drawing.Size(79, 41);
  483. this.pictureBox_33.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  484. this.pictureBox_33.TabIndex = 254;
  485. this.pictureBox_33.TabStop = false;
  486. //
  487. // textBox_23
  488. //
  489. this.textBox_23.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  490. this.textBox_23.Location = new System.Drawing.Point(168, 11);
  491. this.textBox_23.Name = "textBox_23";
  492. this.textBox_23.ReadOnly = true;
  493. this.textBox_23.Size = new System.Drawing.Size(73, 19);
  494. this.textBox_23.TabIndex = 253;
  495. //
  496. // pictureBox_23
  497. //
  498. this.pictureBox_23.BackColor = System.Drawing.SystemColors.InactiveBorder;
  499. this.pictureBox_23.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_23.Image")));
  500. this.pictureBox_23.Location = new System.Drawing.Point(165, 0);
  501. this.pictureBox_23.Name = "pictureBox_23";
  502. this.pictureBox_23.Size = new System.Drawing.Size(79, 41);
  503. this.pictureBox_23.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  504. this.pictureBox_23.TabIndex = 252;
  505. this.pictureBox_23.TabStop = false;
  506. //
  507. // textBox_13
  508. //
  509. this.textBox_13.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  510. this.textBox_13.Location = new System.Drawing.Point(90, 11);
  511. this.textBox_13.Name = "textBox_13";
  512. this.textBox_13.ReadOnly = true;
  513. this.textBox_13.Size = new System.Drawing.Size(73, 19);
  514. this.textBox_13.TabIndex = 251;
  515. //
  516. // pictureBox_13
  517. //
  518. this.pictureBox_13.BackColor = System.Drawing.SystemColors.InactiveBorder;
  519. this.pictureBox_13.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_13.Image")));
  520. this.pictureBox_13.Location = new System.Drawing.Point(87, 0);
  521. this.pictureBox_13.Name = "pictureBox_13";
  522. this.pictureBox_13.Size = new System.Drawing.Size(79, 41);
  523. this.pictureBox_13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  524. this.pictureBox_13.TabIndex = 250;
  525. this.pictureBox_13.TabStop = false;
  526. //
  527. // textBox_162
  528. //
  529. this.textBox_162.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  530. this.textBox_162.Location = new System.Drawing.Point(1220, 51);
  531. this.textBox_162.Name = "textBox_162";
  532. this.textBox_162.ReadOnly = true;
  533. this.textBox_162.Size = new System.Drawing.Size(73, 19);
  534. this.textBox_162.TabIndex = 249;
  535. //
  536. // pictureBox_162
  537. //
  538. this.pictureBox_162.BackColor = System.Drawing.SystemColors.InactiveBorder;
  539. this.pictureBox_162.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_162.Image")));
  540. this.pictureBox_162.Location = new System.Drawing.Point(1217, 40);
  541. this.pictureBox_162.Name = "pictureBox_162";
  542. this.pictureBox_162.Size = new System.Drawing.Size(79, 41);
  543. this.pictureBox_162.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  544. this.pictureBox_162.TabIndex = 248;
  545. this.pictureBox_162.TabStop = false;
  546. //
  547. // textBox_152
  548. //
  549. this.textBox_152.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  550. this.textBox_152.Location = new System.Drawing.Point(1142, 51);
  551. this.textBox_152.Name = "textBox_152";
  552. this.textBox_152.ReadOnly = true;
  553. this.textBox_152.Size = new System.Drawing.Size(73, 19);
  554. this.textBox_152.TabIndex = 247;
  555. //
  556. // pictureBox_152
  557. //
  558. this.pictureBox_152.BackColor = System.Drawing.SystemColors.InactiveBorder;
  559. this.pictureBox_152.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_152.Image")));
  560. this.pictureBox_152.Location = new System.Drawing.Point(1139, 40);
  561. this.pictureBox_152.Name = "pictureBox_152";
  562. this.pictureBox_152.Size = new System.Drawing.Size(79, 41);
  563. this.pictureBox_152.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  564. this.pictureBox_152.TabIndex = 246;
  565. this.pictureBox_152.TabStop = false;
  566. //
  567. // textBox_142
  568. //
  569. this.textBox_142.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  570. this.textBox_142.Location = new System.Drawing.Point(1064, 51);
  571. this.textBox_142.Name = "textBox_142";
  572. this.textBox_142.ReadOnly = true;
  573. this.textBox_142.Size = new System.Drawing.Size(73, 19);
  574. this.textBox_142.TabIndex = 245;
  575. //
  576. // pictureBox_142
  577. //
  578. this.pictureBox_142.BackColor = System.Drawing.SystemColors.InactiveBorder;
  579. this.pictureBox_142.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_142.Image")));
  580. this.pictureBox_142.Location = new System.Drawing.Point(1061, 40);
  581. this.pictureBox_142.Name = "pictureBox_142";
  582. this.pictureBox_142.Size = new System.Drawing.Size(79, 41);
  583. this.pictureBox_142.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  584. this.pictureBox_142.TabIndex = 244;
  585. this.pictureBox_142.TabStop = false;
  586. //
  587. // textBox_132
  588. //
  589. this.textBox_132.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  590. this.textBox_132.Location = new System.Drawing.Point(986, 51);
  591. this.textBox_132.Name = "textBox_132";
  592. this.textBox_132.ReadOnly = true;
  593. this.textBox_132.Size = new System.Drawing.Size(73, 19);
  594. this.textBox_132.TabIndex = 243;
  595. //
  596. // pictureBox_132
  597. //
  598. this.pictureBox_132.BackColor = System.Drawing.SystemColors.InactiveBorder;
  599. this.pictureBox_132.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_132.Image")));
  600. this.pictureBox_132.Location = new System.Drawing.Point(983, 40);
  601. this.pictureBox_132.Name = "pictureBox_132";
  602. this.pictureBox_132.Size = new System.Drawing.Size(79, 41);
  603. this.pictureBox_132.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  604. this.pictureBox_132.TabIndex = 242;
  605. this.pictureBox_132.TabStop = false;
  606. //
  607. // textBox_122
  608. //
  609. this.textBox_122.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  610. this.textBox_122.Location = new System.Drawing.Point(908, 51);
  611. this.textBox_122.Name = "textBox_122";
  612. this.textBox_122.ReadOnly = true;
  613. this.textBox_122.Size = new System.Drawing.Size(73, 19);
  614. this.textBox_122.TabIndex = 241;
  615. //
  616. // pictureBox_122
  617. //
  618. this.pictureBox_122.BackColor = System.Drawing.SystemColors.InactiveBorder;
  619. this.pictureBox_122.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_122.Image")));
  620. this.pictureBox_122.Location = new System.Drawing.Point(905, 40);
  621. this.pictureBox_122.Name = "pictureBox_122";
  622. this.pictureBox_122.Size = new System.Drawing.Size(79, 41);
  623. this.pictureBox_122.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  624. this.pictureBox_122.TabIndex = 240;
  625. this.pictureBox_122.TabStop = false;
  626. //
  627. // textBox_112
  628. //
  629. this.textBox_112.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  630. this.textBox_112.Location = new System.Drawing.Point(830, 51);
  631. this.textBox_112.Name = "textBox_112";
  632. this.textBox_112.ReadOnly = true;
  633. this.textBox_112.Size = new System.Drawing.Size(73, 19);
  634. this.textBox_112.TabIndex = 239;
  635. //
  636. // pictureBox_112
  637. //
  638. this.pictureBox_112.BackColor = System.Drawing.SystemColors.InactiveBorder;
  639. this.pictureBox_112.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_112.Image")));
  640. this.pictureBox_112.Location = new System.Drawing.Point(827, 40);
  641. this.pictureBox_112.Name = "pictureBox_112";
  642. this.pictureBox_112.Size = new System.Drawing.Size(79, 41);
  643. this.pictureBox_112.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  644. this.pictureBox_112.TabIndex = 238;
  645. this.pictureBox_112.TabStop = false;
  646. //
  647. // textBox_102
  648. //
  649. this.textBox_102.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  650. this.textBox_102.Location = new System.Drawing.Point(752, 51);
  651. this.textBox_102.Name = "textBox_102";
  652. this.textBox_102.ReadOnly = true;
  653. this.textBox_102.Size = new System.Drawing.Size(73, 19);
  654. this.textBox_102.TabIndex = 237;
  655. //
  656. // pictureBox_102
  657. //
  658. this.pictureBox_102.BackColor = System.Drawing.SystemColors.InactiveBorder;
  659. this.pictureBox_102.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_102.Image")));
  660. this.pictureBox_102.Location = new System.Drawing.Point(749, 40);
  661. this.pictureBox_102.Name = "pictureBox_102";
  662. this.pictureBox_102.Size = new System.Drawing.Size(79, 41);
  663. this.pictureBox_102.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  664. this.pictureBox_102.TabIndex = 236;
  665. this.pictureBox_102.TabStop = false;
  666. //
  667. // textBox_92
  668. //
  669. this.textBox_92.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  670. this.textBox_92.Location = new System.Drawing.Point(674, 51);
  671. this.textBox_92.Name = "textBox_92";
  672. this.textBox_92.ReadOnly = true;
  673. this.textBox_92.Size = new System.Drawing.Size(73, 19);
  674. this.textBox_92.TabIndex = 235;
  675. //
  676. // pictureBox_92
  677. //
  678. this.pictureBox_92.BackColor = System.Drawing.SystemColors.InactiveBorder;
  679. this.pictureBox_92.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_92.Image")));
  680. this.pictureBox_92.Location = new System.Drawing.Point(671, 40);
  681. this.pictureBox_92.Name = "pictureBox_92";
  682. this.pictureBox_92.Size = new System.Drawing.Size(79, 41);
  683. this.pictureBox_92.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  684. this.pictureBox_92.TabIndex = 234;
  685. this.pictureBox_92.TabStop = false;
  686. //
  687. // textBox_82
  688. //
  689. this.textBox_82.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  690. this.textBox_82.Location = new System.Drawing.Point(596, 51);
  691. this.textBox_82.Name = "textBox_82";
  692. this.textBox_82.ReadOnly = true;
  693. this.textBox_82.Size = new System.Drawing.Size(73, 19);
  694. this.textBox_82.TabIndex = 233;
  695. //
  696. // pictureBox_82
  697. //
  698. this.pictureBox_82.BackColor = System.Drawing.SystemColors.InactiveBorder;
  699. this.pictureBox_82.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_82.Image")));
  700. this.pictureBox_82.Location = new System.Drawing.Point(593, 40);
  701. this.pictureBox_82.Name = "pictureBox_82";
  702. this.pictureBox_82.Size = new System.Drawing.Size(79, 41);
  703. this.pictureBox_82.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  704. this.pictureBox_82.TabIndex = 232;
  705. this.pictureBox_82.TabStop = false;
  706. //
  707. // textBox_72
  708. //
  709. this.textBox_72.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  710. this.textBox_72.Location = new System.Drawing.Point(518, 51);
  711. this.textBox_72.Name = "textBox_72";
  712. this.textBox_72.ReadOnly = true;
  713. this.textBox_72.Size = new System.Drawing.Size(73, 19);
  714. this.textBox_72.TabIndex = 231;
  715. //
  716. // pictureBox_72
  717. //
  718. this.pictureBox_72.BackColor = System.Drawing.SystemColors.InactiveBorder;
  719. this.pictureBox_72.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_72.Image")));
  720. this.pictureBox_72.Location = new System.Drawing.Point(515, 40);
  721. this.pictureBox_72.Name = "pictureBox_72";
  722. this.pictureBox_72.Size = new System.Drawing.Size(79, 41);
  723. this.pictureBox_72.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  724. this.pictureBox_72.TabIndex = 230;
  725. this.pictureBox_72.TabStop = false;
  726. //
  727. // textBox_62
  728. //
  729. this.textBox_62.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  730. this.textBox_62.Location = new System.Drawing.Point(440, 51);
  731. this.textBox_62.Name = "textBox_62";
  732. this.textBox_62.ReadOnly = true;
  733. this.textBox_62.Size = new System.Drawing.Size(73, 19);
  734. this.textBox_62.TabIndex = 229;
  735. //
  736. // pictureBox_62
  737. //
  738. this.pictureBox_62.BackColor = System.Drawing.SystemColors.InactiveBorder;
  739. this.pictureBox_62.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_62.Image")));
  740. this.pictureBox_62.Location = new System.Drawing.Point(437, 40);
  741. this.pictureBox_62.Name = "pictureBox_62";
  742. this.pictureBox_62.Size = new System.Drawing.Size(79, 41);
  743. this.pictureBox_62.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  744. this.pictureBox_62.TabIndex = 228;
  745. this.pictureBox_62.TabStop = false;
  746. //
  747. // textBox_52
  748. //
  749. this.textBox_52.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  750. this.textBox_52.Location = new System.Drawing.Point(362, 51);
  751. this.textBox_52.Name = "textBox_52";
  752. this.textBox_52.ReadOnly = true;
  753. this.textBox_52.Size = new System.Drawing.Size(73, 19);
  754. this.textBox_52.TabIndex = 227;
  755. //
  756. // pictureBox_52
  757. //
  758. this.pictureBox_52.BackColor = System.Drawing.SystemColors.InactiveBorder;
  759. this.pictureBox_52.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_52.Image")));
  760. this.pictureBox_52.Location = new System.Drawing.Point(359, 40);
  761. this.pictureBox_52.Name = "pictureBox_52";
  762. this.pictureBox_52.Size = new System.Drawing.Size(79, 41);
  763. this.pictureBox_52.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  764. this.pictureBox_52.TabIndex = 226;
  765. this.pictureBox_52.TabStop = false;
  766. //
  767. // ultraPanel1
  768. //
  769. appearance5.BackColor = System.Drawing.Color.Gainsboro;
  770. this.ultraPanel1.Appearance = appearance5;
  771. //
  772. // ultraPanel1.ClientArea
  773. //
  774. this.ultraPanel1.ClientArea.Controls.Add(this.panel2);
  775. this.ultraPanel1.ClientArea.Controls.Add(this.panel1);
  776. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  777. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  778. this.ultraPanel1.Name = "ultraPanel1";
  779. this.ultraPanel1.Size = new System.Drawing.Size(654, 431);
  780. this.ultraPanel1.TabIndex = 1;
  781. //
  782. // panel2
  783. //
  784. this.panel2.Controls.Add(this.panel3);
  785. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  786. this.panel2.Location = new System.Drawing.Point(0, 40);
  787. this.panel2.Name = "panel2";
  788. this.panel2.Size = new System.Drawing.Size(654, 391);
  789. this.panel2.TabIndex = 1;
  790. //
  791. // panel3
  792. //
  793. this.panel3.Controls.Add(this.panel4);
  794. this.panel3.Controls.Add(this.panel7);
  795. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  796. this.panel3.Location = new System.Drawing.Point(0, 0);
  797. this.panel3.Name = "panel3";
  798. this.panel3.Size = new System.Drawing.Size(654, 391);
  799. this.panel3.TabIndex = 1;
  800. //
  801. // panel4
  802. //
  803. this.panel4.Controls.Add(this.ultraGrid1);
  804. this.panel4.Controls.Add(this.panel6);
  805. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  806. this.panel4.Location = new System.Drawing.Point(0, 193);
  807. this.panel4.Name = "panel4";
  808. this.panel4.Size = new System.Drawing.Size(654, 198);
  809. this.panel4.TabIndex = 2;
  810. //
  811. // ultraGrid1
  812. //
  813. appearance1.BackColor = System.Drawing.SystemColors.Window;
  814. appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  815. this.ultraGrid1.DisplayLayout.Appearance = appearance1;
  816. this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  817. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  818. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  819. this.ultraGrid1.Location = new System.Drawing.Point(0, 22);
  820. this.ultraGrid1.Name = "ultraGrid1";
  821. this.ultraGrid1.Size = new System.Drawing.Size(654, 176);
  822. this.ultraGrid1.TabIndex = 2;
  823. //
  824. // panel6
  825. //
  826. this.panel6.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
  827. this.panel6.Controls.Add(this.label22);
  828. this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
  829. this.panel6.Location = new System.Drawing.Point(0, 0);
  830. this.panel6.Name = "panel6";
  831. this.panel6.Size = new System.Drawing.Size(654, 22);
  832. this.panel6.TabIndex = 0;
  833. //
  834. // label22
  835. //
  836. this.label22.AutoSize = true;
  837. this.label22.Location = new System.Drawing.Point(3, 7);
  838. this.label22.Name = "label22";
  839. this.label22.Size = new System.Drawing.Size(77, 12);
  840. this.label22.TabIndex = 0;
  841. this.label22.Text = "钢卷详细信息";
  842. //
  843. // panel7
  844. //
  845. this.panel7.BackColor = System.Drawing.SystemColors.Window;
  846. this.panel7.Controls.Add(this.panel5);
  847. this.panel7.Controls.Add(this.ultraLabel1);
  848. this.panel7.Dock = System.Windows.Forms.DockStyle.Top;
  849. this.panel7.Location = new System.Drawing.Point(0, 0);
  850. this.panel7.Name = "panel7";
  851. this.panel7.Size = new System.Drawing.Size(654, 193);
  852. this.panel7.TabIndex = 0;
  853. //
  854. // panel5
  855. //
  856. this.panel5.AutoScroll = true;
  857. this.panel5.Controls.Add(this.textBox_153);
  858. this.panel5.Controls.Add(this.pictureBox_153);
  859. this.panel5.Controls.Add(this.textBox_143);
  860. this.panel5.Controls.Add(this.pictureBox_143);
  861. this.panel5.Controls.Add(this.textBox_133);
  862. this.panel5.Controls.Add(this.pictureBox_133);
  863. this.panel5.Controls.Add(this.textBox_123);
  864. this.panel5.Controls.Add(this.pictureBox_123);
  865. this.panel5.Controls.Add(this.textBox_113);
  866. this.panel5.Controls.Add(this.pictureBox_113);
  867. this.panel5.Controls.Add(this.textBox_103);
  868. this.panel5.Controls.Add(this.pictureBox_103);
  869. this.panel5.Controls.Add(this.textBox_93);
  870. this.panel5.Controls.Add(this.pictureBox_93);
  871. this.panel5.Controls.Add(this.textBox_83);
  872. this.panel5.Controls.Add(this.pictureBox_83);
  873. this.panel5.Controls.Add(this.textBox_73);
  874. this.panel5.Controls.Add(this.pictureBox_73);
  875. this.panel5.Controls.Add(this.textBox_63);
  876. this.panel5.Controls.Add(this.pictureBox_63);
  877. this.panel5.Controls.Add(this.textBox_53);
  878. this.panel5.Controls.Add(this.pictureBox_53);
  879. this.panel5.Controls.Add(this.textBox_43);
  880. this.panel5.Controls.Add(this.pictureBox_43);
  881. this.panel5.Controls.Add(this.textBox_33);
  882. this.panel5.Controls.Add(this.pictureBox_33);
  883. this.panel5.Controls.Add(this.textBox_23);
  884. this.panel5.Controls.Add(this.pictureBox_23);
  885. this.panel5.Controls.Add(this.textBox_13);
  886. this.panel5.Controls.Add(this.pictureBox_13);
  887. this.panel5.Controls.Add(this.textBox_162);
  888. this.panel5.Controls.Add(this.pictureBox_162);
  889. this.panel5.Controls.Add(this.textBox_152);
  890. this.panel5.Controls.Add(this.pictureBox_152);
  891. this.panel5.Controls.Add(this.textBox_142);
  892. this.panel5.Controls.Add(this.pictureBox_142);
  893. this.panel5.Controls.Add(this.textBox_132);
  894. this.panel5.Controls.Add(this.pictureBox_132);
  895. this.panel5.Controls.Add(this.textBox_122);
  896. this.panel5.Controls.Add(this.pictureBox_122);
  897. this.panel5.Controls.Add(this.textBox_112);
  898. this.panel5.Controls.Add(this.pictureBox_112);
  899. this.panel5.Controls.Add(this.textBox_102);
  900. this.panel5.Controls.Add(this.pictureBox_102);
  901. this.panel5.Controls.Add(this.textBox_92);
  902. this.panel5.Controls.Add(this.pictureBox_92);
  903. this.panel5.Controls.Add(this.textBox_82);
  904. this.panel5.Controls.Add(this.pictureBox_82);
  905. this.panel5.Controls.Add(this.textBox_72);
  906. this.panel5.Controls.Add(this.pictureBox_72);
  907. this.panel5.Controls.Add(this.textBox_62);
  908. this.panel5.Controls.Add(this.pictureBox_62);
  909. this.panel5.Controls.Add(this.textBox_52);
  910. this.panel5.Controls.Add(this.pictureBox_52);
  911. this.panel5.Controls.Add(this.textBox_42);
  912. this.panel5.Controls.Add(this.pictureBox_42);
  913. this.panel5.Controls.Add(this.textBox_32);
  914. this.panel5.Controls.Add(this.pictureBox_32);
  915. this.panel5.Controls.Add(this.textBox_22);
  916. this.panel5.Controls.Add(this.pictureBox_22);
  917. this.panel5.Controls.Add(this.textBox_12);
  918. this.panel5.Controls.Add(this.pictureBox_12);
  919. this.panel5.Controls.Add(this.textBox_171);
  920. this.panel5.Controls.Add(this.pictureBox_171);
  921. this.panel5.Controls.Add(this.textBox_161);
  922. this.panel5.Controls.Add(this.pictureBox_161);
  923. this.panel5.Controls.Add(this.textBox_151);
  924. this.panel5.Controls.Add(this.pictureBox_151);
  925. this.panel5.Controls.Add(this.textBox_141);
  926. this.panel5.Controls.Add(this.pictureBox_141);
  927. this.panel5.Controls.Add(this.textBox_131);
  928. this.panel5.Controls.Add(this.pictureBox_131);
  929. this.panel5.Controls.Add(this.textBox_121);
  930. this.panel5.Controls.Add(this.pictureBox_121);
  931. this.panel5.Controls.Add(this.textBox_111);
  932. this.panel5.Controls.Add(this.pictureBox_111);
  933. this.panel5.Controls.Add(this.textBox_101);
  934. this.panel5.Controls.Add(this.pictureBox_101);
  935. this.panel5.Controls.Add(this.textBox_91);
  936. this.panel5.Controls.Add(this.pictureBox_91);
  937. this.panel5.Controls.Add(this.textBox_81);
  938. this.panel5.Controls.Add(this.pictureBox_81);
  939. this.panel5.Controls.Add(this.textBox_71);
  940. this.panel5.Controls.Add(this.pictureBox_71);
  941. this.panel5.Controls.Add(this.textBox_61);
  942. this.panel5.Controls.Add(this.pictureBox_61);
  943. this.panel5.Controls.Add(this.textBox_51);
  944. this.panel5.Controls.Add(this.pictureBox_51);
  945. this.panel5.Controls.Add(this.textBox_41);
  946. this.panel5.Controls.Add(this.pictureBox_41);
  947. this.panel5.Controls.Add(this.textBox_31);
  948. this.panel5.Controls.Add(this.pictureBox_31);
  949. this.panel5.Controls.Add(this.textBox_21);
  950. this.panel5.Controls.Add(this.pictureBox_21);
  951. this.panel5.Controls.Add(this.textBox_11);
  952. this.panel5.Controls.Add(this.pictureBox_11);
  953. this.panel5.Controls.Add(this.label18);
  954. this.panel5.Controls.Add(this.label14);
  955. this.panel5.Controls.Add(this.label15);
  956. this.panel5.Controls.Add(this.label16);
  957. this.panel5.Controls.Add(this.label17);
  958. this.panel5.Controls.Add(this.label10);
  959. this.panel5.Controls.Add(this.label11);
  960. this.panel5.Controls.Add(this.label12);
  961. this.panel5.Controls.Add(this.label13);
  962. this.panel5.Controls.Add(this.label6);
  963. this.panel5.Controls.Add(this.label7);
  964. this.panel5.Controls.Add(this.label8);
  965. this.panel5.Controls.Add(this.label9);
  966. this.panel5.Controls.Add(this.label5);
  967. this.panel5.Controls.Add(this.label19);
  968. this.panel5.Controls.Add(this.label20);
  969. this.panel5.Controls.Add(this.label21);
  970. this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
  971. this.panel5.Location = new System.Drawing.Point(0, 39);
  972. this.panel5.Name = "panel5";
  973. this.panel5.Size = new System.Drawing.Size(654, 154);
  974. this.panel5.TabIndex = 38;
  975. //
  976. // textBox_42
  977. //
  978. this.textBox_42.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  979. this.textBox_42.Location = new System.Drawing.Point(284, 51);
  980. this.textBox_42.Name = "textBox_42";
  981. this.textBox_42.ReadOnly = true;
  982. this.textBox_42.Size = new System.Drawing.Size(73, 19);
  983. this.textBox_42.TabIndex = 225;
  984. //
  985. // pictureBox_42
  986. //
  987. this.pictureBox_42.BackColor = System.Drawing.SystemColors.InactiveBorder;
  988. this.pictureBox_42.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_42.Image")));
  989. this.pictureBox_42.Location = new System.Drawing.Point(281, 40);
  990. this.pictureBox_42.Name = "pictureBox_42";
  991. this.pictureBox_42.Size = new System.Drawing.Size(79, 41);
  992. this.pictureBox_42.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  993. this.pictureBox_42.TabIndex = 224;
  994. this.pictureBox_42.TabStop = false;
  995. //
  996. // textBox_32
  997. //
  998. this.textBox_32.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  999. this.textBox_32.Location = new System.Drawing.Point(206, 51);
  1000. this.textBox_32.Name = "textBox_32";
  1001. this.textBox_32.ReadOnly = true;
  1002. this.textBox_32.Size = new System.Drawing.Size(73, 19);
  1003. this.textBox_32.TabIndex = 223;
  1004. //
  1005. // pictureBox_32
  1006. //
  1007. this.pictureBox_32.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1008. this.pictureBox_32.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_32.Image")));
  1009. this.pictureBox_32.Location = new System.Drawing.Point(203, 40);
  1010. this.pictureBox_32.Name = "pictureBox_32";
  1011. this.pictureBox_32.Size = new System.Drawing.Size(79, 41);
  1012. this.pictureBox_32.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1013. this.pictureBox_32.TabIndex = 222;
  1014. this.pictureBox_32.TabStop = false;
  1015. //
  1016. // textBox_22
  1017. //
  1018. this.textBox_22.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1019. this.textBox_22.Location = new System.Drawing.Point(128, 51);
  1020. this.textBox_22.Name = "textBox_22";
  1021. this.textBox_22.ReadOnly = true;
  1022. this.textBox_22.Size = new System.Drawing.Size(73, 19);
  1023. this.textBox_22.TabIndex = 221;
  1024. //
  1025. // pictureBox_22
  1026. //
  1027. this.pictureBox_22.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1028. this.pictureBox_22.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_22.Image")));
  1029. this.pictureBox_22.Location = new System.Drawing.Point(125, 40);
  1030. this.pictureBox_22.Name = "pictureBox_22";
  1031. this.pictureBox_22.Size = new System.Drawing.Size(79, 41);
  1032. this.pictureBox_22.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1033. this.pictureBox_22.TabIndex = 220;
  1034. this.pictureBox_22.TabStop = false;
  1035. //
  1036. // textBox_12
  1037. //
  1038. this.textBox_12.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1039. this.textBox_12.Location = new System.Drawing.Point(50, 51);
  1040. this.textBox_12.Name = "textBox_12";
  1041. this.textBox_12.ReadOnly = true;
  1042. this.textBox_12.Size = new System.Drawing.Size(73, 19);
  1043. this.textBox_12.TabIndex = 219;
  1044. //
  1045. // pictureBox_12
  1046. //
  1047. this.pictureBox_12.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1048. this.pictureBox_12.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_12.Image")));
  1049. this.pictureBox_12.Location = new System.Drawing.Point(47, 40);
  1050. this.pictureBox_12.Name = "pictureBox_12";
  1051. this.pictureBox_12.Size = new System.Drawing.Size(79, 41);
  1052. this.pictureBox_12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1053. this.pictureBox_12.TabIndex = 218;
  1054. this.pictureBox_12.TabStop = false;
  1055. //
  1056. // textBox_171
  1057. //
  1058. this.textBox_171.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1059. this.textBox_171.Location = new System.Drawing.Point(1260, 91);
  1060. this.textBox_171.Name = "textBox_171";
  1061. this.textBox_171.ReadOnly = true;
  1062. this.textBox_171.Size = new System.Drawing.Size(73, 19);
  1063. this.textBox_171.TabIndex = 217;
  1064. //
  1065. // pictureBox_171
  1066. //
  1067. this.pictureBox_171.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1068. this.pictureBox_171.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_171.Image")));
  1069. this.pictureBox_171.Location = new System.Drawing.Point(1257, 80);
  1070. this.pictureBox_171.Name = "pictureBox_171";
  1071. this.pictureBox_171.Size = new System.Drawing.Size(79, 41);
  1072. this.pictureBox_171.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1073. this.pictureBox_171.TabIndex = 216;
  1074. this.pictureBox_171.TabStop = false;
  1075. //
  1076. // textBox_161
  1077. //
  1078. this.textBox_161.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1079. this.textBox_161.Location = new System.Drawing.Point(1182, 91);
  1080. this.textBox_161.Name = "textBox_161";
  1081. this.textBox_161.ReadOnly = true;
  1082. this.textBox_161.Size = new System.Drawing.Size(73, 19);
  1083. this.textBox_161.TabIndex = 215;
  1084. //
  1085. // pictureBox_161
  1086. //
  1087. this.pictureBox_161.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1088. this.pictureBox_161.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_161.Image")));
  1089. this.pictureBox_161.Location = new System.Drawing.Point(1179, 80);
  1090. this.pictureBox_161.Name = "pictureBox_161";
  1091. this.pictureBox_161.Size = new System.Drawing.Size(79, 41);
  1092. this.pictureBox_161.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1093. this.pictureBox_161.TabIndex = 214;
  1094. this.pictureBox_161.TabStop = false;
  1095. //
  1096. // textBox_151
  1097. //
  1098. this.textBox_151.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1099. this.textBox_151.Location = new System.Drawing.Point(1104, 91);
  1100. this.textBox_151.Name = "textBox_151";
  1101. this.textBox_151.ReadOnly = true;
  1102. this.textBox_151.Size = new System.Drawing.Size(73, 19);
  1103. this.textBox_151.TabIndex = 213;
  1104. //
  1105. // pictureBox_151
  1106. //
  1107. this.pictureBox_151.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1108. this.pictureBox_151.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_151.Image")));
  1109. this.pictureBox_151.Location = new System.Drawing.Point(1101, 80);
  1110. this.pictureBox_151.Name = "pictureBox_151";
  1111. this.pictureBox_151.Size = new System.Drawing.Size(79, 41);
  1112. this.pictureBox_151.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1113. this.pictureBox_151.TabIndex = 212;
  1114. this.pictureBox_151.TabStop = false;
  1115. //
  1116. // textBox_141
  1117. //
  1118. this.textBox_141.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1119. this.textBox_141.Location = new System.Drawing.Point(1026, 91);
  1120. this.textBox_141.Name = "textBox_141";
  1121. this.textBox_141.ReadOnly = true;
  1122. this.textBox_141.Size = new System.Drawing.Size(73, 19);
  1123. this.textBox_141.TabIndex = 211;
  1124. //
  1125. // pictureBox_141
  1126. //
  1127. this.pictureBox_141.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1128. this.pictureBox_141.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_141.Image")));
  1129. this.pictureBox_141.Location = new System.Drawing.Point(1023, 80);
  1130. this.pictureBox_141.Name = "pictureBox_141";
  1131. this.pictureBox_141.Size = new System.Drawing.Size(79, 41);
  1132. this.pictureBox_141.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1133. this.pictureBox_141.TabIndex = 210;
  1134. this.pictureBox_141.TabStop = false;
  1135. //
  1136. // textBox_131
  1137. //
  1138. this.textBox_131.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1139. this.textBox_131.Location = new System.Drawing.Point(948, 91);
  1140. this.textBox_131.Name = "textBox_131";
  1141. this.textBox_131.ReadOnly = true;
  1142. this.textBox_131.Size = new System.Drawing.Size(73, 19);
  1143. this.textBox_131.TabIndex = 209;
  1144. //
  1145. // pictureBox_131
  1146. //
  1147. this.pictureBox_131.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1148. this.pictureBox_131.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_131.Image")));
  1149. this.pictureBox_131.Location = new System.Drawing.Point(945, 80);
  1150. this.pictureBox_131.Name = "pictureBox_131";
  1151. this.pictureBox_131.Size = new System.Drawing.Size(79, 41);
  1152. this.pictureBox_131.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1153. this.pictureBox_131.TabIndex = 208;
  1154. this.pictureBox_131.TabStop = false;
  1155. //
  1156. // textBox_121
  1157. //
  1158. this.textBox_121.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1159. this.textBox_121.Location = new System.Drawing.Point(870, 91);
  1160. this.textBox_121.Name = "textBox_121";
  1161. this.textBox_121.ReadOnly = true;
  1162. this.textBox_121.Size = new System.Drawing.Size(73, 19);
  1163. this.textBox_121.TabIndex = 207;
  1164. //
  1165. // pictureBox_121
  1166. //
  1167. this.pictureBox_121.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1168. this.pictureBox_121.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_121.Image")));
  1169. this.pictureBox_121.Location = new System.Drawing.Point(867, 80);
  1170. this.pictureBox_121.Name = "pictureBox_121";
  1171. this.pictureBox_121.Size = new System.Drawing.Size(79, 41);
  1172. this.pictureBox_121.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1173. this.pictureBox_121.TabIndex = 206;
  1174. this.pictureBox_121.TabStop = false;
  1175. //
  1176. // textBox_111
  1177. //
  1178. this.textBox_111.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1179. this.textBox_111.Location = new System.Drawing.Point(792, 91);
  1180. this.textBox_111.Name = "textBox_111";
  1181. this.textBox_111.ReadOnly = true;
  1182. this.textBox_111.Size = new System.Drawing.Size(73, 19);
  1183. this.textBox_111.TabIndex = 205;
  1184. //
  1185. // pictureBox_111
  1186. //
  1187. this.pictureBox_111.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1188. this.pictureBox_111.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_111.Image")));
  1189. this.pictureBox_111.Location = new System.Drawing.Point(789, 80);
  1190. this.pictureBox_111.Name = "pictureBox_111";
  1191. this.pictureBox_111.Size = new System.Drawing.Size(79, 41);
  1192. this.pictureBox_111.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1193. this.pictureBox_111.TabIndex = 204;
  1194. this.pictureBox_111.TabStop = false;
  1195. //
  1196. // textBox_101
  1197. //
  1198. this.textBox_101.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1199. this.textBox_101.Location = new System.Drawing.Point(714, 91);
  1200. this.textBox_101.Name = "textBox_101";
  1201. this.textBox_101.ReadOnly = true;
  1202. this.textBox_101.Size = new System.Drawing.Size(73, 19);
  1203. this.textBox_101.TabIndex = 203;
  1204. //
  1205. // pictureBox_101
  1206. //
  1207. this.pictureBox_101.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1208. this.pictureBox_101.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_101.Image")));
  1209. this.pictureBox_101.Location = new System.Drawing.Point(711, 80);
  1210. this.pictureBox_101.Name = "pictureBox_101";
  1211. this.pictureBox_101.Size = new System.Drawing.Size(79, 41);
  1212. this.pictureBox_101.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1213. this.pictureBox_101.TabIndex = 202;
  1214. this.pictureBox_101.TabStop = false;
  1215. //
  1216. // textBox_91
  1217. //
  1218. this.textBox_91.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1219. this.textBox_91.Location = new System.Drawing.Point(636, 91);
  1220. this.textBox_91.Name = "textBox_91";
  1221. this.textBox_91.ReadOnly = true;
  1222. this.textBox_91.Size = new System.Drawing.Size(73, 19);
  1223. this.textBox_91.TabIndex = 201;
  1224. //
  1225. // pictureBox_91
  1226. //
  1227. this.pictureBox_91.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1228. this.pictureBox_91.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_91.Image")));
  1229. this.pictureBox_91.Location = new System.Drawing.Point(633, 80);
  1230. this.pictureBox_91.Name = "pictureBox_91";
  1231. this.pictureBox_91.Size = new System.Drawing.Size(79, 41);
  1232. this.pictureBox_91.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1233. this.pictureBox_91.TabIndex = 200;
  1234. this.pictureBox_91.TabStop = false;
  1235. //
  1236. // textBox_81
  1237. //
  1238. this.textBox_81.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1239. this.textBox_81.Location = new System.Drawing.Point(558, 91);
  1240. this.textBox_81.Name = "textBox_81";
  1241. this.textBox_81.ReadOnly = true;
  1242. this.textBox_81.Size = new System.Drawing.Size(73, 19);
  1243. this.textBox_81.TabIndex = 199;
  1244. //
  1245. // pictureBox_81
  1246. //
  1247. this.pictureBox_81.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1248. this.pictureBox_81.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_81.Image")));
  1249. this.pictureBox_81.Location = new System.Drawing.Point(555, 80);
  1250. this.pictureBox_81.Name = "pictureBox_81";
  1251. this.pictureBox_81.Size = new System.Drawing.Size(79, 41);
  1252. this.pictureBox_81.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1253. this.pictureBox_81.TabIndex = 198;
  1254. this.pictureBox_81.TabStop = false;
  1255. //
  1256. // textBox_71
  1257. //
  1258. this.textBox_71.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1259. this.textBox_71.Location = new System.Drawing.Point(480, 91);
  1260. this.textBox_71.Name = "textBox_71";
  1261. this.textBox_71.ReadOnly = true;
  1262. this.textBox_71.Size = new System.Drawing.Size(73, 19);
  1263. this.textBox_71.TabIndex = 197;
  1264. //
  1265. // pictureBox_71
  1266. //
  1267. this.pictureBox_71.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1268. this.pictureBox_71.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_71.Image")));
  1269. this.pictureBox_71.Location = new System.Drawing.Point(477, 80);
  1270. this.pictureBox_71.Name = "pictureBox_71";
  1271. this.pictureBox_71.Size = new System.Drawing.Size(79, 41);
  1272. this.pictureBox_71.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1273. this.pictureBox_71.TabIndex = 196;
  1274. this.pictureBox_71.TabStop = false;
  1275. //
  1276. // textBox_61
  1277. //
  1278. this.textBox_61.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1279. this.textBox_61.Location = new System.Drawing.Point(402, 91);
  1280. this.textBox_61.Name = "textBox_61";
  1281. this.textBox_61.ReadOnly = true;
  1282. this.textBox_61.Size = new System.Drawing.Size(73, 19);
  1283. this.textBox_61.TabIndex = 195;
  1284. //
  1285. // pictureBox_61
  1286. //
  1287. this.pictureBox_61.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1288. this.pictureBox_61.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_61.Image")));
  1289. this.pictureBox_61.Location = new System.Drawing.Point(399, 80);
  1290. this.pictureBox_61.Name = "pictureBox_61";
  1291. this.pictureBox_61.Size = new System.Drawing.Size(79, 41);
  1292. this.pictureBox_61.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1293. this.pictureBox_61.TabIndex = 194;
  1294. this.pictureBox_61.TabStop = false;
  1295. //
  1296. // textBox_51
  1297. //
  1298. this.textBox_51.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1299. this.textBox_51.Location = new System.Drawing.Point(324, 91);
  1300. this.textBox_51.Name = "textBox_51";
  1301. this.textBox_51.ReadOnly = true;
  1302. this.textBox_51.Size = new System.Drawing.Size(73, 19);
  1303. this.textBox_51.TabIndex = 193;
  1304. //
  1305. // pictureBox_51
  1306. //
  1307. this.pictureBox_51.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1308. this.pictureBox_51.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_51.Image")));
  1309. this.pictureBox_51.Location = new System.Drawing.Point(321, 80);
  1310. this.pictureBox_51.Name = "pictureBox_51";
  1311. this.pictureBox_51.Size = new System.Drawing.Size(79, 41);
  1312. this.pictureBox_51.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1313. this.pictureBox_51.TabIndex = 192;
  1314. this.pictureBox_51.TabStop = false;
  1315. //
  1316. // textBox_41
  1317. //
  1318. this.textBox_41.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1319. this.textBox_41.Location = new System.Drawing.Point(246, 91);
  1320. this.textBox_41.Name = "textBox_41";
  1321. this.textBox_41.ReadOnly = true;
  1322. this.textBox_41.Size = new System.Drawing.Size(73, 19);
  1323. this.textBox_41.TabIndex = 191;
  1324. //
  1325. // pictureBox_41
  1326. //
  1327. this.pictureBox_41.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1328. this.pictureBox_41.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_41.Image")));
  1329. this.pictureBox_41.Location = new System.Drawing.Point(243, 80);
  1330. this.pictureBox_41.Name = "pictureBox_41";
  1331. this.pictureBox_41.Size = new System.Drawing.Size(79, 41);
  1332. this.pictureBox_41.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1333. this.pictureBox_41.TabIndex = 190;
  1334. this.pictureBox_41.TabStop = false;
  1335. //
  1336. // textBox_31
  1337. //
  1338. this.textBox_31.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1339. this.textBox_31.Location = new System.Drawing.Point(168, 91);
  1340. this.textBox_31.Name = "textBox_31";
  1341. this.textBox_31.ReadOnly = true;
  1342. this.textBox_31.Size = new System.Drawing.Size(73, 19);
  1343. this.textBox_31.TabIndex = 189;
  1344. //
  1345. // pictureBox_31
  1346. //
  1347. this.pictureBox_31.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1348. this.pictureBox_31.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_31.Image")));
  1349. this.pictureBox_31.Location = new System.Drawing.Point(165, 80);
  1350. this.pictureBox_31.Name = "pictureBox_31";
  1351. this.pictureBox_31.Size = new System.Drawing.Size(79, 41);
  1352. this.pictureBox_31.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1353. this.pictureBox_31.TabIndex = 188;
  1354. this.pictureBox_31.TabStop = false;
  1355. //
  1356. // textBox_21
  1357. //
  1358. this.textBox_21.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1359. this.textBox_21.Location = new System.Drawing.Point(90, 91);
  1360. this.textBox_21.Name = "textBox_21";
  1361. this.textBox_21.ReadOnly = true;
  1362. this.textBox_21.Size = new System.Drawing.Size(73, 19);
  1363. this.textBox_21.TabIndex = 187;
  1364. //
  1365. // pictureBox_21
  1366. //
  1367. this.pictureBox_21.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1368. this.pictureBox_21.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_21.Image")));
  1369. this.pictureBox_21.Location = new System.Drawing.Point(87, 80);
  1370. this.pictureBox_21.Name = "pictureBox_21";
  1371. this.pictureBox_21.Size = new System.Drawing.Size(79, 41);
  1372. this.pictureBox_21.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1373. this.pictureBox_21.TabIndex = 186;
  1374. this.pictureBox_21.TabStop = false;
  1375. //
  1376. // textBox_11
  1377. //
  1378. this.textBox_11.Font = new System.Drawing.Font("Arial Narrow", 7.5F);
  1379. this.textBox_11.Location = new System.Drawing.Point(12, 91);
  1380. this.textBox_11.Name = "textBox_11";
  1381. this.textBox_11.ReadOnly = true;
  1382. this.textBox_11.Size = new System.Drawing.Size(73, 19);
  1383. this.textBox_11.TabIndex = 185;
  1384. //
  1385. // pictureBox_11
  1386. //
  1387. this.pictureBox_11.BackColor = System.Drawing.SystemColors.InactiveBorder;
  1388. this.pictureBox_11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_11.Image")));
  1389. this.pictureBox_11.Location = new System.Drawing.Point(9, 80);
  1390. this.pictureBox_11.Name = "pictureBox_11";
  1391. this.pictureBox_11.Size = new System.Drawing.Size(79, 41);
  1392. this.pictureBox_11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1393. this.pictureBox_11.TabIndex = 184;
  1394. this.pictureBox_11.TabStop = false;
  1395. //
  1396. // label18
  1397. //
  1398. this.label18.AutoSize = true;
  1399. this.label18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1400. this.label18.Location = new System.Drawing.Point(1284, 122);
  1401. this.label18.Name = "label18";
  1402. this.label18.Size = new System.Drawing.Size(19, 12);
  1403. this.label18.TabIndex = 183;
  1404. this.label18.Text = "17";
  1405. //
  1406. // label14
  1407. //
  1408. this.label14.AutoSize = true;
  1409. this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1410. this.label14.Location = new System.Drawing.Point(1209, 122);
  1411. this.label14.Name = "label14";
  1412. this.label14.Size = new System.Drawing.Size(19, 12);
  1413. this.label14.TabIndex = 182;
  1414. this.label14.Text = "16";
  1415. //
  1416. // label15
  1417. //
  1418. this.label15.AutoSize = true;
  1419. this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1420. this.label15.Location = new System.Drawing.Point(1130, 122);
  1421. this.label15.Name = "label15";
  1422. this.label15.Size = new System.Drawing.Size(19, 12);
  1423. this.label15.TabIndex = 181;
  1424. this.label15.Text = "15";
  1425. //
  1426. // label16
  1427. //
  1428. this.label16.AutoSize = true;
  1429. this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1430. this.label16.Location = new System.Drawing.Point(1052, 122);
  1431. this.label16.Name = "label16";
  1432. this.label16.Size = new System.Drawing.Size(19, 12);
  1433. this.label16.TabIndex = 180;
  1434. this.label16.Text = "14";
  1435. //
  1436. // label17
  1437. //
  1438. this.label17.AutoSize = true;
  1439. this.label17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1440. this.label17.Location = new System.Drawing.Point(973, 122);
  1441. this.label17.Name = "label17";
  1442. this.label17.Size = new System.Drawing.Size(19, 12);
  1443. this.label17.TabIndex = 179;
  1444. this.label17.Text = "13";
  1445. //
  1446. // label10
  1447. //
  1448. this.label10.AutoSize = true;
  1449. this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1450. this.label10.Location = new System.Drawing.Point(899, 122);
  1451. this.label10.Name = "label10";
  1452. this.label10.Size = new System.Drawing.Size(19, 12);
  1453. this.label10.TabIndex = 178;
  1454. this.label10.Text = "12";
  1455. //
  1456. // label11
  1457. //
  1458. this.label11.AutoSize = true;
  1459. this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1460. this.label11.Location = new System.Drawing.Point(821, 122);
  1461. this.label11.Name = "label11";
  1462. this.label11.Size = new System.Drawing.Size(19, 12);
  1463. this.label11.TabIndex = 177;
  1464. this.label11.Text = "11";
  1465. //
  1466. // label12
  1467. //
  1468. this.label12.AutoSize = true;
  1469. this.label12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1470. this.label12.Location = new System.Drawing.Point(743, 122);
  1471. this.label12.Name = "label12";
  1472. this.label12.Size = new System.Drawing.Size(19, 12);
  1473. this.label12.TabIndex = 176;
  1474. this.label12.Text = "10";
  1475. //
  1476. // label13
  1477. //
  1478. this.label13.AutoSize = true;
  1479. this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1480. this.label13.Location = new System.Drawing.Point(666, 122);
  1481. this.label13.Name = "label13";
  1482. this.label13.Size = new System.Drawing.Size(12, 12);
  1483. this.label13.TabIndex = 175;
  1484. this.label13.Text = "9";
  1485. //
  1486. // label6
  1487. //
  1488. this.label6.AutoSize = true;
  1489. this.label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1490. this.label6.Location = new System.Drawing.Point(588, 122);
  1491. this.label6.Name = "label6";
  1492. this.label6.Size = new System.Drawing.Size(12, 12);
  1493. this.label6.TabIndex = 174;
  1494. this.label6.Text = "8";
  1495. //
  1496. // label7
  1497. //
  1498. this.label7.AutoSize = true;
  1499. this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1500. this.label7.Location = new System.Drawing.Point(510, 122);
  1501. this.label7.Name = "label7";
  1502. this.label7.Size = new System.Drawing.Size(12, 12);
  1503. this.label7.TabIndex = 173;
  1504. this.label7.Text = "7";
  1505. //
  1506. // label8
  1507. //
  1508. this.label8.AutoSize = true;
  1509. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1510. this.label8.Location = new System.Drawing.Point(431, 122);
  1511. this.label8.Name = "label8";
  1512. this.label8.Size = new System.Drawing.Size(12, 12);
  1513. this.label8.TabIndex = 172;
  1514. this.label8.Text = "6";
  1515. //
  1516. // label9
  1517. //
  1518. this.label9.AutoSize = true;
  1519. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1520. this.label9.Location = new System.Drawing.Point(353, 122);
  1521. this.label9.Name = "label9";
  1522. this.label9.Size = new System.Drawing.Size(12, 12);
  1523. this.label9.TabIndex = 171;
  1524. this.label9.Text = "5";
  1525. //
  1526. // label5
  1527. //
  1528. this.label5.AutoSize = true;
  1529. this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1530. this.label5.Location = new System.Drawing.Point(275, 122);
  1531. this.label5.Name = "label5";
  1532. this.label5.Size = new System.Drawing.Size(12, 12);
  1533. this.label5.TabIndex = 170;
  1534. this.label5.Text = "4";
  1535. //
  1536. // label19
  1537. //
  1538. this.label19.AutoSize = true;
  1539. this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1540. this.label19.Location = new System.Drawing.Point(196, 122);
  1541. this.label19.Name = "label19";
  1542. this.label19.Size = new System.Drawing.Size(12, 12);
  1543. this.label19.TabIndex = 169;
  1544. this.label19.Text = "3";
  1545. //
  1546. // label20
  1547. //
  1548. this.label20.AutoSize = true;
  1549. this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1550. this.label20.Location = new System.Drawing.Point(118, 122);
  1551. this.label20.Name = "label20";
  1552. this.label20.Size = new System.Drawing.Size(12, 12);
  1553. this.label20.TabIndex = 168;
  1554. this.label20.Text = "2";
  1555. //
  1556. // label21
  1557. //
  1558. this.label21.AutoSize = true;
  1559. this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1560. this.label21.Location = new System.Drawing.Point(42, 122);
  1561. this.label21.Name = "label21";
  1562. this.label21.Size = new System.Drawing.Size(12, 12);
  1563. this.label21.TabIndex = 167;
  1564. this.label21.Text = "1";
  1565. //
  1566. // ultraLabel1
  1567. //
  1568. appearance2.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
  1569. appearance2.TextVAlignAsString = "Middle";
  1570. this.ultraLabel1.Appearance = appearance2;
  1571. this.ultraLabel1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1572. this.ultraLabel1.Location = new System.Drawing.Point(12, 6);
  1573. this.ultraLabel1.Name = "ultraLabel1";
  1574. this.ultraLabel1.Size = new System.Drawing.Size(96, 24);
  1575. this.ultraLabel1.TabIndex = 36;
  1576. this.ultraLabel1.Text = "钢卷库堆放现况";
  1577. //
  1578. // panel1
  1579. //
  1580. this.panel1.Controls.Add(this.label4);
  1581. this.panel1.Controls.Add(this.ultraComboEditor2);
  1582. this.panel1.Controls.Add(this.ultraComboEditor1);
  1583. this.panel1.Controls.Add(this.label3);
  1584. this.panel1.Controls.Add(this.label2);
  1585. this.panel1.Controls.Add(this.textBox1);
  1586. this.panel1.Controls.Add(this.label1);
  1587. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  1588. this.panel1.Location = new System.Drawing.Point(0, 0);
  1589. this.panel1.Name = "panel1";
  1590. this.panel1.Size = new System.Drawing.Size(654, 40);
  1591. this.panel1.TabIndex = 0;
  1592. //
  1593. // label4
  1594. //
  1595. this.label4.BackColor = System.Drawing.Color.LightBlue;
  1596. this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1597. this.label4.Cursor = System.Windows.Forms.Cursors.Hand;
  1598. this.label4.Location = new System.Drawing.Point(524, 10);
  1599. this.label4.Name = "label4";
  1600. this.label4.Size = new System.Drawing.Size(55, 21);
  1601. this.label4.TabIndex = 12;
  1602. this.label4.Text = "确定";
  1603. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1604. this.label4.Click += new System.EventHandler(this.label4_Click);
  1605. //
  1606. // ultraComboEditor2
  1607. //
  1608. appearance3.BorderColor = System.Drawing.Color.Black;
  1609. this.ultraComboEditor2.Appearance = appearance3;
  1610. this.ultraComboEditor2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1611. this.ultraComboEditor2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1612. this.ultraComboEditor2.Location = new System.Drawing.Point(258, 10);
  1613. this.ultraComboEditor2.Name = "ultraComboEditor2";
  1614. this.ultraComboEditor2.Size = new System.Drawing.Size(86, 21);
  1615. this.ultraComboEditor2.TabIndex = 11;
  1616. this.ultraComboEditor2.ValueChanged += new System.EventHandler(this.ultraComboEditor2_ValueChanged);
  1617. //
  1618. // ultraComboEditor1
  1619. //
  1620. appearance4.BorderColor = System.Drawing.Color.Black;
  1621. this.ultraComboEditor1.Appearance = appearance4;
  1622. this.ultraComboEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
  1623. this.ultraComboEditor1.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1624. this.ultraComboEditor1.Location = new System.Drawing.Point(80, 10);
  1625. this.ultraComboEditor1.Name = "ultraComboEditor1";
  1626. this.ultraComboEditor1.Size = new System.Drawing.Size(86, 21);
  1627. this.ultraComboEditor1.TabIndex = 10;
  1628. this.ultraComboEditor1.ValueChanged += new System.EventHandler(this.ultraComboEditor1_ValueChanged);
  1629. //
  1630. // label3
  1631. //
  1632. this.label3.BackColor = System.Drawing.Color.LightBlue;
  1633. this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1634. this.label3.Location = new System.Drawing.Point(196, 10);
  1635. this.label3.Name = "label3";
  1636. this.label3.Size = new System.Drawing.Size(61, 21);
  1637. this.label3.TabIndex = 9;
  1638. this.label3.Text = "垛位区分";
  1639. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1640. //
  1641. // label2
  1642. //
  1643. this.label2.BackColor = System.Drawing.Color.LightBlue;
  1644. this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1645. this.label2.Location = new System.Drawing.Point(18, 10);
  1646. this.label2.Name = "label2";
  1647. this.label2.Size = new System.Drawing.Size(61, 21);
  1648. this.label2.TabIndex = 7;
  1649. this.label2.Text = "库存区域";
  1650. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1651. //
  1652. // textBox1
  1653. //
  1654. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1655. this.textBox1.Location = new System.Drawing.Point(415, 10);
  1656. this.textBox1.Name = "textBox1";
  1657. this.textBox1.Size = new System.Drawing.Size(80, 21);
  1658. this.textBox1.TabIndex = 5;
  1659. //
  1660. // label1
  1661. //
  1662. this.label1.BackColor = System.Drawing.Color.LightBlue;
  1663. this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1664. this.label1.Location = new System.Drawing.Point(374, 10);
  1665. this.label1.Name = "label1";
  1666. this.label1.Size = new System.Drawing.Size(40, 21);
  1667. this.label1.TabIndex = 4;
  1668. this.label1.Text = "垛位";
  1669. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1670. //
  1671. // UIM010051
  1672. //
  1673. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1674. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1675. this.ClientSize = new System.Drawing.Size(654, 431);
  1676. this.Controls.Add(this.ultraPanel1);
  1677. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  1678. this.MaximumSize = new System.Drawing.Size(1024, 768);
  1679. this.MinimumSize = new System.Drawing.Size(316, 233);
  1680. this.Name = "UIM010051";
  1681. this.Text = "选择垛位";
  1682. this.Load += new System.EventHandler(this.UIM010051_Load);
  1683. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_153)).EndInit();
  1684. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_143)).EndInit();
  1685. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_133)).EndInit();
  1686. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_123)).EndInit();
  1687. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_113)).EndInit();
  1688. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_103)).EndInit();
  1689. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_93)).EndInit();
  1690. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_83)).EndInit();
  1691. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_73)).EndInit();
  1692. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_63)).EndInit();
  1693. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_53)).EndInit();
  1694. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_43)).EndInit();
  1695. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_33)).EndInit();
  1696. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_23)).EndInit();
  1697. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_13)).EndInit();
  1698. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_162)).EndInit();
  1699. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_152)).EndInit();
  1700. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_142)).EndInit();
  1701. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_132)).EndInit();
  1702. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_122)).EndInit();
  1703. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_112)).EndInit();
  1704. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_102)).EndInit();
  1705. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_92)).EndInit();
  1706. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_82)).EndInit();
  1707. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_72)).EndInit();
  1708. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_62)).EndInit();
  1709. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_52)).EndInit();
  1710. this.ultraPanel1.ClientArea.ResumeLayout(false);
  1711. this.ultraPanel1.ResumeLayout(false);
  1712. this.panel2.ResumeLayout(false);
  1713. this.panel3.ResumeLayout(false);
  1714. this.panel4.ResumeLayout(false);
  1715. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1716. this.panel6.ResumeLayout(false);
  1717. this.panel6.PerformLayout();
  1718. this.panel7.ResumeLayout(false);
  1719. this.panel5.ResumeLayout(false);
  1720. this.panel5.PerformLayout();
  1721. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_42)).EndInit();
  1722. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_32)).EndInit();
  1723. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_22)).EndInit();
  1724. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_12)).EndInit();
  1725. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_171)).EndInit();
  1726. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_161)).EndInit();
  1727. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_151)).EndInit();
  1728. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_141)).EndInit();
  1729. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_131)).EndInit();
  1730. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_121)).EndInit();
  1731. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_111)).EndInit();
  1732. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_101)).EndInit();
  1733. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_91)).EndInit();
  1734. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_81)).EndInit();
  1735. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_71)).EndInit();
  1736. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_61)).EndInit();
  1737. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_51)).EndInit();
  1738. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_41)).EndInit();
  1739. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_31)).EndInit();
  1740. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_21)).EndInit();
  1741. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_11)).EndInit();
  1742. this.panel1.ResumeLayout(false);
  1743. this.panel1.PerformLayout();
  1744. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
  1745. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  1746. this.ResumeLayout(false);
  1747. }
  1748. #endregion
  1749. private System.Windows.Forms.TextBox textBox_153;
  1750. private System.Windows.Forms.PictureBox pictureBox_153;
  1751. private System.Windows.Forms.TextBox textBox_143;
  1752. private System.Windows.Forms.PictureBox pictureBox_143;
  1753. private System.Windows.Forms.TextBox textBox_133;
  1754. private System.Windows.Forms.PictureBox pictureBox_133;
  1755. private System.Windows.Forms.TextBox textBox_123;
  1756. private System.Windows.Forms.PictureBox pictureBox_123;
  1757. private System.Windows.Forms.TextBox textBox_113;
  1758. private System.Windows.Forms.PictureBox pictureBox_113;
  1759. private System.Windows.Forms.TextBox textBox_103;
  1760. private System.Windows.Forms.PictureBox pictureBox_103;
  1761. private System.Windows.Forms.TextBox textBox_93;
  1762. private System.Windows.Forms.PictureBox pictureBox_93;
  1763. private System.Windows.Forms.TextBox textBox_83;
  1764. private System.Windows.Forms.PictureBox pictureBox_83;
  1765. private System.Windows.Forms.TextBox textBox_73;
  1766. private System.Windows.Forms.PictureBox pictureBox_73;
  1767. private System.Windows.Forms.TextBox textBox_63;
  1768. private System.Windows.Forms.PictureBox pictureBox_63;
  1769. private System.Windows.Forms.TextBox textBox_53;
  1770. private System.Windows.Forms.PictureBox pictureBox_53;
  1771. private System.Windows.Forms.TextBox textBox_43;
  1772. private System.Windows.Forms.PictureBox pictureBox_43;
  1773. private System.Windows.Forms.TextBox textBox_33;
  1774. private System.Windows.Forms.PictureBox pictureBox_33;
  1775. private System.Windows.Forms.TextBox textBox_23;
  1776. private System.Windows.Forms.PictureBox pictureBox_23;
  1777. private System.Windows.Forms.TextBox textBox_13;
  1778. private System.Windows.Forms.PictureBox pictureBox_13;
  1779. private System.Windows.Forms.TextBox textBox_162;
  1780. private System.Windows.Forms.PictureBox pictureBox_162;
  1781. private System.Windows.Forms.TextBox textBox_152;
  1782. private System.Windows.Forms.PictureBox pictureBox_152;
  1783. private System.Windows.Forms.TextBox textBox_142;
  1784. private System.Windows.Forms.PictureBox pictureBox_142;
  1785. private System.Windows.Forms.TextBox textBox_132;
  1786. private System.Windows.Forms.PictureBox pictureBox_132;
  1787. private System.Windows.Forms.TextBox textBox_122;
  1788. private System.Windows.Forms.PictureBox pictureBox_122;
  1789. private System.Windows.Forms.TextBox textBox_112;
  1790. private System.Windows.Forms.PictureBox pictureBox_112;
  1791. private System.Windows.Forms.TextBox textBox_102;
  1792. private System.Windows.Forms.PictureBox pictureBox_102;
  1793. private System.Windows.Forms.TextBox textBox_92;
  1794. private System.Windows.Forms.PictureBox pictureBox_92;
  1795. private System.Windows.Forms.TextBox textBox_82;
  1796. private System.Windows.Forms.PictureBox pictureBox_82;
  1797. private System.Windows.Forms.TextBox textBox_72;
  1798. private System.Windows.Forms.PictureBox pictureBox_72;
  1799. private System.Windows.Forms.TextBox textBox_62;
  1800. private System.Windows.Forms.PictureBox pictureBox_62;
  1801. private System.Windows.Forms.TextBox textBox_52;
  1802. private System.Windows.Forms.PictureBox pictureBox_52;
  1803. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  1804. private System.Windows.Forms.Panel panel2;
  1805. private System.Windows.Forms.Panel panel3;
  1806. private System.Windows.Forms.Panel panel4;
  1807. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  1808. private System.Windows.Forms.Panel panel6;
  1809. private System.Windows.Forms.Label label22;
  1810. private System.Windows.Forms.Panel panel7;
  1811. private System.Windows.Forms.Panel panel5;
  1812. private System.Windows.Forms.TextBox textBox_42;
  1813. private System.Windows.Forms.PictureBox pictureBox_42;
  1814. private System.Windows.Forms.TextBox textBox_32;
  1815. private System.Windows.Forms.PictureBox pictureBox_32;
  1816. private System.Windows.Forms.TextBox textBox_22;
  1817. private System.Windows.Forms.PictureBox pictureBox_22;
  1818. private System.Windows.Forms.TextBox textBox_12;
  1819. private System.Windows.Forms.PictureBox pictureBox_12;
  1820. private System.Windows.Forms.TextBox textBox_171;
  1821. private System.Windows.Forms.PictureBox pictureBox_171;
  1822. private System.Windows.Forms.TextBox textBox_161;
  1823. private System.Windows.Forms.PictureBox pictureBox_161;
  1824. private System.Windows.Forms.TextBox textBox_151;
  1825. private System.Windows.Forms.PictureBox pictureBox_151;
  1826. private System.Windows.Forms.TextBox textBox_141;
  1827. private System.Windows.Forms.PictureBox pictureBox_141;
  1828. private System.Windows.Forms.TextBox textBox_131;
  1829. private System.Windows.Forms.PictureBox pictureBox_131;
  1830. private System.Windows.Forms.TextBox textBox_121;
  1831. private System.Windows.Forms.PictureBox pictureBox_121;
  1832. private System.Windows.Forms.TextBox textBox_111;
  1833. private System.Windows.Forms.PictureBox pictureBox_111;
  1834. private System.Windows.Forms.TextBox textBox_101;
  1835. private System.Windows.Forms.PictureBox pictureBox_101;
  1836. private System.Windows.Forms.TextBox textBox_91;
  1837. private System.Windows.Forms.PictureBox pictureBox_91;
  1838. private System.Windows.Forms.TextBox textBox_81;
  1839. private System.Windows.Forms.PictureBox pictureBox_81;
  1840. private System.Windows.Forms.TextBox textBox_71;
  1841. private System.Windows.Forms.PictureBox pictureBox_71;
  1842. private System.Windows.Forms.TextBox textBox_61;
  1843. private System.Windows.Forms.PictureBox pictureBox_61;
  1844. private System.Windows.Forms.TextBox textBox_51;
  1845. private System.Windows.Forms.PictureBox pictureBox_51;
  1846. private System.Windows.Forms.TextBox textBox_41;
  1847. private System.Windows.Forms.PictureBox pictureBox_41;
  1848. private System.Windows.Forms.TextBox textBox_31;
  1849. private System.Windows.Forms.PictureBox pictureBox_31;
  1850. private System.Windows.Forms.TextBox textBox_21;
  1851. private System.Windows.Forms.PictureBox pictureBox_21;
  1852. private System.Windows.Forms.TextBox textBox_11;
  1853. private System.Windows.Forms.PictureBox pictureBox_11;
  1854. private System.Windows.Forms.Label label18;
  1855. private System.Windows.Forms.Label label14;
  1856. private System.Windows.Forms.Label label15;
  1857. private System.Windows.Forms.Label label16;
  1858. private System.Windows.Forms.Label label17;
  1859. private System.Windows.Forms.Label label10;
  1860. private System.Windows.Forms.Label label11;
  1861. private System.Windows.Forms.Label label12;
  1862. private System.Windows.Forms.Label label13;
  1863. private System.Windows.Forms.Label label6;
  1864. private System.Windows.Forms.Label label7;
  1865. private System.Windows.Forms.Label label8;
  1866. private System.Windows.Forms.Label label9;
  1867. private System.Windows.Forms.Label label5;
  1868. private System.Windows.Forms.Label label19;
  1869. private System.Windows.Forms.Label label20;
  1870. private System.Windows.Forms.Label label21;
  1871. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  1872. private System.Windows.Forms.Panel panel1;
  1873. private System.Windows.Forms.Label label4;
  1874. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
  1875. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  1876. private System.Windows.Forms.Label label3;
  1877. private System.Windows.Forms.Label label2;
  1878. private System.Windows.Forms.TextBox textBox1;
  1879. private System.Windows.Forms.Label label1;
  1880. }
  1881. }