Resources.Designer.cs 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace OTSMeasureApp.Properties {
  11. using System;
  12. /// <summary>
  13. /// 一个强类型的资源类,用于查找本地化的字符串等。
  14. /// </summary>
  15. // 此类是由 StronglyTypedResourceBuilder
  16. // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
  17. // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
  18. // (以 /str 作为命令选项),或重新生成 VS 项目。
  19. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
  20. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  21. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  22. public class Resources {
  23. private static global::System.Resources.ResourceManager resourceMan;
  24. private static global::System.Globalization.CultureInfo resourceCulture;
  25. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  26. internal Resources() {
  27. }
  28. /// <summary>
  29. /// 返回此类使用的缓存的 ResourceManager 实例。
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. public static global::System.Resources.ResourceManager ResourceManager {
  33. get {
  34. if (object.ReferenceEquals(resourceMan, null)) {
  35. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("OTSMeasureApp.Properties.Resources", typeof(Resources).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// 重写当前线程的 CurrentUICulture 属性,对
  43. /// 使用此强类型资源类的所有资源查找执行重写。
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. public static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  56. /// </summary>
  57. public static System.Drawing.Bitmap Add_Sample16 {
  58. get {
  59. object obj = ResourceManager.GetObject("Add Sample16", resourceCulture);
  60. return ((System.Drawing.Bitmap)(obj));
  61. }
  62. }
  63. /// <summary>
  64. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  65. /// </summary>
  66. public static System.Drawing.Bitmap Add_Sample161 {
  67. get {
  68. object obj = ResourceManager.GetObject("Add Sample161", resourceCulture);
  69. return ((System.Drawing.Bitmap)(obj));
  70. }
  71. }
  72. /// <summary>
  73. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  74. /// </summary>
  75. public static System.Drawing.Bitmap Add_Sample32 {
  76. get {
  77. object obj = ResourceManager.GetObject("Add Sample32", resourceCulture);
  78. return ((System.Drawing.Bitmap)(obj));
  79. }
  80. }
  81. /// <summary>
  82. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  83. /// </summary>
  84. public static System.Drawing.Bitmap Add_Sample321 {
  85. get {
  86. object obj = ResourceManager.GetObject("Add Sample321", resourceCulture);
  87. return ((System.Drawing.Bitmap)(obj));
  88. }
  89. }
  90. /// <summary>
  91. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  92. /// </summary>
  93. public static System.Drawing.Bitmap addons32 {
  94. get {
  95. object obj = ResourceManager.GetObject("addons32", resourceCulture);
  96. return ((System.Drawing.Bitmap)(obj));
  97. }
  98. }
  99. /// <summary>
  100. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  101. /// </summary>
  102. public static System.Drawing.Bitmap AutoBeamOff_off {
  103. get {
  104. object obj = ResourceManager.GetObject("AutoBeamOff_off", resourceCulture);
  105. return ((System.Drawing.Bitmap)(obj));
  106. }
  107. }
  108. /// <summary>
  109. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  110. /// </summary>
  111. public static System.Drawing.Bitmap AutoBeamOff_on {
  112. get {
  113. object obj = ResourceManager.GetObject("AutoBeamOff_on", resourceCulture);
  114. return ((System.Drawing.Bitmap)(obj));
  115. }
  116. }
  117. /// <summary>
  118. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  119. /// </summary>
  120. public static System.Drawing.Bitmap borderbottom16 {
  121. get {
  122. object obj = ResourceManager.GetObject("borderbottom16", resourceCulture);
  123. return ((System.Drawing.Bitmap)(obj));
  124. }
  125. }
  126. /// <summary>
  127. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  128. /// </summary>
  129. public static System.Drawing.Bitmap Circle16 {
  130. get {
  131. object obj = ResourceManager.GetObject("Circle16", resourceCulture);
  132. return ((System.Drawing.Bitmap)(obj));
  133. }
  134. }
  135. /// <summary>
  136. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  137. /// </summary>
  138. public static System.Drawing.Bitmap Circle161 {
  139. get {
  140. object obj = ResourceManager.GetObject("Circle161", resourceCulture);
  141. return ((System.Drawing.Bitmap)(obj));
  142. }
  143. }
  144. /// <summary>
  145. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  146. /// </summary>
  147. public static System.Drawing.Bitmap Circle32 {
  148. get {
  149. object obj = ResourceManager.GetObject("Circle32", resourceCulture);
  150. return ((System.Drawing.Bitmap)(obj));
  151. }
  152. }
  153. /// <summary>
  154. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  155. /// </summary>
  156. public static System.Drawing.Bitmap Circle321 {
  157. get {
  158. object obj = ResourceManager.GetObject("Circle321", resourceCulture);
  159. return ((System.Drawing.Bitmap)(obj));
  160. }
  161. }
  162. /// <summary>
  163. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  164. /// </summary>
  165. public static System.Drawing.Bitmap Cleanliness {
  166. get {
  167. object obj = ResourceManager.GetObject("Cleanliness", resourceCulture);
  168. return ((System.Drawing.Bitmap)(obj));
  169. }
  170. }
  171. /// <summary>
  172. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  173. /// </summary>
  174. public static System.Drawing.Bitmap close32 {
  175. get {
  176. object obj = ResourceManager.GetObject("close32", resourceCulture);
  177. return ((System.Drawing.Bitmap)(obj));
  178. }
  179. }
  180. /// <summary>
  181. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  182. /// </summary>
  183. public static System.Drawing.Bitmap close321 {
  184. get {
  185. object obj = ResourceManager.GetObject("close321", resourceCulture);
  186. return ((System.Drawing.Bitmap)(obj));
  187. }
  188. }
  189. /// <summary>
  190. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  191. /// </summary>
  192. public static System.Drawing.Bitmap close322 {
  193. get {
  194. object obj = ResourceManager.GetObject("close322", resourceCulture);
  195. return ((System.Drawing.Bitmap)(obj));
  196. }
  197. }
  198. /// <summary>
  199. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  200. /// </summary>
  201. public static System.Drawing.Bitmap ConnnectHardware {
  202. get {
  203. object obj = ResourceManager.GetObject("ConnnectHardware", resourceCulture);
  204. return ((System.Drawing.Bitmap)(obj));
  205. }
  206. }
  207. /// <summary>
  208. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  209. /// </summary>
  210. public static System.Drawing.Bitmap delete16 {
  211. get {
  212. object obj = ResourceManager.GetObject("delete16", resourceCulture);
  213. return ((System.Drawing.Bitmap)(obj));
  214. }
  215. }
  216. /// <summary>
  217. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  218. /// </summary>
  219. public static System.Drawing.Bitmap delete161 {
  220. get {
  221. object obj = ResourceManager.GetObject("delete161", resourceCulture);
  222. return ((System.Drawing.Bitmap)(obj));
  223. }
  224. }
  225. /// <summary>
  226. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  227. /// </summary>
  228. public static System.Drawing.Bitmap delete32 {
  229. get {
  230. object obj = ResourceManager.GetObject("delete32", resourceCulture);
  231. return ((System.Drawing.Bitmap)(obj));
  232. }
  233. }
  234. /// <summary>
  235. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  236. /// </summary>
  237. public static System.Drawing.Bitmap delete321 {
  238. get {
  239. object obj = ResourceManager.GetObject("delete321", resourceCulture);
  240. return ((System.Drawing.Bitmap)(obj));
  241. }
  242. }
  243. /// <summary>
  244. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  245. /// </summary>
  246. public static System.Drawing.Bitmap deletefile16 {
  247. get {
  248. object obj = ResourceManager.GetObject("deletefile16", resourceCulture);
  249. return ((System.Drawing.Bitmap)(obj));
  250. }
  251. }
  252. /// <summary>
  253. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  254. /// </summary>
  255. public static System.Drawing.Bitmap deletefile161 {
  256. get {
  257. object obj = ResourceManager.GetObject("deletefile161", resourceCulture);
  258. return ((System.Drawing.Bitmap)(obj));
  259. }
  260. }
  261. /// <summary>
  262. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  263. /// </summary>
  264. public static System.Drawing.Bitmap deletefile32 {
  265. get {
  266. object obj = ResourceManager.GetObject("deletefile32", resourceCulture);
  267. return ((System.Drawing.Bitmap)(obj));
  268. }
  269. }
  270. /// <summary>
  271. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  272. /// </summary>
  273. public static System.Drawing.Bitmap deletefile321 {
  274. get {
  275. object obj = ResourceManager.GetObject("deletefile321", resourceCulture);
  276. return ((System.Drawing.Bitmap)(obj));
  277. }
  278. }
  279. /// <summary>
  280. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  281. /// </summary>
  282. public static System.Drawing.Bitmap DeleteSampleImage {
  283. get {
  284. object obj = ResourceManager.GetObject("DeleteSampleImage", resourceCulture);
  285. return ((System.Drawing.Bitmap)(obj));
  286. }
  287. }
  288. /// <summary>
  289. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  290. /// </summary>
  291. public static System.Drawing.Bitmap DelSemData_16 {
  292. get {
  293. object obj = ResourceManager.GetObject("DelSemData_16", resourceCulture);
  294. return ((System.Drawing.Bitmap)(obj));
  295. }
  296. }
  297. /// <summary>
  298. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  299. /// </summary>
  300. public static System.Drawing.Bitmap DelSemData_32 {
  301. get {
  302. object obj = ResourceManager.GetObject("DelSemData_32", resourceCulture);
  303. return ((System.Drawing.Bitmap)(obj));
  304. }
  305. }
  306. /// <summary>
  307. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  308. /// </summary>
  309. public static System.Drawing.Bitmap DisconnnectHardware {
  310. get {
  311. object obj = ResourceManager.GetObject("DisconnnectHardware", resourceCulture);
  312. return ((System.Drawing.Bitmap)(obj));
  313. }
  314. }
  315. /// <summary>
  316. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  317. /// </summary>
  318. public static System.Drawing.Bitmap exit16 {
  319. get {
  320. object obj = ResourceManager.GetObject("exit16", resourceCulture);
  321. return ((System.Drawing.Bitmap)(obj));
  322. }
  323. }
  324. /// <summary>
  325. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  326. /// </summary>
  327. public static System.Drawing.Bitmap GetSampleImage {
  328. get {
  329. object obj = ResourceManager.GetObject("GetSampleImage", resourceCulture);
  330. return ((System.Drawing.Bitmap)(obj));
  331. }
  332. }
  333. /// <summary>
  334. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  335. /// </summary>
  336. public static System.Drawing.Bitmap GetSemData_16 {
  337. get {
  338. object obj = ResourceManager.GetObject("GetSemData_16", resourceCulture);
  339. return ((System.Drawing.Bitmap)(obj));
  340. }
  341. }
  342. /// <summary>
  343. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  344. /// </summary>
  345. public static System.Drawing.Bitmap GetSemData_32 {
  346. get {
  347. object obj = ResourceManager.GetObject("GetSemData_32", resourceCulture);
  348. return ((System.Drawing.Bitmap)(obj));
  349. }
  350. }
  351. /// <summary>
  352. /// 查找类似 通用参数组 的本地化字符串。
  353. /// </summary>
  354. public static string ID1000 {
  355. get {
  356. return ResourceManager.GetString("ID1000", resourceCulture);
  357. }
  358. }
  359. /// <summary>
  360. /// 查找类似 样品名 的本地化字符串。
  361. /// </summary>
  362. public static string ID1001 {
  363. get {
  364. return ResourceManager.GetString("ID1001", resourceCulture);
  365. }
  366. }
  367. /// <summary>
  368. /// 查找类似 执行开关 的本地化字符串。
  369. /// </summary>
  370. public static string ID1002 {
  371. get {
  372. return ResourceManager.GetString("ID1002", resourceCulture);
  373. }
  374. }
  375. /// <summary>
  376. /// 查找类似 样品测量参数文件名 的本地化字符串。
  377. /// </summary>
  378. public static string ID1003 {
  379. get {
  380. return ResourceManager.GetString("ID1003", resourceCulture);
  381. }
  382. }
  383. /// <summary>
  384. /// 查找类似 颗粒分析标准库名 的本地化字符串。
  385. /// </summary>
  386. public static string ID1004 {
  387. get {
  388. return ResourceManager.GetString("ID1004", resourceCulture);
  389. }
  390. }
  391. /// <summary>
  392. /// 查找类似 颗粒分析标准库名 的本地化字符串。
  393. /// </summary>
  394. public static string ID1005 {
  395. get {
  396. return ResourceManager.GetString("ID1005", resourceCulture);
  397. }
  398. }
  399. /// <summary>
  400. /// 查找类似 的本地化字符串。
  401. /// </summary>
  402. public static string ID1006 {
  403. get {
  404. return ResourceManager.GetString("ID1006", resourceCulture);
  405. }
  406. }
  407. /// <summary>
  408. /// 查找类似 的本地化字符串。
  409. /// </summary>
  410. public static string ID1007 {
  411. get {
  412. return ResourceManager.GetString("ID1007", resourceCulture);
  413. }
  414. }
  415. /// <summary>
  416. /// 查找类似 的本地化字符串。
  417. /// </summary>
  418. public static string ID1008 {
  419. get {
  420. return ResourceManager.GetString("ID1008", resourceCulture);
  421. }
  422. }
  423. /// <summary>
  424. /// 查找类似 的本地化字符串。
  425. /// </summary>
  426. public static string ID1009 {
  427. get {
  428. return ResourceManager.GetString("ID1009", resourceCulture);
  429. }
  430. }
  431. /// <summary>
  432. /// 查找类似 图像扫描参数组 的本地化字符串。
  433. /// </summary>
  434. public static string ID1010 {
  435. get {
  436. return ResourceManager.GetString("ID1010", resourceCulture);
  437. }
  438. }
  439. /// <summary>
  440. /// 查找类似 开始模式 的本地化字符串。
  441. /// </summary>
  442. public static string ID1011 {
  443. get {
  444. return ResourceManager.GetString("ID1011", resourceCulture);
  445. }
  446. }
  447. /// <summary>
  448. /// 查找类似 停止模式 的本地化字符串。
  449. /// </summary>
  450. public static string ID1012 {
  451. get {
  452. return ResourceManager.GetString("ID1012", resourceCulture);
  453. }
  454. }
  455. /// <summary>
  456. /// 查找类似 颗粒度 的本地化字符串。
  457. /// </summary>
  458. public static string ID1013 {
  459. get {
  460. return ResourceManager.GetString("ID1013", resourceCulture);
  461. }
  462. }
  463. /// <summary>
  464. /// 查找类似 填充域 的本地化字符串。
  465. /// </summary>
  466. public static string ID1014 {
  467. get {
  468. return ResourceManager.GetString("ID1014", resourceCulture);
  469. }
  470. }
  471. /// <summary>
  472. /// 查找类似 时间 的本地化字符串。
  473. /// </summary>
  474. public static string ID1015 {
  475. get {
  476. return ResourceManager.GetString("ID1015", resourceCulture);
  477. }
  478. }
  479. /// <summary>
  480. /// 查找类似 扫描精度(速度) 的本地化字符串。
  481. /// </summary>
  482. public static string ID1016 {
  483. get {
  484. return ResourceManager.GetString("ID1016", resourceCulture);
  485. }
  486. }
  487. /// <summary>
  488. /// 查找类似 扫描图尺寸 的本地化字符串。
  489. /// </summary>
  490. public static string ID1017 {
  491. get {
  492. return ResourceManager.GetString("ID1017", resourceCulture);
  493. }
  494. }
  495. /// <summary>
  496. /// 查找类似 的本地化字符串。
  497. /// </summary>
  498. public static string ID1018 {
  499. get {
  500. return ResourceManager.GetString("ID1018", resourceCulture);
  501. }
  502. }
  503. /// <summary>
  504. /// 查找类似 的本地化字符串。
  505. /// </summary>
  506. public static string ID1019 {
  507. get {
  508. return ResourceManager.GetString("ID1019", resourceCulture);
  509. }
  510. }
  511. /// <summary>
  512. /// 查找类似 的本地化字符串。
  513. /// </summary>
  514. public static string ID1020 {
  515. get {
  516. return ResourceManager.GetString("ID1020", resourceCulture);
  517. }
  518. }
  519. /// <summary>
  520. /// 查找类似 的本地化字符串。
  521. /// </summary>
  522. public static string ID1021 {
  523. get {
  524. return ResourceManager.GetString("ID1021", resourceCulture);
  525. }
  526. }
  527. /// <summary>
  528. /// 查找类似 的本地化字符串。
  529. /// </summary>
  530. public static string ID1022 {
  531. get {
  532. return ResourceManager.GetString("ID1022", resourceCulture);
  533. }
  534. }
  535. /// <summary>
  536. /// 查找类似 的本地化字符串。
  537. /// </summary>
  538. public static string ID1023 {
  539. get {
  540. return ResourceManager.GetString("ID1023", resourceCulture);
  541. }
  542. }
  543. /// <summary>
  544. /// 查找类似 的本地化字符串。
  545. /// </summary>
  546. public static string ID1024 {
  547. get {
  548. return ResourceManager.GetString("ID1024", resourceCulture);
  549. }
  550. }
  551. /// <summary>
  552. /// 查找类似 图像处理参数组 的本地化字符串。
  553. /// </summary>
  554. public static string ID1025 {
  555. get {
  556. return ResourceManager.GetString("ID1025", resourceCulture);
  557. }
  558. }
  559. /// <summary>
  560. /// 查找类似 颗粒面积最大范围 的本地化字符串。
  561. /// </summary>
  562. public static string ID1026 {
  563. get {
  564. return ResourceManager.GetString("ID1026", resourceCulture);
  565. }
  566. }
  567. /// <summary>
  568. /// 查找类似 颗粒面积最小范围 的本地化字符串。
  569. /// </summary>
  570. public static string ID1027 {
  571. get {
  572. return ResourceManager.GetString("ID1027", resourceCulture);
  573. }
  574. }
  575. /// <summary>
  576. /// 查找类似 背景灰度最大范围 的本地化字符串。
  577. /// </summary>
  578. public static string ID1028 {
  579. get {
  580. return ResourceManager.GetString("ID1028", resourceCulture);
  581. }
  582. }
  583. /// <summary>
  584. /// 查找类似 背景灰度最小范围 的本地化字符串。
  585. /// </summary>
  586. public static string ID1029 {
  587. get {
  588. return ResourceManager.GetString("ID1029", resourceCulture);
  589. }
  590. }
  591. /// <summary>
  592. /// 查找类似 颗粒灰度最大范围 的本地化字符串。
  593. /// </summary>
  594. public static string ID1030 {
  595. get {
  596. return ResourceManager.GetString("ID1030", resourceCulture);
  597. }
  598. }
  599. /// <summary>
  600. /// 查找类似 颗粒灰度最小范围 的本地化字符串。
  601. /// </summary>
  602. public static string ID1031 {
  603. get {
  604. return ResourceManager.GetString("ID1031", resourceCulture);
  605. }
  606. }
  607. /// <summary>
  608. /// 查找类似 的本地化字符串。
  609. /// </summary>
  610. public static string ID1032 {
  611. get {
  612. return ResourceManager.GetString("ID1032", resourceCulture);
  613. }
  614. }
  615. /// <summary>
  616. /// 查找类似 的本地化字符串。
  617. /// </summary>
  618. public static string ID1033 {
  619. get {
  620. return ResourceManager.GetString("ID1033", resourceCulture);
  621. }
  622. }
  623. /// <summary>
  624. /// 查找类似 的本地化字符串。
  625. /// </summary>
  626. public static string ID1034 {
  627. get {
  628. return ResourceManager.GetString("ID1034", resourceCulture);
  629. }
  630. }
  631. /// <summary>
  632. /// 查找类似 的本地化字符串。
  633. /// </summary>
  634. public static string ID1035 {
  635. get {
  636. return ResourceManager.GetString("ID1035", resourceCulture);
  637. }
  638. }
  639. /// <summary>
  640. /// 查找类似 的本地化字符串。
  641. /// </summary>
  642. public static string ID1036 {
  643. get {
  644. return ResourceManager.GetString("ID1036", resourceCulture);
  645. }
  646. }
  647. /// <summary>
  648. /// 查找类似 的本地化字符串。
  649. /// </summary>
  650. public static string ID1037 {
  651. get {
  652. return ResourceManager.GetString("ID1037", resourceCulture);
  653. }
  654. }
  655. /// <summary>
  656. /// 查找类似 的本地化字符串。
  657. /// </summary>
  658. public static string ID1038 {
  659. get {
  660. return ResourceManager.GetString("ID1038", resourceCulture);
  661. }
  662. }
  663. /// <summary>
  664. /// 查找类似 的本地化字符串。
  665. /// </summary>
  666. public static string ID1039 {
  667. get {
  668. return ResourceManager.GetString("ID1039", resourceCulture);
  669. }
  670. }
  671. /// <summary>
  672. /// 查找类似 XRay参数组 的本地化字符串。
  673. /// </summary>
  674. public static string ID1040 {
  675. get {
  676. return ResourceManager.GetString("ID1040", resourceCulture);
  677. }
  678. }
  679. /// <summary>
  680. /// 查找类似 搜索XRay精度 的本地化字符串。
  681. /// </summary>
  682. public static string ID1041 {
  683. get {
  684. return ResourceManager.GetString("ID1041", resourceCulture);
  685. }
  686. }
  687. /// <summary>
  688. /// 查找类似 搜索XRay最低计数 的本地化字符串。
  689. /// </summary>
  690. public static string ID1042 {
  691. get {
  692. return ResourceManager.GetString("ID1042", resourceCulture);
  693. }
  694. }
  695. /// <summary>
  696. /// 查找类似 XRay精度 的本地化字符串。
  697. /// </summary>
  698. public static string ID1043 {
  699. get {
  700. return ResourceManager.GetString("ID1043", resourceCulture);
  701. }
  702. }
  703. /// <summary>
  704. /// 查找类似 XRay扫描方式 的本地化字符串。
  705. /// </summary>
  706. public static string ID1044 {
  707. get {
  708. return ResourceManager.GetString("ID1044", resourceCulture);
  709. }
  710. }
  711. /// <summary>
  712. /// 查找类似 XRay计数期望值 的本地化字符串。
  713. /// </summary>
  714. public static string ID1045 {
  715. get {
  716. return ResourceManager.GetString("ID1045", resourceCulture);
  717. }
  718. }
  719. /// <summary>
  720. /// 查找类似 的本地化字符串。
  721. /// </summary>
  722. public static string ID1046 {
  723. get {
  724. return ResourceManager.GetString("ID1046", resourceCulture);
  725. }
  726. }
  727. /// <summary>
  728. /// 查找类似 的本地化字符串。
  729. /// </summary>
  730. public static string ID1047 {
  731. get {
  732. return ResourceManager.GetString("ID1047", resourceCulture);
  733. }
  734. }
  735. /// <summary>
  736. /// 查找类似 的本地化字符串。
  737. /// </summary>
  738. public static string ID1048 {
  739. get {
  740. return ResourceManager.GetString("ID1048", resourceCulture);
  741. }
  742. }
  743. /// <summary>
  744. /// 查找类似 的本地化字符串。
  745. /// </summary>
  746. public static string ID1049 {
  747. get {
  748. return ResourceManager.GetString("ID1049", resourceCulture);
  749. }
  750. }
  751. /// <summary>
  752. /// 查找类似 SEM工作参数组 的本地化字符串。
  753. /// </summary>
  754. public static string ID1050 {
  755. get {
  756. return ResourceManager.GetString("ID1050", resourceCulture);
  757. }
  758. }
  759. /// <summary>
  760. /// 查找类似 放大倍数 的本地化字符串。
  761. /// </summary>
  762. public static string ID1051 {
  763. get {
  764. return ResourceManager.GetString("ID1051", resourceCulture);
  765. }
  766. }
  767. /// <summary>
  768. /// 查找类似 测量精度 的本地化字符串。
  769. /// </summary>
  770. public static string ID1052 {
  771. get {
  772. return ResourceManager.GetString("ID1052", resourceCulture);
  773. }
  774. }
  775. /// <summary>
  776. /// 查找类似 工作距离 的本地化字符串。
  777. /// </summary>
  778. public static string ID1053 {
  779. get {
  780. return ResourceManager.GetString("ID1053", resourceCulture);
  781. }
  782. }
  783. /// <summary>
  784. /// 查找类似 覆盖测量区域帧图数 的本地化字符串。
  785. /// </summary>
  786. public static string ID1054 {
  787. get {
  788. return ResourceManager.GetString("ID1054", resourceCulture);
  789. }
  790. }
  791. /// <summary>
  792. /// 查找类似 的本地化字符串。
  793. /// </summary>
  794. public static string ID1055 {
  795. get {
  796. return ResourceManager.GetString("ID1055", resourceCulture);
  797. }
  798. }
  799. /// <summary>
  800. /// 查找类似 的本地化字符串。
  801. /// </summary>
  802. public static string ID1056 {
  803. get {
  804. return ResourceManager.GetString("ID1056", resourceCulture);
  805. }
  806. }
  807. /// <summary>
  808. /// 查找类似 的本地化字符串。
  809. /// </summary>
  810. public static string ID1057 {
  811. get {
  812. return ResourceManager.GetString("ID1057", resourceCulture);
  813. }
  814. }
  815. /// <summary>
  816. /// 查找类似 的本地化字符串。
  817. /// </summary>
  818. public static string ID1058 {
  819. get {
  820. return ResourceManager.GetString("ID1058", resourceCulture);
  821. }
  822. }
  823. /// <summary>
  824. /// 查找类似 的本地化字符串。
  825. /// </summary>
  826. public static string ID1059 {
  827. get {
  828. return ResourceManager.GetString("ID1059", resourceCulture);
  829. }
  830. }
  831. /// <summary>
  832. /// 查找类似 测量状态组 的本地化字符串。
  833. /// </summary>
  834. public static string ID1060 {
  835. get {
  836. return ResourceManager.GetString("ID1060", resourceCulture);
  837. }
  838. }
  839. /// <summary>
  840. /// 查找类似 测量状态 的本地化字符串。
  841. /// </summary>
  842. public static string ID1061 {
  843. get {
  844. return ResourceManager.GetString("ID1061", resourceCulture);
  845. }
  846. }
  847. /// <summary>
  848. /// 查找类似 开始时间 的本地化字符串。
  849. /// </summary>
  850. public static string ID1062 {
  851. get {
  852. return ResourceManager.GetString("ID1062", resourceCulture);
  853. }
  854. }
  855. /// <summary>
  856. /// 查找类似 已测量时间 的本地化字符串。
  857. /// </summary>
  858. public static string ID1063 {
  859. get {
  860. return ResourceManager.GetString("ID1063", resourceCulture);
  861. }
  862. }
  863. /// <summary>
  864. /// 查找类似 完成时间 的本地化字符串。
  865. /// </summary>
  866. public static string ID1064 {
  867. get {
  868. return ResourceManager.GetString("ID1064", resourceCulture);
  869. }
  870. }
  871. /// <summary>
  872. /// 查找类似 完成幁图数 的本地化字符串。
  873. /// </summary>
  874. public static string ID1065 {
  875. get {
  876. return ResourceManager.GetString("ID1065", resourceCulture);
  877. }
  878. }
  879. /// <summary>
  880. /// 查找类似 的本地化字符串。
  881. /// </summary>
  882. public static string ID1066 {
  883. get {
  884. return ResourceManager.GetString("ID1066", resourceCulture);
  885. }
  886. }
  887. /// <summary>
  888. /// 查找类似 的本地化字符串。
  889. /// </summary>
  890. public static string ID1067 {
  891. get {
  892. return ResourceManager.GetString("ID1067", resourceCulture);
  893. }
  894. }
  895. /// <summary>
  896. /// 查找类似 的本地化字符串。
  897. /// </summary>
  898. public static string ID1068 {
  899. get {
  900. return ResourceManager.GetString("ID1068", resourceCulture);
  901. }
  902. }
  903. /// <summary>
  904. /// 查找类似 的本地化字符串。
  905. /// </summary>
  906. public static string ID1069 {
  907. get {
  908. return ResourceManager.GetString("ID1069", resourceCulture);
  909. }
  910. }
  911. /// <summary>
  912. /// 查找类似 测量结果组 的本地化字符串。
  913. /// </summary>
  914. public static string ID1070 {
  915. get {
  916. return ResourceManager.GetString("ID1070", resourceCulture);
  917. }
  918. }
  919. /// <summary>
  920. /// 查找类似 比率 的本地化字符串。
  921. /// </summary>
  922. public static string ID1071 {
  923. get {
  924. return ResourceManager.GetString("ID1071", resourceCulture);
  925. }
  926. }
  927. /// <summary>
  928. /// 查找类似 测量面积 的本地化字符串。
  929. /// </summary>
  930. public static string ID1072 {
  931. get {
  932. return ResourceManager.GetString("ID1072", resourceCulture);
  933. }
  934. }
  935. /// <summary>
  936. /// 查找类似 测量的颗粒数 的本地化字符串。
  937. /// </summary>
  938. public static string ID1073 {
  939. get {
  940. return ResourceManager.GetString("ID1073", resourceCulture);
  941. }
  942. }
  943. /// <summary>
  944. /// 查找类似 测量面积 的本地化字符串。
  945. /// </summary>
  946. public static string ID1074 {
  947. get {
  948. return ResourceManager.GetString("ID1074", resourceCulture);
  949. }
  950. }
  951. /// <summary>
  952. /// 查找类似 的本地化字符串。
  953. /// </summary>
  954. public static string ID1075 {
  955. get {
  956. return ResourceManager.GetString("ID1075", resourceCulture);
  957. }
  958. }
  959. /// <summary>
  960. /// 查找类似 的本地化字符串。
  961. /// </summary>
  962. public static string ID1076 {
  963. get {
  964. return ResourceManager.GetString("ID1076", resourceCulture);
  965. }
  966. }
  967. /// <summary>
  968. /// 查找类似 的本地化字符串。
  969. /// </summary>
  970. public static string ID1077 {
  971. get {
  972. return ResourceManager.GetString("ID1077", resourceCulture);
  973. }
  974. }
  975. /// <summary>
  976. /// 查找类似 的本地化字符串。
  977. /// </summary>
  978. public static string ID1078 {
  979. get {
  980. return ResourceManager.GetString("ID1078", resourceCulture);
  981. }
  982. }
  983. /// <summary>
  984. /// 查找类似 的本地化字符串。
  985. /// </summary>
  986. public static string ID1079 {
  987. get {
  988. return ResourceManager.GetString("ID1079", resourceCulture);
  989. }
  990. }
  991. /// <summary>
  992. /// 查找类似 的本地化字符串。
  993. /// </summary>
  994. public static string ID1080 {
  995. get {
  996. return ResourceManager.GetString("ID1080", resourceCulture);
  997. }
  998. }
  999. /// <summary>
  1000. /// 查找类似 的本地化字符串。
  1001. /// </summary>
  1002. public static string ID1081 {
  1003. get {
  1004. return ResourceManager.GetString("ID1081", resourceCulture);
  1005. }
  1006. }
  1007. /// <summary>
  1008. /// 查找类似 的本地化字符串。
  1009. /// </summary>
  1010. public static string ID1082 {
  1011. get {
  1012. return ResourceManager.GetString("ID1082", resourceCulture);
  1013. }
  1014. }
  1015. /// <summary>
  1016. /// 查找类似 的本地化字符串。
  1017. /// </summary>
  1018. public static string ID1083 {
  1019. get {
  1020. return ResourceManager.GetString("ID1083", resourceCulture);
  1021. }
  1022. }
  1023. /// <summary>
  1024. /// 查找类似 的本地化字符串。
  1025. /// </summary>
  1026. public static string ID1084 {
  1027. get {
  1028. return ResourceManager.GetString("ID1084", resourceCulture);
  1029. }
  1030. }
  1031. /// <summary>
  1032. /// 查找类似 的本地化字符串。
  1033. /// </summary>
  1034. public static string ID1085 {
  1035. get {
  1036. return ResourceManager.GetString("ID1085", resourceCulture);
  1037. }
  1038. }
  1039. /// <summary>
  1040. /// 查找类似 的本地化字符串。
  1041. /// </summary>
  1042. public static string ID1086 {
  1043. get {
  1044. return ResourceManager.GetString("ID1086", resourceCulture);
  1045. }
  1046. }
  1047. /// <summary>
  1048. /// 查找类似 的本地化字符串。
  1049. /// </summary>
  1050. public static string ID1087 {
  1051. get {
  1052. return ResourceManager.GetString("ID1087", resourceCulture);
  1053. }
  1054. }
  1055. /// <summary>
  1056. /// 查找类似 的本地化字符串。
  1057. /// </summary>
  1058. public static string ID1088 {
  1059. get {
  1060. return ResourceManager.GetString("ID1088", resourceCulture);
  1061. }
  1062. }
  1063. /// <summary>
  1064. /// 查找类似 的本地化字符串。
  1065. /// </summary>
  1066. public static string ID1089 {
  1067. get {
  1068. return ResourceManager.GetString("ID1089", resourceCulture);
  1069. }
  1070. }
  1071. /// <summary>
  1072. /// 查找类似 的本地化字符串。
  1073. /// </summary>
  1074. public static string ID1090 {
  1075. get {
  1076. return ResourceManager.GetString("ID1090", resourceCulture);
  1077. }
  1078. }
  1079. /// <summary>
  1080. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1081. /// </summary>
  1082. public static System.Drawing.Bitmap interrupt {
  1083. get {
  1084. object obj = ResourceManager.GetObject("interrupt", resourceCulture);
  1085. return ((System.Drawing.Bitmap)(obj));
  1086. }
  1087. }
  1088. /// <summary>
  1089. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1090. /// </summary>
  1091. public static System.Drawing.Bitmap logo_32 {
  1092. get {
  1093. object obj = ResourceManager.GetObject("logo_32", resourceCulture);
  1094. return ((System.Drawing.Bitmap)(obj));
  1095. }
  1096. }
  1097. /// <summary>
  1098. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1099. /// </summary>
  1100. public static System.Drawing.Bitmap logo_40 {
  1101. get {
  1102. object obj = ResourceManager.GetObject("logo_40", resourceCulture);
  1103. return ((System.Drawing.Bitmap)(obj));
  1104. }
  1105. }
  1106. /// <summary>
  1107. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1108. /// </summary>
  1109. public static System.Drawing.Bitmap MoveToCenter_32 {
  1110. get {
  1111. object obj = ResourceManager.GetObject("MoveToCenter_32", resourceCulture);
  1112. return ((System.Drawing.Bitmap)(obj));
  1113. }
  1114. }
  1115. /// <summary>
  1116. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1117. /// </summary>
  1118. public static System.Drawing.Bitmap NewDocment {
  1119. get {
  1120. object obj = ResourceManager.GetObject("NewDocment", resourceCulture);
  1121. return ((System.Drawing.Bitmap)(obj));
  1122. }
  1123. }
  1124. /// <summary>
  1125. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1126. /// </summary>
  1127. public static System.Drawing.Bitmap newdocument32 {
  1128. get {
  1129. object obj = ResourceManager.GetObject("newdocument32", resourceCulture);
  1130. return ((System.Drawing.Bitmap)(obj));
  1131. }
  1132. }
  1133. /// <summary>
  1134. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1135. /// </summary>
  1136. public static System.Drawing.Bitmap Open16 {
  1137. get {
  1138. object obj = ResourceManager.GetObject("Open16", resourceCulture);
  1139. return ((System.Drawing.Bitmap)(obj));
  1140. }
  1141. }
  1142. /// <summary>
  1143. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1144. /// </summary>
  1145. public static System.Drawing.Bitmap open32 {
  1146. get {
  1147. object obj = ResourceManager.GetObject("open32", resourceCulture);
  1148. return ((System.Drawing.Bitmap)(obj));
  1149. }
  1150. }
  1151. /// <summary>
  1152. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1153. /// </summary>
  1154. public static System.Drawing.Bitmap open321 {
  1155. get {
  1156. object obj = ResourceManager.GetObject("open321", resourceCulture);
  1157. return ((System.Drawing.Bitmap)(obj));
  1158. }
  1159. }
  1160. /// <summary>
  1161. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1162. /// </summary>
  1163. public static System.Drawing.Bitmap option_16 {
  1164. get {
  1165. object obj = ResourceManager.GetObject("option_16", resourceCulture);
  1166. return ((System.Drawing.Bitmap)(obj));
  1167. }
  1168. }
  1169. /// <summary>
  1170. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1171. /// </summary>
  1172. public static System.Drawing.Bitmap OTSIncA {
  1173. get {
  1174. object obj = ResourceManager.GetObject("OTSIncA", resourceCulture);
  1175. return ((System.Drawing.Bitmap)(obj));
  1176. }
  1177. }
  1178. /// <summary>
  1179. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1180. /// </summary>
  1181. public static System.Drawing.Bitmap Pause {
  1182. get {
  1183. object obj = ResourceManager.GetObject("Pause", resourceCulture);
  1184. return ((System.Drawing.Bitmap)(obj));
  1185. }
  1186. }
  1187. /// <summary>
  1188. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1189. /// </summary>
  1190. public static System.Drawing.Bitmap Polygon16 {
  1191. get {
  1192. object obj = ResourceManager.GetObject("Polygon16", resourceCulture);
  1193. return ((System.Drawing.Bitmap)(obj));
  1194. }
  1195. }
  1196. /// <summary>
  1197. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1198. /// </summary>
  1199. public static System.Drawing.Bitmap Polygon161 {
  1200. get {
  1201. object obj = ResourceManager.GetObject("Polygon161", resourceCulture);
  1202. return ((System.Drawing.Bitmap)(obj));
  1203. }
  1204. }
  1205. /// <summary>
  1206. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1207. /// </summary>
  1208. public static System.Drawing.Bitmap Polygon32 {
  1209. get {
  1210. object obj = ResourceManager.GetObject("Polygon32", resourceCulture);
  1211. return ((System.Drawing.Bitmap)(obj));
  1212. }
  1213. }
  1214. /// <summary>
  1215. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1216. /// </summary>
  1217. public static System.Drawing.Bitmap Polygon321 {
  1218. get {
  1219. object obj = ResourceManager.GetObject("Polygon321", resourceCulture);
  1220. return ((System.Drawing.Bitmap)(obj));
  1221. }
  1222. }
  1223. /// <summary>
  1224. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1225. /// </summary>
  1226. public static System.Drawing.Bitmap Power {
  1227. get {
  1228. object obj = ResourceManager.GetObject("Power", resourceCulture);
  1229. return ((System.Drawing.Bitmap)(obj));
  1230. }
  1231. }
  1232. /// <summary>
  1233. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1234. /// </summary>
  1235. public static System.Drawing.Bitmap Prepare16 {
  1236. get {
  1237. object obj = ResourceManager.GetObject("Prepare16", resourceCulture);
  1238. return ((System.Drawing.Bitmap)(obj));
  1239. }
  1240. }
  1241. /// <summary>
  1242. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1243. /// </summary>
  1244. public static System.Drawing.Bitmap prepare32 {
  1245. get {
  1246. object obj = ResourceManager.GetObject("prepare32", resourceCulture);
  1247. return ((System.Drawing.Bitmap)(obj));
  1248. }
  1249. }
  1250. /// <summary>
  1251. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1252. /// </summary>
  1253. public static System.Drawing.Bitmap Recover16 {
  1254. get {
  1255. object obj = ResourceManager.GetObject("Recover16", resourceCulture);
  1256. return ((System.Drawing.Bitmap)(obj));
  1257. }
  1258. }
  1259. /// <summary>
  1260. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1261. /// </summary>
  1262. public static System.Drawing.Bitmap Recover161 {
  1263. get {
  1264. object obj = ResourceManager.GetObject("Recover161", resourceCulture);
  1265. return ((System.Drawing.Bitmap)(obj));
  1266. }
  1267. }
  1268. /// <summary>
  1269. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1270. /// </summary>
  1271. public static System.Drawing.Bitmap Recover16new {
  1272. get {
  1273. object obj = ResourceManager.GetObject("Recover16new", resourceCulture);
  1274. return ((System.Drawing.Bitmap)(obj));
  1275. }
  1276. }
  1277. /// <summary>
  1278. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1279. /// </summary>
  1280. public static System.Drawing.Bitmap Recover16new1 {
  1281. get {
  1282. object obj = ResourceManager.GetObject("Recover16new1", resourceCulture);
  1283. return ((System.Drawing.Bitmap)(obj));
  1284. }
  1285. }
  1286. /// <summary>
  1287. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1288. /// </summary>
  1289. public static System.Drawing.Bitmap Recover32 {
  1290. get {
  1291. object obj = ResourceManager.GetObject("Recover32", resourceCulture);
  1292. return ((System.Drawing.Bitmap)(obj));
  1293. }
  1294. }
  1295. /// <summary>
  1296. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1297. /// </summary>
  1298. public static System.Drawing.Bitmap Recover321 {
  1299. get {
  1300. object obj = ResourceManager.GetObject("Recover321", resourceCulture);
  1301. return ((System.Drawing.Bitmap)(obj));
  1302. }
  1303. }
  1304. /// <summary>
  1305. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1306. /// </summary>
  1307. public static System.Drawing.Bitmap Recover32New {
  1308. get {
  1309. object obj = ResourceManager.GetObject("Recover32New", resourceCulture);
  1310. return ((System.Drawing.Bitmap)(obj));
  1311. }
  1312. }
  1313. /// <summary>
  1314. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1315. /// </summary>
  1316. public static System.Drawing.Bitmap Recover32New1 {
  1317. get {
  1318. object obj = ResourceManager.GetObject("Recover32New1", resourceCulture);
  1319. return ((System.Drawing.Bitmap)(obj));
  1320. }
  1321. }
  1322. /// <summary>
  1323. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1324. /// </summary>
  1325. public static System.Drawing.Bitmap Rectangle16 {
  1326. get {
  1327. object obj = ResourceManager.GetObject("Rectangle16", resourceCulture);
  1328. return ((System.Drawing.Bitmap)(obj));
  1329. }
  1330. }
  1331. /// <summary>
  1332. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1333. /// </summary>
  1334. public static System.Drawing.Bitmap Rectangle161 {
  1335. get {
  1336. object obj = ResourceManager.GetObject("Rectangle161", resourceCulture);
  1337. return ((System.Drawing.Bitmap)(obj));
  1338. }
  1339. }
  1340. /// <summary>
  1341. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1342. /// </summary>
  1343. public static System.Drawing.Bitmap Rectangle32 {
  1344. get {
  1345. object obj = ResourceManager.GetObject("Rectangle32", resourceCulture);
  1346. return ((System.Drawing.Bitmap)(obj));
  1347. }
  1348. }
  1349. /// <summary>
  1350. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1351. /// </summary>
  1352. public static System.Drawing.Bitmap Rectangle321 {
  1353. get {
  1354. object obj = ResourceManager.GetObject("Rectangle321", resourceCulture);
  1355. return ((System.Drawing.Bitmap)(obj));
  1356. }
  1357. }
  1358. /// <summary>
  1359. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1360. /// </summary>
  1361. public static System.Drawing.Bitmap Reset16 {
  1362. get {
  1363. object obj = ResourceManager.GetObject("Reset16", resourceCulture);
  1364. return ((System.Drawing.Bitmap)(obj));
  1365. }
  1366. }
  1367. /// <summary>
  1368. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1369. /// </summary>
  1370. public static System.Drawing.Bitmap Reset161 {
  1371. get {
  1372. object obj = ResourceManager.GetObject("Reset161", resourceCulture);
  1373. return ((System.Drawing.Bitmap)(obj));
  1374. }
  1375. }
  1376. /// <summary>
  1377. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1378. /// </summary>
  1379. public static System.Drawing.Bitmap Reset32 {
  1380. get {
  1381. object obj = ResourceManager.GetObject("Reset32", resourceCulture);
  1382. return ((System.Drawing.Bitmap)(obj));
  1383. }
  1384. }
  1385. /// <summary>
  1386. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1387. /// </summary>
  1388. public static System.Drawing.Bitmap Reset321 {
  1389. get {
  1390. object obj = ResourceManager.GetObject("Reset321", resourceCulture);
  1391. return ((System.Drawing.Bitmap)(obj));
  1392. }
  1393. }
  1394. /// <summary>
  1395. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1396. /// </summary>
  1397. public static System.Drawing.Bitmap Ruler16 {
  1398. get {
  1399. object obj = ResourceManager.GetObject("Ruler16", resourceCulture);
  1400. return ((System.Drawing.Bitmap)(obj));
  1401. }
  1402. }
  1403. /// <summary>
  1404. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1405. /// </summary>
  1406. public static System.Drawing.Bitmap Ruler161 {
  1407. get {
  1408. object obj = ResourceManager.GetObject("Ruler161", resourceCulture);
  1409. return ((System.Drawing.Bitmap)(obj));
  1410. }
  1411. }
  1412. /// <summary>
  1413. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1414. /// </summary>
  1415. public static System.Drawing.Bitmap Ruler162 {
  1416. get {
  1417. object obj = ResourceManager.GetObject("Ruler162", resourceCulture);
  1418. return ((System.Drawing.Bitmap)(obj));
  1419. }
  1420. }
  1421. /// <summary>
  1422. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1423. /// </summary>
  1424. public static System.Drawing.Bitmap Ruler32 {
  1425. get {
  1426. object obj = ResourceManager.GetObject("Ruler32", resourceCulture);
  1427. return ((System.Drawing.Bitmap)(obj));
  1428. }
  1429. }
  1430. /// <summary>
  1431. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1432. /// </summary>
  1433. public static System.Drawing.Bitmap Ruler321 {
  1434. get {
  1435. object obj = ResourceManager.GetObject("Ruler321", resourceCulture);
  1436. return ((System.Drawing.Bitmap)(obj));
  1437. }
  1438. }
  1439. /// <summary>
  1440. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1441. /// </summary>
  1442. public static System.Drawing.Bitmap Save16 {
  1443. get {
  1444. object obj = ResourceManager.GetObject("Save16", resourceCulture);
  1445. return ((System.Drawing.Bitmap)(obj));
  1446. }
  1447. }
  1448. /// <summary>
  1449. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1450. /// </summary>
  1451. public static System.Drawing.Bitmap save32 {
  1452. get {
  1453. object obj = ResourceManager.GetObject("save32", resourceCulture);
  1454. return ((System.Drawing.Bitmap)(obj));
  1455. }
  1456. }
  1457. /// <summary>
  1458. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1459. /// </summary>
  1460. public static System.Drawing.Bitmap save321 {
  1461. get {
  1462. object obj = ResourceManager.GetObject("save321", resourceCulture);
  1463. return ((System.Drawing.Bitmap)(obj));
  1464. }
  1465. }
  1466. /// <summary>
  1467. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1468. /// </summary>
  1469. public static System.Drawing.Bitmap SaveAs16 {
  1470. get {
  1471. object obj = ResourceManager.GetObject("SaveAs16", resourceCulture);
  1472. return ((System.Drawing.Bitmap)(obj));
  1473. }
  1474. }
  1475. /// <summary>
  1476. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1477. /// </summary>
  1478. public static System.Drawing.Bitmap saveas32 {
  1479. get {
  1480. object obj = ResourceManager.GetObject("saveas32", resourceCulture);
  1481. return ((System.Drawing.Bitmap)(obj));
  1482. }
  1483. }
  1484. /// <summary>
  1485. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1486. /// </summary>
  1487. public static System.Drawing.Bitmap sem16 {
  1488. get {
  1489. object obj = ResourceManager.GetObject("sem16", resourceCulture);
  1490. return ((System.Drawing.Bitmap)(obj));
  1491. }
  1492. }
  1493. /// <summary>
  1494. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1495. /// </summary>
  1496. public static System.Drawing.Bitmap sem161 {
  1497. get {
  1498. object obj = ResourceManager.GetObject("sem161", resourceCulture);
  1499. return ((System.Drawing.Bitmap)(obj));
  1500. }
  1501. }
  1502. /// <summary>
  1503. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1504. /// </summary>
  1505. public static System.Drawing.Bitmap sem162 {
  1506. get {
  1507. object obj = ResourceManager.GetObject("sem162", resourceCulture);
  1508. return ((System.Drawing.Bitmap)(obj));
  1509. }
  1510. }
  1511. /// <summary>
  1512. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1513. /// </summary>
  1514. public static System.Drawing.Bitmap sem32 {
  1515. get {
  1516. object obj = ResourceManager.GetObject("sem32", resourceCulture);
  1517. return ((System.Drawing.Bitmap)(obj));
  1518. }
  1519. }
  1520. /// <summary>
  1521. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1522. /// </summary>
  1523. public static System.Drawing.Bitmap sem321 {
  1524. get {
  1525. object obj = ResourceManager.GetObject("sem321", resourceCulture);
  1526. return ((System.Drawing.Bitmap)(obj));
  1527. }
  1528. }
  1529. /// <summary>
  1530. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1531. /// </summary>
  1532. public static System.Drawing.Bitmap SEMMoveToCenter_32 {
  1533. get {
  1534. object obj = ResourceManager.GetObject("SEMMoveToCenter_32", resourceCulture);
  1535. return ((System.Drawing.Bitmap)(obj));
  1536. }
  1537. }
  1538. /// <summary>
  1539. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1540. /// </summary>
  1541. public static System.Drawing.Bitmap SEMMoveToCurrent_32 {
  1542. get {
  1543. object obj = ResourceManager.GetObject("SEMMoveToCurrent_32", resourceCulture);
  1544. return ((System.Drawing.Bitmap)(obj));
  1545. }
  1546. }
  1547. /// <summary>
  1548. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1549. /// </summary>
  1550. public static System.Drawing.Bitmap send32 {
  1551. get {
  1552. object obj = ResourceManager.GetObject("send32", resourceCulture);
  1553. return ((System.Drawing.Bitmap)(obj));
  1554. }
  1555. }
  1556. /// <summary>
  1557. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1558. /// </summary>
  1559. public static System.Drawing.Bitmap set16 {
  1560. get {
  1561. object obj = ResourceManager.GetObject("set16", resourceCulture);
  1562. return ((System.Drawing.Bitmap)(obj));
  1563. }
  1564. }
  1565. /// <summary>
  1566. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1567. /// </summary>
  1568. public static System.Drawing.Bitmap set161 {
  1569. get {
  1570. object obj = ResourceManager.GetObject("set161", resourceCulture);
  1571. return ((System.Drawing.Bitmap)(obj));
  1572. }
  1573. }
  1574. /// <summary>
  1575. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1576. /// </summary>
  1577. public static System.Drawing.Bitmap set32 {
  1578. get {
  1579. object obj = ResourceManager.GetObject("set32", resourceCulture);
  1580. return ((System.Drawing.Bitmap)(obj));
  1581. }
  1582. }
  1583. /// <summary>
  1584. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1585. /// </summary>
  1586. public static System.Drawing.Bitmap set321 {
  1587. get {
  1588. object obj = ResourceManager.GetObject("set321", resourceCulture);
  1589. return ((System.Drawing.Bitmap)(obj));
  1590. }
  1591. }
  1592. /// <summary>
  1593. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1594. /// </summary>
  1595. public static System.Drawing.Bitmap SetSemData {
  1596. get {
  1597. object obj = ResourceManager.GetObject("SetSemData", resourceCulture);
  1598. return ((System.Drawing.Bitmap)(obj));
  1599. }
  1600. }
  1601. /// <summary>
  1602. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1603. /// </summary>
  1604. public static System.Drawing.Bitmap SmapleName16 {
  1605. get {
  1606. object obj = ResourceManager.GetObject("SmapleName16", resourceCulture);
  1607. return ((System.Drawing.Bitmap)(obj));
  1608. }
  1609. }
  1610. /// <summary>
  1611. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1612. /// </summary>
  1613. public static System.Drawing.Bitmap SmapleName161 {
  1614. get {
  1615. object obj = ResourceManager.GetObject("SmapleName161", resourceCulture);
  1616. return ((System.Drawing.Bitmap)(obj));
  1617. }
  1618. }
  1619. /// <summary>
  1620. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1621. /// </summary>
  1622. public static System.Drawing.Bitmap SmapleName32 {
  1623. get {
  1624. object obj = ResourceManager.GetObject("SmapleName32", resourceCulture);
  1625. return ((System.Drawing.Bitmap)(obj));
  1626. }
  1627. }
  1628. /// <summary>
  1629. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1630. /// </summary>
  1631. public static System.Drawing.Bitmap SmapleName321 {
  1632. get {
  1633. object obj = ResourceManager.GetObject("SmapleName321", resourceCulture);
  1634. return ((System.Drawing.Bitmap)(obj));
  1635. }
  1636. }
  1637. /// <summary>
  1638. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1639. /// </summary>
  1640. public static System.Drawing.Bitmap SmaplePhoto16 {
  1641. get {
  1642. object obj = ResourceManager.GetObject("SmaplePhoto16", resourceCulture);
  1643. return ((System.Drawing.Bitmap)(obj));
  1644. }
  1645. }
  1646. /// <summary>
  1647. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1648. /// </summary>
  1649. public static System.Drawing.Bitmap SmaplePhoto161 {
  1650. get {
  1651. object obj = ResourceManager.GetObject("SmaplePhoto161", resourceCulture);
  1652. return ((System.Drawing.Bitmap)(obj));
  1653. }
  1654. }
  1655. /// <summary>
  1656. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1657. /// </summary>
  1658. public static System.Drawing.Bitmap SmaplePhoto32 {
  1659. get {
  1660. object obj = ResourceManager.GetObject("SmaplePhoto32", resourceCulture);
  1661. return ((System.Drawing.Bitmap)(obj));
  1662. }
  1663. }
  1664. /// <summary>
  1665. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1666. /// </summary>
  1667. public static System.Drawing.Bitmap SmaplePhoto321 {
  1668. get {
  1669. object obj = ResourceManager.GetObject("SmaplePhoto321", resourceCulture);
  1670. return ((System.Drawing.Bitmap)(obj));
  1671. }
  1672. }
  1673. /// <summary>
  1674. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1675. /// </summary>
  1676. public static System.Drawing.Bitmap start16 {
  1677. get {
  1678. object obj = ResourceManager.GetObject("start16", resourceCulture);
  1679. return ((System.Drawing.Bitmap)(obj));
  1680. }
  1681. }
  1682. /// <summary>
  1683. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1684. /// </summary>
  1685. public static System.Drawing.Bitmap start161 {
  1686. get {
  1687. object obj = ResourceManager.GetObject("start161", resourceCulture);
  1688. return ((System.Drawing.Bitmap)(obj));
  1689. }
  1690. }
  1691. /// <summary>
  1692. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1693. /// </summary>
  1694. public static System.Drawing.Bitmap start32 {
  1695. get {
  1696. object obj = ResourceManager.GetObject("start32", resourceCulture);
  1697. return ((System.Drawing.Bitmap)(obj));
  1698. }
  1699. }
  1700. /// <summary>
  1701. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1702. /// </summary>
  1703. public static System.Drawing.Bitmap start321 {
  1704. get {
  1705. object obj = ResourceManager.GetObject("start321", resourceCulture);
  1706. return ((System.Drawing.Bitmap)(obj));
  1707. }
  1708. }
  1709. /// <summary>
  1710. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1711. /// </summary>
  1712. public static System.Drawing.Bitmap stop16 {
  1713. get {
  1714. object obj = ResourceManager.GetObject("stop16", resourceCulture);
  1715. return ((System.Drawing.Bitmap)(obj));
  1716. }
  1717. }
  1718. /// <summary>
  1719. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1720. /// </summary>
  1721. public static System.Drawing.Bitmap stop161 {
  1722. get {
  1723. object obj = ResourceManager.GetObject("stop161", resourceCulture);
  1724. return ((System.Drawing.Bitmap)(obj));
  1725. }
  1726. }
  1727. /// <summary>
  1728. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1729. /// </summary>
  1730. public static System.Drawing.Bitmap stop32 {
  1731. get {
  1732. object obj = ResourceManager.GetObject("stop32", resourceCulture);
  1733. return ((System.Drawing.Bitmap)(obj));
  1734. }
  1735. }
  1736. /// <summary>
  1737. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1738. /// </summary>
  1739. public static System.Drawing.Bitmap stop321 {
  1740. get {
  1741. object obj = ResourceManager.GetObject("stop321", resourceCulture);
  1742. return ((System.Drawing.Bitmap)(obj));
  1743. }
  1744. }
  1745. /// <summary>
  1746. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1747. /// </summary>
  1748. public static System.Drawing.Bitmap test16 {
  1749. get {
  1750. object obj = ResourceManager.GetObject("test16", resourceCulture);
  1751. return ((System.Drawing.Bitmap)(obj));
  1752. }
  1753. }
  1754. /// <summary>
  1755. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1756. /// </summary>
  1757. public static System.Drawing.Bitmap test161 {
  1758. get {
  1759. object obj = ResourceManager.GetObject("test161", resourceCulture);
  1760. return ((System.Drawing.Bitmap)(obj));
  1761. }
  1762. }
  1763. /// <summary>
  1764. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1765. /// </summary>
  1766. public static System.Drawing.Bitmap test32 {
  1767. get {
  1768. object obj = ResourceManager.GetObject("test32", resourceCulture);
  1769. return ((System.Drawing.Bitmap)(obj));
  1770. }
  1771. }
  1772. /// <summary>
  1773. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1774. /// </summary>
  1775. public static System.Drawing.Bitmap test321 {
  1776. get {
  1777. object obj = ResourceManager.GetObject("test321", resourceCulture);
  1778. return ((System.Drawing.Bitmap)(obj));
  1779. }
  1780. }
  1781. /// <summary>
  1782. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1783. /// </summary>
  1784. public static System.Drawing.Bitmap textalignjustify16 {
  1785. get {
  1786. object obj = ResourceManager.GetObject("textalignjustify16", resourceCulture);
  1787. return ((System.Drawing.Bitmap)(obj));
  1788. }
  1789. }
  1790. /// <summary>
  1791. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1792. /// </summary>
  1793. public static System.Drawing.Bitmap 保存 {
  1794. get {
  1795. object obj = ResourceManager.GetObject("保存", resourceCulture);
  1796. return ((System.Drawing.Bitmap)(obj));
  1797. }
  1798. }
  1799. /// <summary>
  1800. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1801. /// </summary>
  1802. public static System.Drawing.Bitmap 停止 {
  1803. get {
  1804. object obj = ResourceManager.GetObject("停止", resourceCulture);
  1805. return ((System.Drawing.Bitmap)(obj));
  1806. }
  1807. }
  1808. /// <summary>
  1809. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1810. /// </summary>
  1811. public static System.Drawing.Bitmap 停止32 {
  1812. get {
  1813. object obj = ResourceManager.GetObject("停止32", resourceCulture);
  1814. return ((System.Drawing.Bitmap)(obj));
  1815. }
  1816. }
  1817. /// <summary>
  1818. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1819. /// </summary>
  1820. public static System.Drawing.Bitmap 关机 {
  1821. get {
  1822. object obj = ResourceManager.GetObject("关机", resourceCulture);
  1823. return ((System.Drawing.Bitmap)(obj));
  1824. }
  1825. }
  1826. /// <summary>
  1827. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1828. /// </summary>
  1829. public static System.Drawing.Bitmap 关闭32 {
  1830. get {
  1831. object obj = ResourceManager.GetObject("关闭32", resourceCulture);
  1832. return ((System.Drawing.Bitmap)(obj));
  1833. }
  1834. }
  1835. /// <summary>
  1836. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1837. /// </summary>
  1838. public static System.Drawing.Bitmap 关闭二16 {
  1839. get {
  1840. object obj = ResourceManager.GetObject("关闭二16", resourceCulture);
  1841. return ((System.Drawing.Bitmap)(obj));
  1842. }
  1843. }
  1844. /// <summary>
  1845. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1846. /// </summary>
  1847. public static System.Drawing.Bitmap 关闭二32 {
  1848. get {
  1849. object obj = ResourceManager.GetObject("关闭二32", resourceCulture);
  1850. return ((System.Drawing.Bitmap)(obj));
  1851. }
  1852. }
  1853. /// <summary>
  1854. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1855. /// </summary>
  1856. public static System.Drawing.Bitmap 关闭电镜 {
  1857. get {
  1858. object obj = ResourceManager.GetObject("关闭电镜", resourceCulture);
  1859. return ((System.Drawing.Bitmap)(obj));
  1860. }
  1861. }
  1862. /// <summary>
  1863. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1864. /// </summary>
  1865. public static System.Drawing.Bitmap 删除32 {
  1866. get {
  1867. object obj = ResourceManager.GetObject("删除32", resourceCulture);
  1868. return ((System.Drawing.Bitmap)(obj));
  1869. }
  1870. }
  1871. /// <summary>
  1872. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1873. /// </summary>
  1874. public static System.Drawing.Bitmap 删除样品 {
  1875. get {
  1876. object obj = ResourceManager.GetObject("删除样品", resourceCulture);
  1877. return ((System.Drawing.Bitmap)(obj));
  1878. }
  1879. }
  1880. /// <summary>
  1881. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1882. /// </summary>
  1883. public static System.Drawing.Bitmap 前进 {
  1884. get {
  1885. object obj = ResourceManager.GetObject("前进", resourceCulture);
  1886. return ((System.Drawing.Bitmap)(obj));
  1887. }
  1888. }
  1889. /// <summary>
  1890. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1891. /// </summary>
  1892. public static System.Drawing.Bitmap 另存为 {
  1893. get {
  1894. object obj = ResourceManager.GetObject("另存为", resourceCulture);
  1895. return ((System.Drawing.Bitmap)(obj));
  1896. }
  1897. }
  1898. /// <summary>
  1899. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1900. /// </summary>
  1901. public static System.Drawing.Bitmap 圆形32 {
  1902. get {
  1903. object obj = ResourceManager.GetObject("圆形32", resourceCulture);
  1904. return ((System.Drawing.Bitmap)(obj));
  1905. }
  1906. }
  1907. /// <summary>
  1908. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1909. /// </summary>
  1910. public static System.Drawing.Bitmap 复位 {
  1911. get {
  1912. object obj = ResourceManager.GetObject("复位", resourceCulture);
  1913. return ((System.Drawing.Bitmap)(obj));
  1914. }
  1915. }
  1916. /// <summary>
  1917. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1918. /// </summary>
  1919. public static System.Drawing.Bitmap 复位32 {
  1920. get {
  1921. object obj = ResourceManager.GetObject("复位32", resourceCulture);
  1922. return ((System.Drawing.Bitmap)(obj));
  1923. }
  1924. }
  1925. /// <summary>
  1926. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1927. /// </summary>
  1928. public static System.Drawing.Bitmap 开始 {
  1929. get {
  1930. object obj = ResourceManager.GetObject("开始", resourceCulture);
  1931. return ((System.Drawing.Bitmap)(obj));
  1932. }
  1933. }
  1934. /// <summary>
  1935. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1936. /// </summary>
  1937. public static System.Drawing.Bitmap 开始32 {
  1938. get {
  1939. object obj = ResourceManager.GetObject("开始32", resourceCulture);
  1940. return ((System.Drawing.Bitmap)(obj));
  1941. }
  1942. }
  1943. /// <summary>
  1944. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1945. /// </summary>
  1946. public static System.Drawing.Bitmap 恢复32 {
  1947. get {
  1948. object obj = ResourceManager.GetObject("恢复32", resourceCulture);
  1949. return ((System.Drawing.Bitmap)(obj));
  1950. }
  1951. }
  1952. /// <summary>
  1953. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1954. /// </summary>
  1955. public static System.Drawing.Bitmap 新建 {
  1956. get {
  1957. object obj = ResourceManager.GetObject("新建", resourceCulture);
  1958. return ((System.Drawing.Bitmap)(obj));
  1959. }
  1960. }
  1961. /// <summary>
  1962. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1963. /// </summary>
  1964. public static System.Drawing.Bitmap 标尺 {
  1965. get {
  1966. object obj = ResourceManager.GetObject("标尺", resourceCulture);
  1967. return ((System.Drawing.Bitmap)(obj));
  1968. }
  1969. }
  1970. /// <summary>
  1971. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1972. /// </summary>
  1973. public static System.Drawing.Bitmap 标尺32 {
  1974. get {
  1975. object obj = ResourceManager.GetObject("标尺32", resourceCulture);
  1976. return ((System.Drawing.Bitmap)(obj));
  1977. }
  1978. }
  1979. /// <summary>
  1980. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1981. /// </summary>
  1982. public static System.Drawing.Bitmap 样品孔名称32 {
  1983. get {
  1984. object obj = ResourceManager.GetObject("样品孔名称32", resourceCulture);
  1985. return ((System.Drawing.Bitmap)(obj));
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1990. /// </summary>
  1991. public static System.Drawing.Bitmap 样品孔照片32 {
  1992. get {
  1993. object obj = ResourceManager.GetObject("样品孔照片32", resourceCulture);
  1994. return ((System.Drawing.Bitmap)(obj));
  1995. }
  1996. }
  1997. /// <summary>
  1998. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  1999. /// </summary>
  2000. public static System.Drawing.Bitmap 检测32 {
  2001. get {
  2002. object obj = ResourceManager.GetObject("检测32", resourceCulture);
  2003. return ((System.Drawing.Bitmap)(obj));
  2004. }
  2005. }
  2006. /// <summary>
  2007. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2008. /// </summary>
  2009. public static System.Drawing.Bitmap 检测321 {
  2010. get {
  2011. object obj = ResourceManager.GetObject("检测321", resourceCulture);
  2012. return ((System.Drawing.Bitmap)(obj));
  2013. }
  2014. }
  2015. /// <summary>
  2016. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2017. /// </summary>
  2018. public static System.Drawing.Bitmap 检测参数 {
  2019. get {
  2020. object obj = ResourceManager.GetObject("检测参数", resourceCulture);
  2021. return ((System.Drawing.Bitmap)(obj));
  2022. }
  2023. }
  2024. /// <summary>
  2025. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2026. /// </summary>
  2027. public static System.Drawing.Bitmap 添加32 {
  2028. get {
  2029. object obj = ResourceManager.GetObject("添加32", resourceCulture);
  2030. return ((System.Drawing.Bitmap)(obj));
  2031. }
  2032. }
  2033. /// <summary>
  2034. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2035. /// </summary>
  2036. public static System.Drawing.Bitmap 添加样品 {
  2037. get {
  2038. object obj = ResourceManager.GetObject("添加样品", resourceCulture);
  2039. return ((System.Drawing.Bitmap)(obj));
  2040. }
  2041. }
  2042. /// <summary>
  2043. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2044. /// </summary>
  2045. public static System.Drawing.Bitmap 画圆 {
  2046. get {
  2047. object obj = ResourceManager.GetObject("画圆", resourceCulture);
  2048. return ((System.Drawing.Bitmap)(obj));
  2049. }
  2050. }
  2051. /// <summary>
  2052. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2053. /// </summary>
  2054. public static System.Drawing.Bitmap 画方 {
  2055. get {
  2056. object obj = ResourceManager.GetObject("画方", resourceCulture);
  2057. return ((System.Drawing.Bitmap)(obj));
  2058. }
  2059. }
  2060. /// <summary>
  2061. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2062. /// </summary>
  2063. public static System.Drawing.Bitmap 矩形32 {
  2064. get {
  2065. object obj = ResourceManager.GetObject("矩形32", resourceCulture);
  2066. return ((System.Drawing.Bitmap)(obj));
  2067. }
  2068. }
  2069. /// <summary>
  2070. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2071. /// </summary>
  2072. public static System.Drawing.Bitmap 编辑 {
  2073. get {
  2074. object obj = ResourceManager.GetObject("编辑", resourceCulture);
  2075. return ((System.Drawing.Bitmap)(obj));
  2076. }
  2077. }
  2078. /// <summary>
  2079. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2080. /// </summary>
  2081. public static System.Drawing.Bitmap 返回 {
  2082. get {
  2083. object obj = ResourceManager.GetObject("返回", resourceCulture);
  2084. return ((System.Drawing.Bitmap)(obj));
  2085. }
  2086. }
  2087. /// <summary>
  2088. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2089. /// </summary>
  2090. public static System.Drawing.Bitmap 透明 {
  2091. get {
  2092. object obj = ResourceManager.GetObject("透明", resourceCulture);
  2093. return ((System.Drawing.Bitmap)(obj));
  2094. }
  2095. }
  2096. /// <summary>
  2097. /// 查找 System.Drawing.Bitmap 类型的本地化资源。
  2098. /// </summary>
  2099. public static System.Drawing.Bitmap 透明选中 {
  2100. get {
  2101. object obj = ResourceManager.GetObject("透明选中", resourceCulture);
  2102. return ((System.Drawing.Bitmap)(obj));
  2103. }
  2104. }
  2105. }
  2106. }