Resources.Designer.cs 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace OTSIncAReportApp.Properties {
  11. using System;
  12. /// <summary>
  13. /// A strongly-typed resource class, for looking up localized strings, etc.
  14. /// </summary>
  15. // This class was auto-generated by the StronglyTypedResourceBuilder
  16. // class via a tool like ResGen or Visual Studio.
  17. // To add or remove a member, edit your .ResX file then rerun ResGen
  18. // with the /str option, or rebuild your VS project.
  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. internal 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. /// Returns the cached ResourceManager instance used by this class.
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. internal 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("OTSIncAReportApp.Properties.Resources", typeof(Resources).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// Overrides the current thread's CurrentUICulture property for all
  43. /// resource lookups using this strongly typed resource class.
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. internal static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// Looks up a localized resource of type System.Drawing.Bitmap.
  56. /// </summary>
  57. internal 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. /// Looks up a localized resource of type System.Drawing.Bitmap.
  65. /// </summary>
  66. internal 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. /// Looks up a localized resource of type System.Drawing.Bitmap.
  74. /// </summary>
  75. internal 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. /// Looks up a localized resource of type System.Drawing.Bitmap.
  83. /// </summary>
  84. internal 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. /// Looks up a localized resource of type System.Drawing.Bitmap.
  92. /// </summary>
  93. internal 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. /// Looks up a localized resource of type System.Drawing.Bitmap.
  101. /// </summary>
  102. internal static System.Drawing.Bitmap ArrowDown {
  103. get {
  104. object obj = ResourceManager.GetObject("ArrowDown", resourceCulture);
  105. return ((System.Drawing.Bitmap)(obj));
  106. }
  107. }
  108. /// <summary>
  109. /// Looks up a localized resource of type System.Drawing.Bitmap.
  110. /// </summary>
  111. internal static System.Drawing.Bitmap ArrowUp {
  112. get {
  113. object obj = ResourceManager.GetObject("ArrowUp", resourceCulture);
  114. return ((System.Drawing.Bitmap)(obj));
  115. }
  116. }
  117. /// <summary>
  118. /// Looks up a localized resource of type System.Drawing.Bitmap.
  119. /// </summary>
  120. internal static System.Drawing.Bitmap bold16 {
  121. get {
  122. object obj = ResourceManager.GetObject("bold16", resourceCulture);
  123. return ((System.Drawing.Bitmap)(obj));
  124. }
  125. }
  126. /// <summary>
  127. /// Looks up a localized resource of type System.Drawing.Bitmap.
  128. /// </summary>
  129. internal static System.Drawing.Bitmap borderbottom16 {
  130. get {
  131. object obj = ResourceManager.GetObject("borderbottom16", resourceCulture);
  132. return ((System.Drawing.Bitmap)(obj));
  133. }
  134. }
  135. /// <summary>
  136. /// Looks up a localized resource of type System.Drawing.Bitmap.
  137. /// </summary>
  138. internal static System.Drawing.Bitmap Cancel {
  139. get {
  140. object obj = ResourceManager.GetObject("Cancel", resourceCulture);
  141. return ((System.Drawing.Bitmap)(obj));
  142. }
  143. }
  144. /// <summary>
  145. /// Looks up a localized resource of type System.Drawing.Bitmap.
  146. /// </summary>
  147. internal static System.Drawing.Bitmap cancel_Size_32 {
  148. get {
  149. object obj = ResourceManager.GetObject("cancel_Size_32", resourceCulture);
  150. return ((System.Drawing.Bitmap)(obj));
  151. }
  152. }
  153. /// <summary>
  154. /// Looks up a localized resource of type System.Drawing.Bitmap.
  155. /// </summary>
  156. internal static System.Drawing.Bitmap casing16 {
  157. get {
  158. object obj = ResourceManager.GetObject("casing16", resourceCulture);
  159. return ((System.Drawing.Bitmap)(obj));
  160. }
  161. }
  162. /// <summary>
  163. /// Looks up a localized resource of type System.Drawing.Bitmap.
  164. /// </summary>
  165. internal static System.Drawing.Bitmap circle_Size_32 {
  166. get {
  167. object obj = ResourceManager.GetObject("circle_Size_32", resourceCulture);
  168. return ((System.Drawing.Bitmap)(obj));
  169. }
  170. }
  171. /// <summary>
  172. /// Looks up a localized resource of type System.Drawing.Bitmap.
  173. /// </summary>
  174. internal static System.Drawing.Bitmap Circle16 {
  175. get {
  176. object obj = ResourceManager.GetObject("Circle16", resourceCulture);
  177. return ((System.Drawing.Bitmap)(obj));
  178. }
  179. }
  180. /// <summary>
  181. /// Looks up a localized resource of type System.Drawing.Bitmap.
  182. /// </summary>
  183. internal static System.Drawing.Bitmap Circle161 {
  184. get {
  185. object obj = ResourceManager.GetObject("Circle161", resourceCulture);
  186. return ((System.Drawing.Bitmap)(obj));
  187. }
  188. }
  189. /// <summary>
  190. /// Looks up a localized resource of type System.Drawing.Bitmap.
  191. /// </summary>
  192. internal static System.Drawing.Bitmap Circle32 {
  193. get {
  194. object obj = ResourceManager.GetObject("Circle32", resourceCulture);
  195. return ((System.Drawing.Bitmap)(obj));
  196. }
  197. }
  198. /// <summary>
  199. /// Looks up a localized resource of type System.Drawing.Bitmap.
  200. /// </summary>
  201. internal static System.Drawing.Bitmap Circle321 {
  202. get {
  203. object obj = ResourceManager.GetObject("Circle321", resourceCulture);
  204. return ((System.Drawing.Bitmap)(obj));
  205. }
  206. }
  207. /// <summary>
  208. /// Looks up a localized resource of type System.Drawing.Bitmap.
  209. /// </summary>
  210. internal static System.Drawing.Bitmap close32 {
  211. get {
  212. object obj = ResourceManager.GetObject("close32", resourceCulture);
  213. return ((System.Drawing.Bitmap)(obj));
  214. }
  215. }
  216. /// <summary>
  217. /// Looks up a localized resource of type System.Drawing.Bitmap.
  218. /// </summary>
  219. internal static System.Drawing.Bitmap copy_Size_32 {
  220. get {
  221. object obj = ResourceManager.GetObject("copy_Size_32", resourceCulture);
  222. return ((System.Drawing.Bitmap)(obj));
  223. }
  224. }
  225. /// <summary>
  226. /// Looks up a localized resource of type System.Drawing.Bitmap.
  227. /// </summary>
  228. internal static System.Drawing.Bitmap copy16 {
  229. get {
  230. object obj = ResourceManager.GetObject("copy16", resourceCulture);
  231. return ((System.Drawing.Bitmap)(obj));
  232. }
  233. }
  234. /// <summary>
  235. /// Looks up a localized resource of type System.Drawing.Bitmap.
  236. /// </summary>
  237. internal static System.Drawing.Bitmap copyAll_Size_32 {
  238. get {
  239. object obj = ResourceManager.GetObject("copyAll_Size_32", resourceCulture);
  240. return ((System.Drawing.Bitmap)(obj));
  241. }
  242. }
  243. /// <summary>
  244. /// Looks up a localized resource of type System.Drawing.Bitmap.
  245. /// </summary>
  246. internal static System.Drawing.Bitmap copyformat16 {
  247. get {
  248. object obj = ResourceManager.GetObject("copyformat16", resourceCulture);
  249. return ((System.Drawing.Bitmap)(obj));
  250. }
  251. }
  252. /// <summary>
  253. /// Looks up a localized resource of type System.Drawing.Bitmap.
  254. /// </summary>
  255. internal static System.Drawing.Bitmap cubic {
  256. get {
  257. object obj = ResourceManager.GetObject("cubic", resourceCulture);
  258. return ((System.Drawing.Bitmap)(obj));
  259. }
  260. }
  261. /// <summary>
  262. /// Looks up a localized resource of type System.Drawing.Bitmap.
  263. /// </summary>
  264. internal static System.Drawing.Bitmap cubicbodycentered {
  265. get {
  266. object obj = ResourceManager.GetObject("cubicbodycentered", resourceCulture);
  267. return ((System.Drawing.Bitmap)(obj));
  268. }
  269. }
  270. /// <summary>
  271. /// Looks up a localized resource of type System.Drawing.Bitmap.
  272. /// </summary>
  273. internal static System.Drawing.Bitmap cubicfacecentered {
  274. get {
  275. object obj = ResourceManager.GetObject("cubicfacecentered", resourceCulture);
  276. return ((System.Drawing.Bitmap)(obj));
  277. }
  278. }
  279. /// <summary>
  280. /// Looks up a localized resource of type System.Drawing.Bitmap.
  281. /// </summary>
  282. internal static System.Drawing.Bitmap cut16 {
  283. get {
  284. object obj = ResourceManager.GetObject("cut16", resourceCulture);
  285. return ((System.Drawing.Bitmap)(obj));
  286. }
  287. }
  288. /// <summary>
  289. /// Looks up a localized resource of type System.Drawing.Bitmap.
  290. /// </summary>
  291. internal static System.Drawing.Bitmap delete_Size_32 {
  292. get {
  293. object obj = ResourceManager.GetObject("delete_Size_32", resourceCulture);
  294. return ((System.Drawing.Bitmap)(obj));
  295. }
  296. }
  297. /// <summary>
  298. /// Looks up a localized resource of type System.Drawing.Bitmap.
  299. /// </summary>
  300. internal static System.Drawing.Bitmap delete16 {
  301. get {
  302. object obj = ResourceManager.GetObject("delete16", resourceCulture);
  303. return ((System.Drawing.Bitmap)(obj));
  304. }
  305. }
  306. /// <summary>
  307. /// Looks up a localized resource of type System.Drawing.Bitmap.
  308. /// </summary>
  309. internal static System.Drawing.Bitmap delete161 {
  310. get {
  311. object obj = ResourceManager.GetObject("delete161", resourceCulture);
  312. return ((System.Drawing.Bitmap)(obj));
  313. }
  314. }
  315. /// <summary>
  316. /// Looks up a localized resource of type System.Drawing.Bitmap.
  317. /// </summary>
  318. internal static System.Drawing.Bitmap delete32 {
  319. get {
  320. object obj = ResourceManager.GetObject("delete32", resourceCulture);
  321. return ((System.Drawing.Bitmap)(obj));
  322. }
  323. }
  324. /// <summary>
  325. /// Looks up a localized resource of type System.Drawing.Bitmap.
  326. /// </summary>
  327. internal static System.Drawing.Bitmap delete321 {
  328. get {
  329. object obj = ResourceManager.GetObject("delete321", resourceCulture);
  330. return ((System.Drawing.Bitmap)(obj));
  331. }
  332. }
  333. /// <summary>
  334. /// Looks up a localized resource of type System.Drawing.Bitmap.
  335. /// </summary>
  336. internal static System.Drawing.Bitmap deletefile16 {
  337. get {
  338. object obj = ResourceManager.GetObject("deletefile16", resourceCulture);
  339. return ((System.Drawing.Bitmap)(obj));
  340. }
  341. }
  342. /// <summary>
  343. /// Looks up a localized resource of type System.Drawing.Bitmap.
  344. /// </summary>
  345. internal static System.Drawing.Bitmap deletefile161 {
  346. get {
  347. object obj = ResourceManager.GetObject("deletefile161", resourceCulture);
  348. return ((System.Drawing.Bitmap)(obj));
  349. }
  350. }
  351. /// <summary>
  352. /// Looks up a localized resource of type System.Drawing.Bitmap.
  353. /// </summary>
  354. internal static System.Drawing.Bitmap deletefile32 {
  355. get {
  356. object obj = ResourceManager.GetObject("deletefile32", resourceCulture);
  357. return ((System.Drawing.Bitmap)(obj));
  358. }
  359. }
  360. /// <summary>
  361. /// Looks up a localized resource of type System.Drawing.Bitmap.
  362. /// </summary>
  363. internal static System.Drawing.Bitmap deletefile321 {
  364. get {
  365. object obj = ResourceManager.GetObject("deletefile321", resourceCulture);
  366. return ((System.Drawing.Bitmap)(obj));
  367. }
  368. }
  369. /// <summary>
  370. /// Looks up a localized resource of type System.Drawing.Bitmap.
  371. /// </summary>
  372. internal static System.Drawing.Bitmap DockIndicator_PanelBottom {
  373. get {
  374. object obj = ResourceManager.GetObject("DockIndicator_PanelBottom", resourceCulture);
  375. return ((System.Drawing.Bitmap)(obj));
  376. }
  377. }
  378. /// <summary>
  379. /// Looks up a localized resource of type System.Drawing.Bitmap.
  380. /// </summary>
  381. internal static System.Drawing.Bitmap DockIndicator_PanelFill {
  382. get {
  383. object obj = ResourceManager.GetObject("DockIndicator_PanelFill", resourceCulture);
  384. return ((System.Drawing.Bitmap)(obj));
  385. }
  386. }
  387. /// <summary>
  388. /// Looks up a localized resource of type System.Drawing.Bitmap.
  389. /// </summary>
  390. internal static System.Drawing.Bitmap DockIndicator_PanelLeft {
  391. get {
  392. object obj = ResourceManager.GetObject("DockIndicator_PanelLeft", resourceCulture);
  393. return ((System.Drawing.Bitmap)(obj));
  394. }
  395. }
  396. /// <summary>
  397. /// Looks up a localized resource of type System.Drawing.Bitmap.
  398. /// </summary>
  399. internal static System.Drawing.Bitmap DockIndicator_PanelRight {
  400. get {
  401. object obj = ResourceManager.GetObject("DockIndicator_PanelRight", resourceCulture);
  402. return ((System.Drawing.Bitmap)(obj));
  403. }
  404. }
  405. /// <summary>
  406. /// Looks up a localized resource of type System.Drawing.Bitmap.
  407. /// </summary>
  408. internal static System.Drawing.Bitmap DockIndicator_PanelTop {
  409. get {
  410. object obj = ResourceManager.GetObject("DockIndicator_PanelTop", resourceCulture);
  411. return ((System.Drawing.Bitmap)(obj));
  412. }
  413. }
  414. /// <summary>
  415. /// Looks up a localized resource of type System.Drawing.Bitmap.
  416. /// </summary>
  417. internal static System.Drawing.Bitmap eraseformat16 {
  418. get {
  419. object obj = ResourceManager.GetObject("eraseformat16", resourceCulture);
  420. return ((System.Drawing.Bitmap)(obj));
  421. }
  422. }
  423. /// <summary>
  424. /// Looks up a localized resource of type System.Drawing.Bitmap.
  425. /// </summary>
  426. internal static System.Drawing.Bitmap exit16 {
  427. get {
  428. object obj = ResourceManager.GetObject("exit16", resourceCulture);
  429. return ((System.Drawing.Bitmap)(obj));
  430. }
  431. }
  432. /// <summary>
  433. /// Looks up a localized resource of type System.Drawing.Bitmap.
  434. /// </summary>
  435. internal static System.Drawing.Bitmap export_Size_32 {
  436. get {
  437. object obj = ResourceManager.GetObject("export_Size_32", resourceCulture);
  438. return ((System.Drawing.Bitmap)(obj));
  439. }
  440. }
  441. /// <summary>
  442. /// Looks up a localized resource of type System.Drawing.Bitmap.
  443. /// </summary>
  444. internal static System.Drawing.Bitmap fill16 {
  445. get {
  446. object obj = ResourceManager.GetObject("fill16", resourceCulture);
  447. return ((System.Drawing.Bitmap)(obj));
  448. }
  449. }
  450. /// <summary>
  451. /// Looks up a localized resource of type System.Drawing.Bitmap.
  452. /// </summary>
  453. internal static System.Drawing.Bitmap find32 {
  454. get {
  455. object obj = ResourceManager.GetObject("find32", resourceCulture);
  456. return ((System.Drawing.Bitmap)(obj));
  457. }
  458. }
  459. /// <summary>
  460. /// Looks up a localized resource of type System.Drawing.Bitmap.
  461. /// </summary>
  462. internal static System.Drawing.Bitmap fontcolor16 {
  463. get {
  464. object obj = ResourceManager.GetObject("fontcolor16", resourceCulture);
  465. return ((System.Drawing.Bitmap)(obj));
  466. }
  467. }
  468. /// <summary>
  469. /// Looks up a localized resource of type System.Drawing.Bitmap.
  470. /// </summary>
  471. internal static System.Drawing.Bitmap fontsizedecrease16 {
  472. get {
  473. object obj = ResourceManager.GetObject("fontsizedecrease16", resourceCulture);
  474. return ((System.Drawing.Bitmap)(obj));
  475. }
  476. }
  477. /// <summary>
  478. /// Looks up a localized resource of type System.Drawing.Bitmap.
  479. /// </summary>
  480. internal static System.Drawing.Bitmap fontsizeincrease16 {
  481. get {
  482. object obj = ResourceManager.GetObject("fontsizeincrease16", resourceCulture);
  483. return ((System.Drawing.Bitmap)(obj));
  484. }
  485. }
  486. /// <summary>
  487. /// Looks up a localized resource of type System.Drawing.Bitmap.
  488. /// </summary>
  489. internal static System.Drawing.Bitmap GBContent {
  490. get {
  491. object obj = ResourceManager.GetObject("GBContent", resourceCulture);
  492. return ((System.Drawing.Bitmap)(obj));
  493. }
  494. }
  495. /// <summary>
  496. /// Looks up a localized resource of type System.Drawing.Bitmap.
  497. /// </summary>
  498. internal static System.Drawing.Bitmap GBContent1 {
  499. get {
  500. object obj = ResourceManager.GetObject("GBContent1", resourceCulture);
  501. return ((System.Drawing.Bitmap)(obj));
  502. }
  503. }
  504. /// <summary>
  505. /// Looks up a localized resource of type System.Drawing.Bitmap.
  506. /// </summary>
  507. internal static System.Drawing.Bitmap goto16 {
  508. get {
  509. object obj = ResourceManager.GetObject("goto16", resourceCulture);
  510. return ((System.Drawing.Bitmap)(obj));
  511. }
  512. }
  513. /// <summary>
  514. /// Looks up a localized resource of type System.Drawing.Bitmap.
  515. /// </summary>
  516. internal static System.Drawing.Bitmap Hexagonal {
  517. get {
  518. object obj = ResourceManager.GetObject("Hexagonal", resourceCulture);
  519. return ((System.Drawing.Bitmap)(obj));
  520. }
  521. }
  522. /// <summary>
  523. /// Looks up a localized resource of type System.Drawing.Bitmap.
  524. /// </summary>
  525. internal static System.Drawing.Bitmap hilight16 {
  526. get {
  527. object obj = ResourceManager.GetObject("hilight16", resourceCulture);
  528. return ((System.Drawing.Bitmap)(obj));
  529. }
  530. }
  531. /// <summary>
  532. /// Looks up a localized resource of type System.Drawing.Bitmap.
  533. /// </summary>
  534. internal static System.Drawing.Bitmap indentdecrease16 {
  535. get {
  536. object obj = ResourceManager.GetObject("indentdecrease16", resourceCulture);
  537. return ((System.Drawing.Bitmap)(obj));
  538. }
  539. }
  540. /// <summary>
  541. /// Looks up a localized resource of type System.Drawing.Bitmap.
  542. /// </summary>
  543. internal static System.Drawing.Bitmap indentdecrease161 {
  544. get {
  545. object obj = ResourceManager.GetObject("indentdecrease161", resourceCulture);
  546. return ((System.Drawing.Bitmap)(obj));
  547. }
  548. }
  549. /// <summary>
  550. /// Looks up a localized resource of type System.Drawing.Bitmap.
  551. /// </summary>
  552. internal static System.Drawing.Bitmap indentincrease16 {
  553. get {
  554. object obj = ResourceManager.GetObject("indentincrease16", resourceCulture);
  555. return ((System.Drawing.Bitmap)(obj));
  556. }
  557. }
  558. /// <summary>
  559. /// Looks up a localized resource of type System.Drawing.Bitmap.
  560. /// </summary>
  561. internal static System.Drawing.Bitmap Inverse_Size_32 {
  562. get {
  563. object obj = ResourceManager.GetObject("Inverse_Size_32", resourceCulture);
  564. return ((System.Drawing.Bitmap)(obj));
  565. }
  566. }
  567. /// <summary>
  568. /// Looks up a localized resource of type System.Drawing.Bitmap.
  569. /// </summary>
  570. internal static System.Drawing.Bitmap invisiblechars16 {
  571. get {
  572. object obj = ResourceManager.GetObject("invisiblechars16", resourceCulture);
  573. return ((System.Drawing.Bitmap)(obj));
  574. }
  575. }
  576. /// <summary>
  577. /// Looks up a localized resource of type System.Drawing.Bitmap.
  578. /// </summary>
  579. internal static System.Drawing.Bitmap italic16 {
  580. get {
  581. object obj = ResourceManager.GetObject("italic16", resourceCulture);
  582. return ((System.Drawing.Bitmap)(obj));
  583. }
  584. }
  585. /// <summary>
  586. /// Looks up a localized resource of type System.Drawing.Bitmap.
  587. /// </summary>
  588. internal static System.Drawing.Bitmap logo_40 {
  589. get {
  590. object obj = ResourceManager.GetObject("logo_40", resourceCulture);
  591. return ((System.Drawing.Bitmap)(obj));
  592. }
  593. }
  594. /// <summary>
  595. /// Looks up a localized resource of type System.Drawing.Bitmap.
  596. /// </summary>
  597. internal static System.Drawing.Bitmap mate_Size_32 {
  598. get {
  599. object obj = ResourceManager.GetObject("mate_Size_32", resourceCulture);
  600. return ((System.Drawing.Bitmap)(obj));
  601. }
  602. }
  603. /// <summary>
  604. /// Looks up a localized resource of type System.Drawing.Bitmap.
  605. /// </summary>
  606. internal static System.Drawing.Bitmap Monoclinic {
  607. get {
  608. object obj = ResourceManager.GetObject("Monoclinic", resourceCulture);
  609. return ((System.Drawing.Bitmap)(obj));
  610. }
  611. }
  612. /// <summary>
  613. /// Looks up a localized resource of type System.Drawing.Bitmap.
  614. /// </summary>
  615. internal static System.Drawing.Bitmap Mouse {
  616. get {
  617. object obj = ResourceManager.GetObject("Mouse", resourceCulture);
  618. return ((System.Drawing.Bitmap)(obj));
  619. }
  620. }
  621. /// <summary>
  622. /// Looks up a localized resource of type System.Drawing.Bitmap.
  623. /// </summary>
  624. internal static System.Drawing.Bitmap multilevellist16 {
  625. get {
  626. object obj = ResourceManager.GetObject("multilevellist16", resourceCulture);
  627. return ((System.Drawing.Bitmap)(obj));
  628. }
  629. }
  630. /// <summary>
  631. /// Looks up a localized resource of type System.Drawing.Bitmap.
  632. /// </summary>
  633. internal static System.Drawing.Bitmap NewDocment {
  634. get {
  635. object obj = ResourceManager.GetObject("NewDocment", resourceCulture);
  636. return ((System.Drawing.Bitmap)(obj));
  637. }
  638. }
  639. /// <summary>
  640. /// Looks up a localized resource of type System.Drawing.Bitmap.
  641. /// </summary>
  642. internal static System.Drawing.Bitmap NewDocment1 {
  643. get {
  644. object obj = ResourceManager.GetObject("NewDocment1", resourceCulture);
  645. return ((System.Drawing.Bitmap)(obj));
  646. }
  647. }
  648. /// <summary>
  649. /// Looks up a localized resource of type System.Drawing.Bitmap.
  650. /// </summary>
  651. internal static System.Drawing.Bitmap newdocument32 {
  652. get {
  653. object obj = ResourceManager.GetObject("newdocument32", resourceCulture);
  654. return ((System.Drawing.Bitmap)(obj));
  655. }
  656. }
  657. /// <summary>
  658. /// Looks up a localized resource of type System.Drawing.Bitmap.
  659. /// </summary>
  660. internal static System.Drawing.Bitmap OK {
  661. get {
  662. object obj = ResourceManager.GetObject("OK", resourceCulture);
  663. return ((System.Drawing.Bitmap)(obj));
  664. }
  665. }
  666. /// <summary>
  667. /// Looks up a localized resource of type System.Drawing.Bitmap.
  668. /// </summary>
  669. internal static System.Drawing.Bitmap open_Size_32 {
  670. get {
  671. object obj = ResourceManager.GetObject("open_Size_32", resourceCulture);
  672. return ((System.Drawing.Bitmap)(obj));
  673. }
  674. }
  675. /// <summary>
  676. /// Looks up a localized resource of type System.Drawing.Bitmap.
  677. /// </summary>
  678. internal static System.Drawing.Bitmap open16 {
  679. get {
  680. object obj = ResourceManager.GetObject("open16", resourceCulture);
  681. return ((System.Drawing.Bitmap)(obj));
  682. }
  683. }
  684. /// <summary>
  685. /// Looks up a localized resource of type System.Drawing.Bitmap.
  686. /// </summary>
  687. internal static System.Drawing.Bitmap Open161 {
  688. get {
  689. object obj = ResourceManager.GetObject("Open161", resourceCulture);
  690. return ((System.Drawing.Bitmap)(obj));
  691. }
  692. }
  693. /// <summary>
  694. /// Looks up a localized resource of type System.Drawing.Bitmap.
  695. /// </summary>
  696. internal static System.Drawing.Bitmap open32 {
  697. get {
  698. object obj = ResourceManager.GetObject("open32", resourceCulture);
  699. return ((System.Drawing.Bitmap)(obj));
  700. }
  701. }
  702. /// <summary>
  703. /// Looks up a localized resource of type System.Drawing.Bitmap.
  704. /// </summary>
  705. internal static System.Drawing.Bitmap open321 {
  706. get {
  707. object obj = ResourceManager.GetObject("open321", resourceCulture);
  708. return ((System.Drawing.Bitmap)(obj));
  709. }
  710. }
  711. /// <summary>
  712. /// Looks up a localized resource of type System.Drawing.Bitmap.
  713. /// </summary>
  714. internal static System.Drawing.Bitmap options16 {
  715. get {
  716. object obj = ResourceManager.GetObject("options16", resourceCulture);
  717. return ((System.Drawing.Bitmap)(obj));
  718. }
  719. }
  720. /// <summary>
  721. /// Looks up a localized resource of type System.Drawing.Bitmap.
  722. /// </summary>
  723. internal static System.Drawing.Bitmap orderedlist16 {
  724. get {
  725. object obj = ResourceManager.GetObject("orderedlist16", resourceCulture);
  726. return ((System.Drawing.Bitmap)(obj));
  727. }
  728. }
  729. /// <summary>
  730. /// Looks up a localized resource of type System.Drawing.Bitmap.
  731. /// </summary>
  732. internal static System.Drawing.Bitmap orthohombic {
  733. get {
  734. object obj = ResourceManager.GetObject("orthohombic", resourceCulture);
  735. return ((System.Drawing.Bitmap)(obj));
  736. }
  737. }
  738. /// <summary>
  739. /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
  740. /// </summary>
  741. internal static System.Drawing.Icon OTSIncAReport {
  742. get {
  743. object obj = ResourceManager.GetObject("OTSIncAReport", resourceCulture);
  744. return ((System.Drawing.Icon)(obj));
  745. }
  746. }
  747. /// <summary>
  748. /// Looks up a localized resource of type System.Drawing.Bitmap.
  749. /// </summary>
  750. internal static System.Drawing.Bitmap pageblank16 {
  751. get {
  752. object obj = ResourceManager.GetObject("pageblank16", resourceCulture);
  753. return ((System.Drawing.Bitmap)(obj));
  754. }
  755. }
  756. /// <summary>
  757. /// Looks up a localized resource of type System.Drawing.Bitmap.
  758. /// </summary>
  759. internal static System.Drawing.Bitmap paragraphspacing16 {
  760. get {
  761. object obj = ResourceManager.GetObject("paragraphspacing16", resourceCulture);
  762. return ((System.Drawing.Bitmap)(obj));
  763. }
  764. }
  765. /// <summary>
  766. /// Looks up a localized resource of type System.Drawing.Bitmap.
  767. /// </summary>
  768. internal static System.Drawing.Bitmap paste16 {
  769. get {
  770. object obj = ResourceManager.GetObject("paste16", resourceCulture);
  771. return ((System.Drawing.Bitmap)(obj));
  772. }
  773. }
  774. /// <summary>
  775. /// Looks up a localized resource of type System.Drawing.Bitmap.
  776. /// </summary>
  777. internal static System.Drawing.Bitmap paste32 {
  778. get {
  779. object obj = ResourceManager.GetObject("paste32", resourceCulture);
  780. return ((System.Drawing.Bitmap)(obj));
  781. }
  782. }
  783. /// <summary>
  784. /// Looks up a localized resource of type System.Drawing.Bitmap.
  785. /// </summary>
  786. internal static System.Drawing.Bitmap paste321 {
  787. get {
  788. object obj = ResourceManager.GetObject("paste321", resourceCulture);
  789. return ((System.Drawing.Bitmap)(obj));
  790. }
  791. }
  792. /// <summary>
  793. /// Looks up a localized resource of type System.Drawing.Bitmap.
  794. /// </summary>
  795. internal static System.Drawing.Bitmap pastelink16 {
  796. get {
  797. object obj = ResourceManager.GetObject("pastelink16", resourceCulture);
  798. return ((System.Drawing.Bitmap)(obj));
  799. }
  800. }
  801. /// <summary>
  802. /// Looks up a localized resource of type System.Drawing.Bitmap.
  803. /// </summary>
  804. internal static System.Drawing.Bitmap pastespecial16 {
  805. get {
  806. object obj = ResourceManager.GetObject("pastespecial16", resourceCulture);
  807. return ((System.Drawing.Bitmap)(obj));
  808. }
  809. }
  810. /// <summary>
  811. /// Looks up a localized resource of type System.Drawing.Bitmap.
  812. /// </summary>
  813. internal static System.Drawing.Bitmap Polygon16 {
  814. get {
  815. object obj = ResourceManager.GetObject("Polygon16", resourceCulture);
  816. return ((System.Drawing.Bitmap)(obj));
  817. }
  818. }
  819. /// <summary>
  820. /// Looks up a localized resource of type System.Drawing.Bitmap.
  821. /// </summary>
  822. internal static System.Drawing.Bitmap Polygon161 {
  823. get {
  824. object obj = ResourceManager.GetObject("Polygon161", resourceCulture);
  825. return ((System.Drawing.Bitmap)(obj));
  826. }
  827. }
  828. /// <summary>
  829. /// Looks up a localized resource of type System.Drawing.Bitmap.
  830. /// </summary>
  831. internal static System.Drawing.Bitmap Polygon32 {
  832. get {
  833. object obj = ResourceManager.GetObject("Polygon32", resourceCulture);
  834. return ((System.Drawing.Bitmap)(obj));
  835. }
  836. }
  837. /// <summary>
  838. /// Looks up a localized resource of type System.Drawing.Bitmap.
  839. /// </summary>
  840. internal static System.Drawing.Bitmap Polygon321 {
  841. get {
  842. object obj = ResourceManager.GetObject("Polygon321", resourceCulture);
  843. return ((System.Drawing.Bitmap)(obj));
  844. }
  845. }
  846. /// <summary>
  847. /// Looks up a localized resource of type System.Drawing.Bitmap.
  848. /// </summary>
  849. internal static System.Drawing.Bitmap Power {
  850. get {
  851. object obj = ResourceManager.GetObject("Power", resourceCulture);
  852. return ((System.Drawing.Bitmap)(obj));
  853. }
  854. }
  855. /// <summary>
  856. /// Looks up a localized resource of type System.Drawing.Bitmap.
  857. /// </summary>
  858. internal static System.Drawing.Bitmap Prepare16 {
  859. get {
  860. object obj = ResourceManager.GetObject("Prepare16", resourceCulture);
  861. return ((System.Drawing.Bitmap)(obj));
  862. }
  863. }
  864. /// <summary>
  865. /// Looks up a localized resource of type System.Drawing.Bitmap.
  866. /// </summary>
  867. internal static System.Drawing.Bitmap prepare32 {
  868. get {
  869. object obj = ResourceManager.GetObject("prepare32", resourceCulture);
  870. return ((System.Drawing.Bitmap)(obj));
  871. }
  872. }
  873. /// <summary>
  874. /// Looks up a localized resource of type System.Drawing.Bitmap.
  875. /// </summary>
  876. internal static System.Drawing.Bitmap print32 {
  877. get {
  878. object obj = ResourceManager.GetObject("print32", resourceCulture);
  879. return ((System.Drawing.Bitmap)(obj));
  880. }
  881. }
  882. /// <summary>
  883. /// Looks up a localized resource of type System.Drawing.Bitmap.
  884. /// </summary>
  885. internal static System.Drawing.Bitmap print321 {
  886. get {
  887. object obj = ResourceManager.GetObject("print321", resourceCulture);
  888. return ((System.Drawing.Bitmap)(obj));
  889. }
  890. }
  891. /// <summary>
  892. /// Looks up a localized resource of type System.Drawing.Bitmap.
  893. /// </summary>
  894. internal static System.Drawing.Bitmap printpreview32 {
  895. get {
  896. object obj = ResourceManager.GetObject("printpreview32", resourceCulture);
  897. return ((System.Drawing.Bitmap)(obj));
  898. }
  899. }
  900. /// <summary>
  901. /// Looks up a localized resource of type System.Drawing.Bitmap.
  902. /// </summary>
  903. internal static System.Drawing.Bitmap printquick16 {
  904. get {
  905. object obj = ResourceManager.GetObject("printquick16", resourceCulture);
  906. return ((System.Drawing.Bitmap)(obj));
  907. }
  908. }
  909. /// <summary>
  910. /// Looks up a localized resource of type System.Drawing.Bitmap.
  911. /// </summary>
  912. internal static System.Drawing.Bitmap printquick32 {
  913. get {
  914. object obj = ResourceManager.GetObject("printquick32", resourceCulture);
  915. return ((System.Drawing.Bitmap)(obj));
  916. }
  917. }
  918. /// <summary>
  919. /// Looks up a localized resource of type System.Drawing.Bitmap.
  920. /// </summary>
  921. internal static System.Drawing.Bitmap publish32 {
  922. get {
  923. object obj = ResourceManager.GetObject("publish32", resourceCulture);
  924. return ((System.Drawing.Bitmap)(obj));
  925. }
  926. }
  927. /// <summary>
  928. /// Looks up a localized resource of type System.Drawing.Bitmap.
  929. /// </summary>
  930. internal static System.Drawing.Bitmap recover_Size_32 {
  931. get {
  932. object obj = ResourceManager.GetObject("recover_Size_32", resourceCulture);
  933. return ((System.Drawing.Bitmap)(obj));
  934. }
  935. }
  936. /// <summary>
  937. /// Looks up a localized resource of type System.Drawing.Bitmap.
  938. /// </summary>
  939. internal static System.Drawing.Bitmap Recover16 {
  940. get {
  941. object obj = ResourceManager.GetObject("Recover16", resourceCulture);
  942. return ((System.Drawing.Bitmap)(obj));
  943. }
  944. }
  945. /// <summary>
  946. /// Looks up a localized resource of type System.Drawing.Bitmap.
  947. /// </summary>
  948. internal static System.Drawing.Bitmap Recover161 {
  949. get {
  950. object obj = ResourceManager.GetObject("Recover161", resourceCulture);
  951. return ((System.Drawing.Bitmap)(obj));
  952. }
  953. }
  954. /// <summary>
  955. /// Looks up a localized resource of type System.Drawing.Bitmap.
  956. /// </summary>
  957. internal static System.Drawing.Bitmap Recover16new {
  958. get {
  959. object obj = ResourceManager.GetObject("Recover16new", resourceCulture);
  960. return ((System.Drawing.Bitmap)(obj));
  961. }
  962. }
  963. /// <summary>
  964. /// Looks up a localized resource of type System.Drawing.Bitmap.
  965. /// </summary>
  966. internal static System.Drawing.Bitmap Recover16new1 {
  967. get {
  968. object obj = ResourceManager.GetObject("Recover16new1", resourceCulture);
  969. return ((System.Drawing.Bitmap)(obj));
  970. }
  971. }
  972. /// <summary>
  973. /// Looks up a localized resource of type System.Drawing.Bitmap.
  974. /// </summary>
  975. internal static System.Drawing.Bitmap Recover32 {
  976. get {
  977. object obj = ResourceManager.GetObject("Recover32", resourceCulture);
  978. return ((System.Drawing.Bitmap)(obj));
  979. }
  980. }
  981. /// <summary>
  982. /// Looks up a localized resource of type System.Drawing.Bitmap.
  983. /// </summary>
  984. internal static System.Drawing.Bitmap Recover321 {
  985. get {
  986. object obj = ResourceManager.GetObject("Recover321", resourceCulture);
  987. return ((System.Drawing.Bitmap)(obj));
  988. }
  989. }
  990. /// <summary>
  991. /// Looks up a localized resource of type System.Drawing.Bitmap.
  992. /// </summary>
  993. internal static System.Drawing.Bitmap Recover32New {
  994. get {
  995. object obj = ResourceManager.GetObject("Recover32New", resourceCulture);
  996. return ((System.Drawing.Bitmap)(obj));
  997. }
  998. }
  999. /// <summary>
  1000. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1001. /// </summary>
  1002. internal static System.Drawing.Bitmap Recover32New1 {
  1003. get {
  1004. object obj = ResourceManager.GetObject("Recover32New1", resourceCulture);
  1005. return ((System.Drawing.Bitmap)(obj));
  1006. }
  1007. }
  1008. /// <summary>
  1009. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1010. /// </summary>
  1011. internal static System.Drawing.Bitmap rectangle_Size_32 {
  1012. get {
  1013. object obj = ResourceManager.GetObject("rectangle_Size_32", resourceCulture);
  1014. return ((System.Drawing.Bitmap)(obj));
  1015. }
  1016. }
  1017. /// <summary>
  1018. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1019. /// </summary>
  1020. internal static System.Drawing.Bitmap Rectangle16 {
  1021. get {
  1022. object obj = ResourceManager.GetObject("Rectangle16", resourceCulture);
  1023. return ((System.Drawing.Bitmap)(obj));
  1024. }
  1025. }
  1026. /// <summary>
  1027. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1028. /// </summary>
  1029. internal static System.Drawing.Bitmap Rectangle161 {
  1030. get {
  1031. object obj = ResourceManager.GetObject("Rectangle161", resourceCulture);
  1032. return ((System.Drawing.Bitmap)(obj));
  1033. }
  1034. }
  1035. /// <summary>
  1036. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1037. /// </summary>
  1038. internal static System.Drawing.Bitmap Rectangle32 {
  1039. get {
  1040. object obj = ResourceManager.GetObject("Rectangle32", resourceCulture);
  1041. return ((System.Drawing.Bitmap)(obj));
  1042. }
  1043. }
  1044. /// <summary>
  1045. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1046. /// </summary>
  1047. internal static System.Drawing.Bitmap Rectangle321 {
  1048. get {
  1049. object obj = ResourceManager.GetObject("Rectangle321", resourceCulture);
  1050. return ((System.Drawing.Bitmap)(obj));
  1051. }
  1052. }
  1053. /// <summary>
  1054. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1055. /// </summary>
  1056. internal static System.Drawing.Bitmap reform_Size_32 {
  1057. get {
  1058. object obj = ResourceManager.GetObject("reform_Size_32", resourceCulture);
  1059. return ((System.Drawing.Bitmap)(obj));
  1060. }
  1061. }
  1062. /// <summary>
  1063. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1064. /// </summary>
  1065. internal static System.Drawing.Bitmap Refresh_Size_32 {
  1066. get {
  1067. object obj = ResourceManager.GetObject("Refresh_Size_32", resourceCulture);
  1068. return ((System.Drawing.Bitmap)(obj));
  1069. }
  1070. }
  1071. /// <summary>
  1072. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1073. /// </summary>
  1074. internal static System.Drawing.Bitmap replace16 {
  1075. get {
  1076. object obj = ResourceManager.GetObject("replace16", resourceCulture);
  1077. return ((System.Drawing.Bitmap)(obj));
  1078. }
  1079. }
  1080. /// <summary>
  1081. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1082. /// </summary>
  1083. internal static System.Drawing.Bitmap Reset16 {
  1084. get {
  1085. object obj = ResourceManager.GetObject("Reset16", resourceCulture);
  1086. return ((System.Drawing.Bitmap)(obj));
  1087. }
  1088. }
  1089. /// <summary>
  1090. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1091. /// </summary>
  1092. internal static System.Drawing.Bitmap Reset161 {
  1093. get {
  1094. object obj = ResourceManager.GetObject("Reset161", resourceCulture);
  1095. return ((System.Drawing.Bitmap)(obj));
  1096. }
  1097. }
  1098. /// <summary>
  1099. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1100. /// </summary>
  1101. internal static System.Drawing.Bitmap Reset32 {
  1102. get {
  1103. object obj = ResourceManager.GetObject("Reset32", resourceCulture);
  1104. return ((System.Drawing.Bitmap)(obj));
  1105. }
  1106. }
  1107. /// <summary>
  1108. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1109. /// </summary>
  1110. internal static System.Drawing.Bitmap Reset321 {
  1111. get {
  1112. object obj = ResourceManager.GetObject("Reset321", resourceCulture);
  1113. return ((System.Drawing.Bitmap)(obj));
  1114. }
  1115. }
  1116. /// <summary>
  1117. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1118. /// </summary>
  1119. internal static System.Drawing.Bitmap rhombohedral {
  1120. get {
  1121. object obj = ResourceManager.GetObject("rhombohedral", resourceCulture);
  1122. return ((System.Drawing.Bitmap)(obj));
  1123. }
  1124. }
  1125. /// <summary>
  1126. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1127. /// </summary>
  1128. internal static System.Drawing.Bitmap ruler_Size_32 {
  1129. get {
  1130. object obj = ResourceManager.GetObject("ruler_Size_32", resourceCulture);
  1131. return ((System.Drawing.Bitmap)(obj));
  1132. }
  1133. }
  1134. /// <summary>
  1135. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1136. /// </summary>
  1137. internal static System.Drawing.Bitmap Ruler16 {
  1138. get {
  1139. object obj = ResourceManager.GetObject("Ruler16", resourceCulture);
  1140. return ((System.Drawing.Bitmap)(obj));
  1141. }
  1142. }
  1143. /// <summary>
  1144. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1145. /// </summary>
  1146. internal static System.Drawing.Bitmap Ruler161 {
  1147. get {
  1148. object obj = ResourceManager.GetObject("Ruler161", resourceCulture);
  1149. return ((System.Drawing.Bitmap)(obj));
  1150. }
  1151. }
  1152. /// <summary>
  1153. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1154. /// </summary>
  1155. internal static System.Drawing.Bitmap Ruler162 {
  1156. get {
  1157. object obj = ResourceManager.GetObject("Ruler162", resourceCulture);
  1158. return ((System.Drawing.Bitmap)(obj));
  1159. }
  1160. }
  1161. /// <summary>
  1162. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1163. /// </summary>
  1164. internal static System.Drawing.Bitmap Ruler32 {
  1165. get {
  1166. object obj = ResourceManager.GetObject("Ruler32", resourceCulture);
  1167. return ((System.Drawing.Bitmap)(obj));
  1168. }
  1169. }
  1170. /// <summary>
  1171. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1172. /// </summary>
  1173. internal static System.Drawing.Bitmap Ruler321 {
  1174. get {
  1175. object obj = ResourceManager.GetObject("Ruler321", resourceCulture);
  1176. return ((System.Drawing.Bitmap)(obj));
  1177. }
  1178. }
  1179. /// <summary>
  1180. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1181. /// </summary>
  1182. internal static System.Drawing.Bitmap save_Size_32 {
  1183. get {
  1184. object obj = ResourceManager.GetObject("save_Size_32", resourceCulture);
  1185. return ((System.Drawing.Bitmap)(obj));
  1186. }
  1187. }
  1188. /// <summary>
  1189. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1190. /// </summary>
  1191. internal static System.Drawing.Bitmap save16 {
  1192. get {
  1193. object obj = ResourceManager.GetObject("save16", resourceCulture);
  1194. return ((System.Drawing.Bitmap)(obj));
  1195. }
  1196. }
  1197. /// <summary>
  1198. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1199. /// </summary>
  1200. internal static System.Drawing.Bitmap Save161 {
  1201. get {
  1202. object obj = ResourceManager.GetObject("Save161", resourceCulture);
  1203. return ((System.Drawing.Bitmap)(obj));
  1204. }
  1205. }
  1206. /// <summary>
  1207. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1208. /// </summary>
  1209. internal static System.Drawing.Bitmap save32 {
  1210. get {
  1211. object obj = ResourceManager.GetObject("save32", resourceCulture);
  1212. return ((System.Drawing.Bitmap)(obj));
  1213. }
  1214. }
  1215. /// <summary>
  1216. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1217. /// </summary>
  1218. internal static System.Drawing.Bitmap saveAs_Size_32 {
  1219. get {
  1220. object obj = ResourceManager.GetObject("saveAs_Size_32", resourceCulture);
  1221. return ((System.Drawing.Bitmap)(obj));
  1222. }
  1223. }
  1224. /// <summary>
  1225. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1226. /// </summary>
  1227. internal static System.Drawing.Bitmap SaveAs16 {
  1228. get {
  1229. object obj = ResourceManager.GetObject("SaveAs16", resourceCulture);
  1230. return ((System.Drawing.Bitmap)(obj));
  1231. }
  1232. }
  1233. /// <summary>
  1234. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1235. /// </summary>
  1236. internal static System.Drawing.Bitmap saveas32 {
  1237. get {
  1238. object obj = ResourceManager.GetObject("saveas32", resourceCulture);
  1239. return ((System.Drawing.Bitmap)(obj));
  1240. }
  1241. }
  1242. /// <summary>
  1243. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1244. /// </summary>
  1245. internal static System.Drawing.Bitmap saveas321 {
  1246. get {
  1247. object obj = ResourceManager.GetObject("saveas321", resourceCulture);
  1248. return ((System.Drawing.Bitmap)(obj));
  1249. }
  1250. }
  1251. /// <summary>
  1252. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1253. /// </summary>
  1254. internal static System.Drawing.Bitmap select16 {
  1255. get {
  1256. object obj = ResourceManager.GetObject("select16", resourceCulture);
  1257. return ((System.Drawing.Bitmap)(obj));
  1258. }
  1259. }
  1260. /// <summary>
  1261. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1262. /// </summary>
  1263. internal static System.Drawing.Bitmap sem16 {
  1264. get {
  1265. object obj = ResourceManager.GetObject("sem16", resourceCulture);
  1266. return ((System.Drawing.Bitmap)(obj));
  1267. }
  1268. }
  1269. /// <summary>
  1270. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1271. /// </summary>
  1272. internal static System.Drawing.Bitmap sem161 {
  1273. get {
  1274. object obj = ResourceManager.GetObject("sem161", resourceCulture);
  1275. return ((System.Drawing.Bitmap)(obj));
  1276. }
  1277. }
  1278. /// <summary>
  1279. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1280. /// </summary>
  1281. internal static System.Drawing.Bitmap sem162 {
  1282. get {
  1283. object obj = ResourceManager.GetObject("sem162", resourceCulture);
  1284. return ((System.Drawing.Bitmap)(obj));
  1285. }
  1286. }
  1287. /// <summary>
  1288. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1289. /// </summary>
  1290. internal static System.Drawing.Bitmap sem32 {
  1291. get {
  1292. object obj = ResourceManager.GetObject("sem32", resourceCulture);
  1293. return ((System.Drawing.Bitmap)(obj));
  1294. }
  1295. }
  1296. /// <summary>
  1297. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1298. /// </summary>
  1299. internal static System.Drawing.Bitmap sem321 {
  1300. get {
  1301. object obj = ResourceManager.GetObject("sem321", resourceCulture);
  1302. return ((System.Drawing.Bitmap)(obj));
  1303. }
  1304. }
  1305. /// <summary>
  1306. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1307. /// </summary>
  1308. internal static System.Drawing.Bitmap send32 {
  1309. get {
  1310. object obj = ResourceManager.GetObject("send32", resourceCulture);
  1311. return ((System.Drawing.Bitmap)(obj));
  1312. }
  1313. }
  1314. /// <summary>
  1315. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1316. /// </summary>
  1317. internal static System.Drawing.Bitmap set16 {
  1318. get {
  1319. object obj = ResourceManager.GetObject("set16", resourceCulture);
  1320. return ((System.Drawing.Bitmap)(obj));
  1321. }
  1322. }
  1323. /// <summary>
  1324. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1325. /// </summary>
  1326. internal static System.Drawing.Bitmap set161 {
  1327. get {
  1328. object obj = ResourceManager.GetObject("set161", resourceCulture);
  1329. return ((System.Drawing.Bitmap)(obj));
  1330. }
  1331. }
  1332. /// <summary>
  1333. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1334. /// </summary>
  1335. internal static System.Drawing.Bitmap set32 {
  1336. get {
  1337. object obj = ResourceManager.GetObject("set32", resourceCulture);
  1338. return ((System.Drawing.Bitmap)(obj));
  1339. }
  1340. }
  1341. /// <summary>
  1342. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1343. /// </summary>
  1344. internal static System.Drawing.Bitmap set321 {
  1345. get {
  1346. object obj = ResourceManager.GetObject("set321", resourceCulture);
  1347. return ((System.Drawing.Bitmap)(obj));
  1348. }
  1349. }
  1350. /// <summary>
  1351. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1352. /// </summary>
  1353. internal static System.Drawing.Bitmap single_Size_32 {
  1354. get {
  1355. object obj = ResourceManager.GetObject("single_Size_32", resourceCulture);
  1356. return ((System.Drawing.Bitmap)(obj));
  1357. }
  1358. }
  1359. /// <summary>
  1360. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1361. /// </summary>
  1362. internal static System.Drawing.Bitmap SmapleName16 {
  1363. get {
  1364. object obj = ResourceManager.GetObject("SmapleName16", resourceCulture);
  1365. return ((System.Drawing.Bitmap)(obj));
  1366. }
  1367. }
  1368. /// <summary>
  1369. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1370. /// </summary>
  1371. internal static System.Drawing.Bitmap SmapleName161 {
  1372. get {
  1373. object obj = ResourceManager.GetObject("SmapleName161", resourceCulture);
  1374. return ((System.Drawing.Bitmap)(obj));
  1375. }
  1376. }
  1377. /// <summary>
  1378. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1379. /// </summary>
  1380. internal static System.Drawing.Bitmap SmapleName32 {
  1381. get {
  1382. object obj = ResourceManager.GetObject("SmapleName32", resourceCulture);
  1383. return ((System.Drawing.Bitmap)(obj));
  1384. }
  1385. }
  1386. /// <summary>
  1387. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1388. /// </summary>
  1389. internal static System.Drawing.Bitmap SmapleName321 {
  1390. get {
  1391. object obj = ResourceManager.GetObject("SmapleName321", resourceCulture);
  1392. return ((System.Drawing.Bitmap)(obj));
  1393. }
  1394. }
  1395. /// <summary>
  1396. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1397. /// </summary>
  1398. internal static System.Drawing.Bitmap SmaplePhoto16 {
  1399. get {
  1400. object obj = ResourceManager.GetObject("SmaplePhoto16", resourceCulture);
  1401. return ((System.Drawing.Bitmap)(obj));
  1402. }
  1403. }
  1404. /// <summary>
  1405. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1406. /// </summary>
  1407. internal static System.Drawing.Bitmap SmaplePhoto161 {
  1408. get {
  1409. object obj = ResourceManager.GetObject("SmaplePhoto161", resourceCulture);
  1410. return ((System.Drawing.Bitmap)(obj));
  1411. }
  1412. }
  1413. /// <summary>
  1414. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1415. /// </summary>
  1416. internal static System.Drawing.Bitmap SmaplePhoto32 {
  1417. get {
  1418. object obj = ResourceManager.GetObject("SmaplePhoto32", resourceCulture);
  1419. return ((System.Drawing.Bitmap)(obj));
  1420. }
  1421. }
  1422. /// <summary>
  1423. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1424. /// </summary>
  1425. internal static System.Drawing.Bitmap SmaplePhoto321 {
  1426. get {
  1427. object obj = ResourceManager.GetObject("SmaplePhoto321", resourceCulture);
  1428. return ((System.Drawing.Bitmap)(obj));
  1429. }
  1430. }
  1431. /// <summary>
  1432. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1433. /// </summary>
  1434. internal static System.Drawing.Bitmap sort16 {
  1435. get {
  1436. object obj = ResourceManager.GetObject("sort16", resourceCulture);
  1437. return ((System.Drawing.Bitmap)(obj));
  1438. }
  1439. }
  1440. /// <summary>
  1441. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1442. /// </summary>
  1443. internal static System.Drawing.Bitmap start16 {
  1444. get {
  1445. object obj = ResourceManager.GetObject("start16", resourceCulture);
  1446. return ((System.Drawing.Bitmap)(obj));
  1447. }
  1448. }
  1449. /// <summary>
  1450. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1451. /// </summary>
  1452. internal static System.Drawing.Bitmap start161 {
  1453. get {
  1454. object obj = ResourceManager.GetObject("start161", resourceCulture);
  1455. return ((System.Drawing.Bitmap)(obj));
  1456. }
  1457. }
  1458. /// <summary>
  1459. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1460. /// </summary>
  1461. internal static System.Drawing.Bitmap start32 {
  1462. get {
  1463. object obj = ResourceManager.GetObject("start32", resourceCulture);
  1464. return ((System.Drawing.Bitmap)(obj));
  1465. }
  1466. }
  1467. /// <summary>
  1468. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1469. /// </summary>
  1470. internal static System.Drawing.Bitmap start321 {
  1471. get {
  1472. object obj = ResourceManager.GetObject("start321", resourceCulture);
  1473. return ((System.Drawing.Bitmap)(obj));
  1474. }
  1475. }
  1476. /// <summary>
  1477. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1478. /// </summary>
  1479. internal static System.Drawing.Bitmap stop16 {
  1480. get {
  1481. object obj = ResourceManager.GetObject("stop16", resourceCulture);
  1482. return ((System.Drawing.Bitmap)(obj));
  1483. }
  1484. }
  1485. /// <summary>
  1486. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1487. /// </summary>
  1488. internal static System.Drawing.Bitmap stop161 {
  1489. get {
  1490. object obj = ResourceManager.GetObject("stop161", resourceCulture);
  1491. return ((System.Drawing.Bitmap)(obj));
  1492. }
  1493. }
  1494. /// <summary>
  1495. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1496. /// </summary>
  1497. internal static System.Drawing.Bitmap stop32 {
  1498. get {
  1499. object obj = ResourceManager.GetObject("stop32", resourceCulture);
  1500. return ((System.Drawing.Bitmap)(obj));
  1501. }
  1502. }
  1503. /// <summary>
  1504. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1505. /// </summary>
  1506. internal static System.Drawing.Bitmap stop321 {
  1507. get {
  1508. object obj = ResourceManager.GetObject("stop321", resourceCulture);
  1509. return ((System.Drawing.Bitmap)(obj));
  1510. }
  1511. }
  1512. /// <summary>
  1513. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1514. /// </summary>
  1515. internal static System.Drawing.Bitmap strikethru16 {
  1516. get {
  1517. object obj = ResourceManager.GetObject("strikethru16", resourceCulture);
  1518. return ((System.Drawing.Bitmap)(obj));
  1519. }
  1520. }
  1521. /// <summary>
  1522. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1523. /// </summary>
  1524. internal static System.Drawing.Bitmap style16 {
  1525. get {
  1526. object obj = ResourceManager.GetObject("style16", resourceCulture);
  1527. return ((System.Drawing.Bitmap)(obj));
  1528. }
  1529. }
  1530. /// <summary>
  1531. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1532. /// </summary>
  1533. internal static System.Drawing.Bitmap stylechange32 {
  1534. get {
  1535. object obj = ResourceManager.GetObject("stylechange32", resourceCulture);
  1536. return ((System.Drawing.Bitmap)(obj));
  1537. }
  1538. }
  1539. /// <summary>
  1540. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1541. /// </summary>
  1542. internal static System.Drawing.Bitmap styleset16 {
  1543. get {
  1544. object obj = ResourceManager.GetObject("styleset16", resourceCulture);
  1545. return ((System.Drawing.Bitmap)(obj));
  1546. }
  1547. }
  1548. /// <summary>
  1549. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1550. /// </summary>
  1551. internal static System.Drawing.Bitmap subindex16 {
  1552. get {
  1553. object obj = ResourceManager.GetObject("subindex16", resourceCulture);
  1554. return ((System.Drawing.Bitmap)(obj));
  1555. }
  1556. }
  1557. /// <summary>
  1558. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1559. /// </summary>
  1560. internal static System.Drawing.Bitmap superindex16 {
  1561. get {
  1562. object obj = ResourceManager.GetObject("superindex16", resourceCulture);
  1563. return ((System.Drawing.Bitmap)(obj));
  1564. }
  1565. }
  1566. /// <summary>
  1567. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1568. /// </summary>
  1569. internal static System.Drawing.Bitmap teragonal {
  1570. get {
  1571. object obj = ResourceManager.GetObject("teragonal", resourceCulture);
  1572. return ((System.Drawing.Bitmap)(obj));
  1573. }
  1574. }
  1575. /// <summary>
  1576. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1577. /// </summary>
  1578. internal static System.Drawing.Bitmap test16 {
  1579. get {
  1580. object obj = ResourceManager.GetObject("test16", resourceCulture);
  1581. return ((System.Drawing.Bitmap)(obj));
  1582. }
  1583. }
  1584. /// <summary>
  1585. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1586. /// </summary>
  1587. internal static System.Drawing.Bitmap test161 {
  1588. get {
  1589. object obj = ResourceManager.GetObject("test161", resourceCulture);
  1590. return ((System.Drawing.Bitmap)(obj));
  1591. }
  1592. }
  1593. /// <summary>
  1594. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1595. /// </summary>
  1596. internal static System.Drawing.Bitmap test32 {
  1597. get {
  1598. object obj = ResourceManager.GetObject("test32", resourceCulture);
  1599. return ((System.Drawing.Bitmap)(obj));
  1600. }
  1601. }
  1602. /// <summary>
  1603. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1604. /// </summary>
  1605. internal static System.Drawing.Bitmap test321 {
  1606. get {
  1607. object obj = ResourceManager.GetObject("test321", resourceCulture);
  1608. return ((System.Drawing.Bitmap)(obj));
  1609. }
  1610. }
  1611. /// <summary>
  1612. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1613. /// </summary>
  1614. internal static System.Drawing.Bitmap textaligncenter16 {
  1615. get {
  1616. object obj = ResourceManager.GetObject("textaligncenter16", resourceCulture);
  1617. return ((System.Drawing.Bitmap)(obj));
  1618. }
  1619. }
  1620. /// <summary>
  1621. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1622. /// </summary>
  1623. internal static System.Drawing.Bitmap textalignjustify16 {
  1624. get {
  1625. object obj = ResourceManager.GetObject("textalignjustify16", resourceCulture);
  1626. return ((System.Drawing.Bitmap)(obj));
  1627. }
  1628. }
  1629. /// <summary>
  1630. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1631. /// </summary>
  1632. internal static System.Drawing.Bitmap textalignleft16 {
  1633. get {
  1634. object obj = ResourceManager.GetObject("textalignleft16", resourceCulture);
  1635. return ((System.Drawing.Bitmap)(obj));
  1636. }
  1637. }
  1638. /// <summary>
  1639. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1640. /// </summary>
  1641. internal static System.Drawing.Bitmap textalignright16 {
  1642. get {
  1643. object obj = ResourceManager.GetObject("textalignright16", resourceCulture);
  1644. return ((System.Drawing.Bitmap)(obj));
  1645. }
  1646. }
  1647. /// <summary>
  1648. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1649. /// </summary>
  1650. internal static System.Drawing.Bitmap themefont {
  1651. get {
  1652. object obj = ResourceManager.GetObject("themefont", resourceCulture);
  1653. return ((System.Drawing.Bitmap)(obj));
  1654. }
  1655. }
  1656. /// <summary>
  1657. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1658. /// </summary>
  1659. internal static System.Drawing.Bitmap toopstripbackimage {
  1660. get {
  1661. object obj = ResourceManager.GetObject("toopstripbackimage", resourceCulture);
  1662. return ((System.Drawing.Bitmap)(obj));
  1663. }
  1664. }
  1665. /// <summary>
  1666. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1667. /// </summary>
  1668. internal static System.Drawing.Bitmap underline16 {
  1669. get {
  1670. object obj = ResourceManager.GetObject("underline16", resourceCulture);
  1671. return ((System.Drawing.Bitmap)(obj));
  1672. }
  1673. }
  1674. /// <summary>
  1675. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1676. /// </summary>
  1677. internal static System.Drawing.Bitmap undo16 {
  1678. get {
  1679. object obj = ResourceManager.GetObject("undo16", resourceCulture);
  1680. return ((System.Drawing.Bitmap)(obj));
  1681. }
  1682. }
  1683. /// <summary>
  1684. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1685. /// </summary>
  1686. internal static System.Drawing.Bitmap unorderedlist16 {
  1687. get {
  1688. object obj = ResourceManager.GetObject("unorderedlist16", resourceCulture);
  1689. return ((System.Drawing.Bitmap)(obj));
  1690. }
  1691. }
  1692. /// <summary>
  1693. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1694. /// </summary>
  1695. internal static System.Drawing.Bitmap witdh_Size_32 {
  1696. get {
  1697. object obj = ResourceManager.GetObject("witdh_Size_32", resourceCulture);
  1698. return ((System.Drawing.Bitmap)(obj));
  1699. }
  1700. }
  1701. /// <summary>
  1702. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1703. /// </summary>
  1704. internal static System.Drawing.Bitmap word2003doc32 {
  1705. get {
  1706. object obj = ResourceManager.GetObject("word2003doc32", resourceCulture);
  1707. return ((System.Drawing.Bitmap)(obj));
  1708. }
  1709. }
  1710. /// <summary>
  1711. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1712. /// </summary>
  1713. internal static System.Drawing.Bitmap worddocument32 {
  1714. get {
  1715. object obj = ResourceManager.GetObject("worddocument32", resourceCulture);
  1716. return ((System.Drawing.Bitmap)(obj));
  1717. }
  1718. }
  1719. /// <summary>
  1720. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1721. /// </summary>
  1722. internal static System.Drawing.Bitmap wordtemplate32 {
  1723. get {
  1724. object obj = ResourceManager.GetObject("wordtemplate32", resourceCulture);
  1725. return ((System.Drawing.Bitmap)(obj));
  1726. }
  1727. }
  1728. /// <summary>
  1729. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1730. /// </summary>
  1731. internal static System.Drawing.Bitmap 三元相图 {
  1732. get {
  1733. object obj = ResourceManager.GetObject("三元相图", resourceCulture);
  1734. return ((System.Drawing.Bitmap)(obj));
  1735. }
  1736. }
  1737. /// <summary>
  1738. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1739. /// </summary>
  1740. internal static System.Drawing.Bitmap 三元相图一排三个 {
  1741. get {
  1742. object obj = ResourceManager.GetObject("三元相图一排三个", resourceCulture);
  1743. return ((System.Drawing.Bitmap)(obj));
  1744. }
  1745. }
  1746. /// <summary>
  1747. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1748. /// </summary>
  1749. internal static System.Drawing.Bitmap 三元相图一排三个加备注 {
  1750. get {
  1751. object obj = ResourceManager.GetObject("三元相图一排三个加备注", resourceCulture);
  1752. return ((System.Drawing.Bitmap)(obj));
  1753. }
  1754. }
  1755. /// <summary>
  1756. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1757. /// </summary>
  1758. internal static System.Drawing.Bitmap 三元相图模板图 {
  1759. get {
  1760. object obj = ResourceManager.GetObject("三元相图模板图", resourceCulture);
  1761. return ((System.Drawing.Bitmap)(obj));
  1762. }
  1763. }
  1764. /// <summary>
  1765. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1766. /// </summary>
  1767. internal static System.Drawing.Bitmap 三元相图第二页备注 {
  1768. get {
  1769. object obj = ResourceManager.GetObject("三元相图第二页备注", resourceCulture);
  1770. return ((System.Drawing.Bitmap)(obj));
  1771. }
  1772. }
  1773. /// <summary>
  1774. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1775. /// </summary>
  1776. internal static System.Drawing.Bitmap 保存 {
  1777. get {
  1778. object obj = ResourceManager.GetObject("保存", resourceCulture);
  1779. return ((System.Drawing.Bitmap)(obj));
  1780. }
  1781. }
  1782. /// <summary>
  1783. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1784. /// </summary>
  1785. internal static System.Drawing.Bitmap 保存1 {
  1786. get {
  1787. object obj = ResourceManager.GetObject("保存1", resourceCulture);
  1788. return ((System.Drawing.Bitmap)(obj));
  1789. }
  1790. }
  1791. /// <summary>
  1792. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1793. /// </summary>
  1794. internal static System.Drawing.Bitmap 保存16 {
  1795. get {
  1796. object obj = ResourceManager.GetObject("保存16", resourceCulture);
  1797. return ((System.Drawing.Bitmap)(obj));
  1798. }
  1799. }
  1800. /// <summary>
  1801. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1802. /// </summary>
  1803. internal static System.Drawing.Bitmap 保存2 {
  1804. get {
  1805. object obj = ResourceManager.GetObject("保存2", resourceCulture);
  1806. return ((System.Drawing.Bitmap)(obj));
  1807. }
  1808. }
  1809. /// <summary>
  1810. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1811. /// </summary>
  1812. internal static System.Drawing.Bitmap 保存3 {
  1813. get {
  1814. object obj = ResourceManager.GetObject("保存3", resourceCulture);
  1815. return ((System.Drawing.Bitmap)(obj));
  1816. }
  1817. }
  1818. /// <summary>
  1819. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1820. /// </summary>
  1821. internal static System.Drawing.Bitmap 保存4 {
  1822. get {
  1823. object obj = ResourceManager.GetObject("保存4", resourceCulture);
  1824. return ((System.Drawing.Bitmap)(obj));
  1825. }
  1826. }
  1827. /// <summary>
  1828. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1829. /// </summary>
  1830. internal static System.Drawing.Bitmap 元素分析表 {
  1831. get {
  1832. object obj = ResourceManager.GetObject("元素分析表", resourceCulture);
  1833. return ((System.Drawing.Bitmap)(obj));
  1834. }
  1835. }
  1836. /// <summary>
  1837. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1838. /// </summary>
  1839. internal static System.Drawing.Bitmap 元素成分图 {
  1840. get {
  1841. object obj = ResourceManager.GetObject("元素成分图", resourceCulture);
  1842. return ((System.Drawing.Bitmap)(obj));
  1843. }
  1844. }
  1845. /// <summary>
  1846. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1847. /// </summary>
  1848. internal static System.Drawing.Bitmap 元素成分图加备注 {
  1849. get {
  1850. object obj = ResourceManager.GetObject("元素成分图加备注", resourceCulture);
  1851. return ((System.Drawing.Bitmap)(obj));
  1852. }
  1853. }
  1854. /// <summary>
  1855. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1856. /// </summary>
  1857. internal static System.Drawing.Bitmap 全图匹配 {
  1858. get {
  1859. object obj = ResourceManager.GetObject("全图匹配", resourceCulture);
  1860. return ((System.Drawing.Bitmap)(obj));
  1861. }
  1862. }
  1863. /// <summary>
  1864. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1865. /// </summary>
  1866. internal static System.Drawing.Bitmap 全图匹配1 {
  1867. get {
  1868. object obj = ResourceManager.GetObject("全图匹配1", resourceCulture);
  1869. return ((System.Drawing.Bitmap)(obj));
  1870. }
  1871. }
  1872. /// <summary>
  1873. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1874. /// </summary>
  1875. internal static System.Drawing.Bitmap 全图匹配32 {
  1876. get {
  1877. object obj = ResourceManager.GetObject("全图匹配32", resourceCulture);
  1878. return ((System.Drawing.Bitmap)(obj));
  1879. }
  1880. }
  1881. /// <summary>
  1882. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1883. /// </summary>
  1884. internal static System.Drawing.Bitmap 删除颗粒 {
  1885. get {
  1886. object obj = ResourceManager.GetObject("删除颗粒", resourceCulture);
  1887. return ((System.Drawing.Bitmap)(obj));
  1888. }
  1889. }
  1890. /// <summary>
  1891. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1892. /// </summary>
  1893. internal static System.Drawing.Bitmap 反选 {
  1894. get {
  1895. object obj = ResourceManager.GetObject("反选", resourceCulture);
  1896. return ((System.Drawing.Bitmap)(obj));
  1897. }
  1898. }
  1899. /// <summary>
  1900. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1901. /// </summary>
  1902. internal static System.Drawing.Bitmap 反选1 {
  1903. get {
  1904. object obj = ResourceManager.GetObject("反选1", resourceCulture);
  1905. return ((System.Drawing.Bitmap)(obj));
  1906. }
  1907. }
  1908. /// <summary>
  1909. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1910. /// </summary>
  1911. internal static System.Drawing.Bitmap 反选16 {
  1912. get {
  1913. object obj = ResourceManager.GetObject("反选16", resourceCulture);
  1914. return ((System.Drawing.Bitmap)(obj));
  1915. }
  1916. }
  1917. /// <summary>
  1918. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1919. /// </summary>
  1920. internal static System.Drawing.Bitmap 反选32 {
  1921. get {
  1922. object obj = ResourceManager.GetObject("反选32", resourceCulture);
  1923. return ((System.Drawing.Bitmap)(obj));
  1924. }
  1925. }
  1926. /// <summary>
  1927. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1928. /// </summary>
  1929. internal static System.Drawing.Bitmap 取消 {
  1930. get {
  1931. object obj = ResourceManager.GetObject("取消", resourceCulture);
  1932. return ((System.Drawing.Bitmap)(obj));
  1933. }
  1934. }
  1935. /// <summary>
  1936. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1937. /// </summary>
  1938. internal static System.Drawing.Bitmap 取消1 {
  1939. get {
  1940. object obj = ResourceManager.GetObject("取消1", resourceCulture);
  1941. return ((System.Drawing.Bitmap)(obj));
  1942. }
  1943. }
  1944. /// <summary>
  1945. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1946. /// </summary>
  1947. internal static System.Drawing.Bitmap 取消16 {
  1948. get {
  1949. object obj = ResourceManager.GetObject("取消16", resourceCulture);
  1950. return ((System.Drawing.Bitmap)(obj));
  1951. }
  1952. }
  1953. /// <summary>
  1954. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1955. /// </summary>
  1956. internal static System.Drawing.Bitmap 取消32 {
  1957. get {
  1958. object obj = ResourceManager.GetObject("取消32", resourceCulture);
  1959. return ((System.Drawing.Bitmap)(obj));
  1960. }
  1961. }
  1962. /// <summary>
  1963. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1964. /// </summary>
  1965. internal static System.Drawing.Bitmap 取消删除 {
  1966. get {
  1967. object obj = ResourceManager.GetObject("取消删除", resourceCulture);
  1968. return ((System.Drawing.Bitmap)(obj));
  1969. }
  1970. }
  1971. /// <summary>
  1972. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1973. /// </summary>
  1974. internal static System.Drawing.Bitmap 取消删除1 {
  1975. get {
  1976. object obj = ResourceManager.GetObject("取消删除1", resourceCulture);
  1977. return ((System.Drawing.Bitmap)(obj));
  1978. }
  1979. }
  1980. /// <summary>
  1981. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1982. /// </summary>
  1983. internal static System.Drawing.Bitmap 取消删除16 {
  1984. get {
  1985. object obj = ResourceManager.GetObject("取消删除16", resourceCulture);
  1986. return ((System.Drawing.Bitmap)(obj));
  1987. }
  1988. }
  1989. /// <summary>
  1990. /// Looks up a localized resource of type System.Drawing.Bitmap.
  1991. /// </summary>
  1992. internal static System.Drawing.Bitmap 取消删除32 {
  1993. get {
  1994. object obj = ResourceManager.GetObject("取消删除32", resourceCulture);
  1995. return ((System.Drawing.Bitmap)(obj));
  1996. }
  1997. }
  1998. /// <summary>
  1999. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2000. /// </summary>
  2001. internal static System.Drawing.Bitmap 另存为 {
  2002. get {
  2003. object obj = ResourceManager.GetObject("另存为", resourceCulture);
  2004. return ((System.Drawing.Bitmap)(obj));
  2005. }
  2006. }
  2007. /// <summary>
  2008. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2009. /// </summary>
  2010. internal static System.Drawing.Bitmap 另存为1 {
  2011. get {
  2012. object obj = ResourceManager.GetObject("另存为1", resourceCulture);
  2013. return ((System.Drawing.Bitmap)(obj));
  2014. }
  2015. }
  2016. /// <summary>
  2017. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2018. /// </summary>
  2019. internal static System.Drawing.Bitmap 另存为16 {
  2020. get {
  2021. object obj = ResourceManager.GetObject("另存为16", resourceCulture);
  2022. return ((System.Drawing.Bitmap)(obj));
  2023. }
  2024. }
  2025. /// <summary>
  2026. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2027. /// </summary>
  2028. internal static System.Drawing.Bitmap 另存为2 {
  2029. get {
  2030. object obj = ResourceManager.GetObject("另存为2", resourceCulture);
  2031. return ((System.Drawing.Bitmap)(obj));
  2032. }
  2033. }
  2034. /// <summary>
  2035. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2036. /// </summary>
  2037. internal static System.Drawing.Bitmap 另存为3 {
  2038. get {
  2039. object obj = ResourceManager.GetObject("另存为3", resourceCulture);
  2040. return ((System.Drawing.Bitmap)(obj));
  2041. }
  2042. }
  2043. /// <summary>
  2044. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2045. /// </summary>
  2046. internal static System.Drawing.Bitmap 国标一32 {
  2047. get {
  2048. object obj = ResourceManager.GetObject("国标一32", resourceCulture);
  2049. return ((System.Drawing.Bitmap)(obj));
  2050. }
  2051. }
  2052. /// <summary>
  2053. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2054. /// </summary>
  2055. internal static System.Drawing.Bitmap 国标二32 {
  2056. get {
  2057. object obj = ResourceManager.GetObject("国标二32", resourceCulture);
  2058. return ((System.Drawing.Bitmap)(obj));
  2059. }
  2060. }
  2061. /// <summary>
  2062. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2063. /// </summary>
  2064. internal static System.Drawing.Bitmap 圆形 {
  2065. get {
  2066. object obj = ResourceManager.GetObject("圆形", resourceCulture);
  2067. return ((System.Drawing.Bitmap)(obj));
  2068. }
  2069. }
  2070. /// <summary>
  2071. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2072. /// </summary>
  2073. internal static System.Drawing.Bitmap 圆形1 {
  2074. get {
  2075. object obj = ResourceManager.GetObject("圆形1", resourceCulture);
  2076. return ((System.Drawing.Bitmap)(obj));
  2077. }
  2078. }
  2079. /// <summary>
  2080. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2081. /// </summary>
  2082. internal static System.Drawing.Bitmap 圆形16 {
  2083. get {
  2084. object obj = ResourceManager.GetObject("圆形16", resourceCulture);
  2085. return ((System.Drawing.Bitmap)(obj));
  2086. }
  2087. }
  2088. /// <summary>
  2089. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2090. /// </summary>
  2091. internal static System.Drawing.Bitmap 圆形32 {
  2092. get {
  2093. object obj = ResourceManager.GetObject("圆形32", resourceCulture);
  2094. return ((System.Drawing.Bitmap)(obj));
  2095. }
  2096. }
  2097. /// <summary>
  2098. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2099. /// </summary>
  2100. internal static System.Drawing.Bitmap 复制 {
  2101. get {
  2102. object obj = ResourceManager.GetObject("复制", resourceCulture);
  2103. return ((System.Drawing.Bitmap)(obj));
  2104. }
  2105. }
  2106. /// <summary>
  2107. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2108. /// </summary>
  2109. internal static System.Drawing.Bitmap 复制1 {
  2110. get {
  2111. object obj = ResourceManager.GetObject("复制1", resourceCulture);
  2112. return ((System.Drawing.Bitmap)(obj));
  2113. }
  2114. }
  2115. /// <summary>
  2116. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2117. /// </summary>
  2118. internal static System.Drawing.Bitmap 复制16 {
  2119. get {
  2120. object obj = ResourceManager.GetObject("复制16", resourceCulture);
  2121. return ((System.Drawing.Bitmap)(obj));
  2122. }
  2123. }
  2124. /// <summary>
  2125. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2126. /// </summary>
  2127. internal static System.Drawing.Bitmap 复制32 {
  2128. get {
  2129. object obj = ResourceManager.GetObject("复制32", resourceCulture);
  2130. return ((System.Drawing.Bitmap)(obj));
  2131. }
  2132. }
  2133. /// <summary>
  2134. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2135. /// </summary>
  2136. internal static System.Drawing.Bitmap 复制全部 {
  2137. get {
  2138. object obj = ResourceManager.GetObject("复制全部", resourceCulture);
  2139. return ((System.Drawing.Bitmap)(obj));
  2140. }
  2141. }
  2142. /// <summary>
  2143. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2144. /// </summary>
  2145. internal static System.Drawing.Bitmap 复制全部1 {
  2146. get {
  2147. object obj = ResourceManager.GetObject("复制全部1", resourceCulture);
  2148. return ((System.Drawing.Bitmap)(obj));
  2149. }
  2150. }
  2151. /// <summary>
  2152. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2153. /// </summary>
  2154. internal static System.Drawing.Bitmap 复制全部16 {
  2155. get {
  2156. object obj = ResourceManager.GetObject("复制全部16", resourceCulture);
  2157. return ((System.Drawing.Bitmap)(obj));
  2158. }
  2159. }
  2160. /// <summary>
  2161. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2162. /// </summary>
  2163. internal static System.Drawing.Bitmap 复制全部32 {
  2164. get {
  2165. object obj = ResourceManager.GetObject("复制全部32", resourceCulture);
  2166. return ((System.Drawing.Bitmap)(obj));
  2167. }
  2168. }
  2169. /// <summary>
  2170. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2171. /// </summary>
  2172. internal static System.Drawing.Bitmap 复制图像 {
  2173. get {
  2174. object obj = ResourceManager.GetObject("复制图像", resourceCulture);
  2175. return ((System.Drawing.Bitmap)(obj));
  2176. }
  2177. }
  2178. /// <summary>
  2179. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2180. /// </summary>
  2181. internal static System.Drawing.Bitmap 宽度匹配 {
  2182. get {
  2183. object obj = ResourceManager.GetObject("宽度匹配", resourceCulture);
  2184. return ((System.Drawing.Bitmap)(obj));
  2185. }
  2186. }
  2187. /// <summary>
  2188. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2189. /// </summary>
  2190. internal static System.Drawing.Bitmap 宽度匹配1 {
  2191. get {
  2192. object obj = ResourceManager.GetObject("宽度匹配1", resourceCulture);
  2193. return ((System.Drawing.Bitmap)(obj));
  2194. }
  2195. }
  2196. /// <summary>
  2197. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2198. /// </summary>
  2199. internal static System.Drawing.Bitmap 宽度匹配32 {
  2200. get {
  2201. object obj = ResourceManager.GetObject("宽度匹配32", resourceCulture);
  2202. return ((System.Drawing.Bitmap)(obj));
  2203. }
  2204. }
  2205. /// <summary>
  2206. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2207. /// </summary>
  2208. internal static System.Drawing.Bitmap 导出 {
  2209. get {
  2210. object obj = ResourceManager.GetObject("导出", resourceCulture);
  2211. return ((System.Drawing.Bitmap)(obj));
  2212. }
  2213. }
  2214. /// <summary>
  2215. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2216. /// </summary>
  2217. internal static System.Drawing.Bitmap 导出所有数据到EXCEL16 {
  2218. get {
  2219. object obj = ResourceManager.GetObject("导出所有数据到EXCEL16", resourceCulture);
  2220. return ((System.Drawing.Bitmap)(obj));
  2221. }
  2222. }
  2223. /// <summary>
  2224. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2225. /// </summary>
  2226. internal static System.Drawing.Bitmap 导出所有数据到EXCEL32 {
  2227. get {
  2228. object obj = ResourceManager.GetObject("导出所有数据到EXCEL32", resourceCulture);
  2229. return ((System.Drawing.Bitmap)(obj));
  2230. }
  2231. }
  2232. /// <summary>
  2233. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2234. /// </summary>
  2235. internal static System.Drawing.Bitmap 导出所有数据到EXCEL321 {
  2236. get {
  2237. object obj = ResourceManager.GetObject("导出所有数据到EXCEL321", resourceCulture);
  2238. return ((System.Drawing.Bitmap)(obj));
  2239. }
  2240. }
  2241. /// <summary>
  2242. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2243. /// </summary>
  2244. internal static System.Drawing.Bitmap 帧图边框 {
  2245. get {
  2246. object obj = ResourceManager.GetObject("帧图边框", resourceCulture);
  2247. return ((System.Drawing.Bitmap)(obj));
  2248. }
  2249. }
  2250. /// <summary>
  2251. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2252. /// </summary>
  2253. internal static System.Drawing.Bitmap 帧图边框32 {
  2254. get {
  2255. object obj = ResourceManager.GetObject("帧图边框32", resourceCulture);
  2256. return ((System.Drawing.Bitmap)(obj));
  2257. }
  2258. }
  2259. /// <summary>
  2260. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2261. /// </summary>
  2262. internal static System.Drawing.Bitmap 常用夹杂物分类 {
  2263. get {
  2264. object obj = ResourceManager.GetObject("常用夹杂物分类", resourceCulture);
  2265. return ((System.Drawing.Bitmap)(obj));
  2266. }
  2267. }
  2268. /// <summary>
  2269. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2270. /// </summary>
  2271. internal static System.Drawing.Bitmap 恢复 {
  2272. get {
  2273. object obj = ResourceManager.GetObject("恢复", resourceCulture);
  2274. return ((System.Drawing.Bitmap)(obj));
  2275. }
  2276. }
  2277. /// <summary>
  2278. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2279. /// </summary>
  2280. internal static System.Drawing.Bitmap 恢复32 {
  2281. get {
  2282. object obj = ResourceManager.GetObject("恢复32", resourceCulture);
  2283. return ((System.Drawing.Bitmap)(obj));
  2284. }
  2285. }
  2286. /// <summary>
  2287. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2288. /// </summary>
  2289. internal static System.Drawing.Bitmap 打开 {
  2290. get {
  2291. object obj = ResourceManager.GetObject("打开", resourceCulture);
  2292. return ((System.Drawing.Bitmap)(obj));
  2293. }
  2294. }
  2295. /// <summary>
  2296. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2297. /// </summary>
  2298. internal static System.Drawing.Bitmap 打开1 {
  2299. get {
  2300. object obj = ResourceManager.GetObject("打开1", resourceCulture);
  2301. return ((System.Drawing.Bitmap)(obj));
  2302. }
  2303. }
  2304. /// <summary>
  2305. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2306. /// </summary>
  2307. internal static System.Drawing.Bitmap 打开32 {
  2308. get {
  2309. object obj = ResourceManager.GetObject("打开32", resourceCulture);
  2310. return ((System.Drawing.Bitmap)(obj));
  2311. }
  2312. }
  2313. /// <summary>
  2314. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2315. /// </summary>
  2316. internal static System.Drawing.Bitmap 报表首页加样品说明 {
  2317. get {
  2318. object obj = ResourceManager.GetObject("报表首页加样品说明", resourceCulture);
  2319. return ((System.Drawing.Bitmap)(obj));
  2320. }
  2321. }
  2322. /// <summary>
  2323. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2324. /// </summary>
  2325. internal static System.Drawing.Bitmap 报表首页空白 {
  2326. get {
  2327. object obj = ResourceManager.GetObject("报表首页空白", resourceCulture);
  2328. return ((System.Drawing.Bitmap)(obj));
  2329. }
  2330. }
  2331. /// <summary>
  2332. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2333. /// </summary>
  2334. internal static System.Drawing.Bitmap 放大图像2 {
  2335. get {
  2336. object obj = ResourceManager.GetObject("放大图像2", resourceCulture);
  2337. return ((System.Drawing.Bitmap)(obj));
  2338. }
  2339. }
  2340. /// <summary>
  2341. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2342. /// </summary>
  2343. internal static System.Drawing.Bitmap 新建 {
  2344. get {
  2345. object obj = ResourceManager.GetObject("新建", resourceCulture);
  2346. return ((System.Drawing.Bitmap)(obj));
  2347. }
  2348. }
  2349. /// <summary>
  2350. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2351. /// </summary>
  2352. internal static System.Drawing.Bitmap 新建1 {
  2353. get {
  2354. object obj = ResourceManager.GetObject("新建1", resourceCulture);
  2355. return ((System.Drawing.Bitmap)(obj));
  2356. }
  2357. }
  2358. /// <summary>
  2359. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2360. /// </summary>
  2361. internal static System.Drawing.Bitmap 新建16 {
  2362. get {
  2363. object obj = ResourceManager.GetObject("新建16", resourceCulture);
  2364. return ((System.Drawing.Bitmap)(obj));
  2365. }
  2366. }
  2367. /// <summary>
  2368. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2369. /// </summary>
  2370. internal static System.Drawing.Bitmap 新建2 {
  2371. get {
  2372. object obj = ResourceManager.GetObject("新建2", resourceCulture);
  2373. return ((System.Drawing.Bitmap)(obj));
  2374. }
  2375. }
  2376. /// <summary>
  2377. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2378. /// </summary>
  2379. internal static System.Drawing.Bitmap 新建3 {
  2380. get {
  2381. object obj = ResourceManager.GetObject("新建3", resourceCulture);
  2382. return ((System.Drawing.Bitmap)(obj));
  2383. }
  2384. }
  2385. /// <summary>
  2386. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2387. /// </summary>
  2388. internal static System.Drawing.Bitmap 显示数据 {
  2389. get {
  2390. object obj = ResourceManager.GetObject("显示数据", resourceCulture);
  2391. return ((System.Drawing.Bitmap)(obj));
  2392. }
  2393. }
  2394. /// <summary>
  2395. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2396. /// </summary>
  2397. internal static System.Drawing.Bitmap 显示数据1 {
  2398. get {
  2399. object obj = ResourceManager.GetObject("显示数据1", resourceCulture);
  2400. return ((System.Drawing.Bitmap)(obj));
  2401. }
  2402. }
  2403. /// <summary>
  2404. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2405. /// </summary>
  2406. internal static System.Drawing.Bitmap 标尺 {
  2407. get {
  2408. object obj = ResourceManager.GetObject("标尺", resourceCulture);
  2409. return ((System.Drawing.Bitmap)(obj));
  2410. }
  2411. }
  2412. /// <summary>
  2413. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2414. /// </summary>
  2415. internal static System.Drawing.Bitmap 标尺32 {
  2416. get {
  2417. object obj = ResourceManager.GetObject("标尺32", resourceCulture);
  2418. return ((System.Drawing.Bitmap)(obj));
  2419. }
  2420. }
  2421. /// <summary>
  2422. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2423. /// </summary>
  2424. internal static System.Drawing.Bitmap 矩形 {
  2425. get {
  2426. object obj = ResourceManager.GetObject("矩形", resourceCulture);
  2427. return ((System.Drawing.Bitmap)(obj));
  2428. }
  2429. }
  2430. /// <summary>
  2431. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2432. /// </summary>
  2433. internal static System.Drawing.Bitmap 矩形1 {
  2434. get {
  2435. object obj = ResourceManager.GetObject("矩形1", resourceCulture);
  2436. return ((System.Drawing.Bitmap)(obj));
  2437. }
  2438. }
  2439. /// <summary>
  2440. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2441. /// </summary>
  2442. internal static System.Drawing.Bitmap 矩形16 {
  2443. get {
  2444. object obj = ResourceManager.GetObject("矩形16", resourceCulture);
  2445. return ((System.Drawing.Bitmap)(obj));
  2446. }
  2447. }
  2448. /// <summary>
  2449. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2450. /// </summary>
  2451. internal static System.Drawing.Bitmap 矩形161 {
  2452. get {
  2453. object obj = ResourceManager.GetObject("矩形161", resourceCulture);
  2454. return ((System.Drawing.Bitmap)(obj));
  2455. }
  2456. }
  2457. /// <summary>
  2458. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2459. /// </summary>
  2460. internal static System.Drawing.Bitmap 矩形32 {
  2461. get {
  2462. object obj = ResourceManager.GetObject("矩形32", resourceCulture);
  2463. return ((System.Drawing.Bitmap)(obj));
  2464. }
  2465. }
  2466. /// <summary>
  2467. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2468. /// </summary>
  2469. internal static System.Drawing.Bitmap 移动SEM到当前位置 {
  2470. get {
  2471. object obj = ResourceManager.GetObject("移动SEM到当前位置", resourceCulture);
  2472. return ((System.Drawing.Bitmap)(obj));
  2473. }
  2474. }
  2475. /// <summary>
  2476. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2477. /// </summary>
  2478. internal static System.Drawing.Bitmap 空白 {
  2479. get {
  2480. object obj = ResourceManager.GetObject("空白", resourceCulture);
  2481. return ((System.Drawing.Bitmap)(obj));
  2482. }
  2483. }
  2484. /// <summary>
  2485. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2486. /// </summary>
  2487. internal static System.Drawing.Bitmap 编辑 {
  2488. get {
  2489. object obj = ResourceManager.GetObject("编辑", resourceCulture);
  2490. return ((System.Drawing.Bitmap)(obj));
  2491. }
  2492. }
  2493. /// <summary>
  2494. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2495. /// </summary>
  2496. internal static System.Drawing.Bitmap 设置颗粒 {
  2497. get {
  2498. object obj = ResourceManager.GetObject("设置颗粒", resourceCulture);
  2499. return ((System.Drawing.Bitmap)(obj));
  2500. }
  2501. }
  2502. /// <summary>
  2503. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2504. /// </summary>
  2505. internal static System.Drawing.Bitmap 输出 {
  2506. get {
  2507. object obj = ResourceManager.GetObject("输出", resourceCulture);
  2508. return ((System.Drawing.Bitmap)(obj));
  2509. }
  2510. }
  2511. /// <summary>
  2512. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2513. /// </summary>
  2514. internal static System.Drawing.Bitmap 输出1 {
  2515. get {
  2516. object obj = ResourceManager.GetObject("输出1", resourceCulture);
  2517. return ((System.Drawing.Bitmap)(obj));
  2518. }
  2519. }
  2520. /// <summary>
  2521. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2522. /// </summary>
  2523. internal static System.Drawing.Bitmap 输出16 {
  2524. get {
  2525. object obj = ResourceManager.GetObject("输出16", resourceCulture);
  2526. return ((System.Drawing.Bitmap)(obj));
  2527. }
  2528. }
  2529. /// <summary>
  2530. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2531. /// </summary>
  2532. internal static System.Drawing.Bitmap 输出2 {
  2533. get {
  2534. object obj = ResourceManager.GetObject("输出2", resourceCulture);
  2535. return ((System.Drawing.Bitmap)(obj));
  2536. }
  2537. }
  2538. /// <summary>
  2539. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2540. /// </summary>
  2541. internal static System.Drawing.Bitmap 选择颗粒 {
  2542. get {
  2543. object obj = ResourceManager.GetObject("选择颗粒", resourceCulture);
  2544. return ((System.Drawing.Bitmap)(obj));
  2545. }
  2546. }
  2547. /// <summary>
  2548. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2549. /// </summary>
  2550. internal static System.Drawing.Bitmap 选择颗粒1 {
  2551. get {
  2552. object obj = ResourceManager.GetObject("选择颗粒1", resourceCulture);
  2553. return ((System.Drawing.Bitmap)(obj));
  2554. }
  2555. }
  2556. /// <summary>
  2557. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2558. /// </summary>
  2559. internal static System.Drawing.Bitmap 重做删除 {
  2560. get {
  2561. object obj = ResourceManager.GetObject("重做删除", resourceCulture);
  2562. return ((System.Drawing.Bitmap)(obj));
  2563. }
  2564. }
  2565. /// <summary>
  2566. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2567. /// </summary>
  2568. internal static System.Drawing.Bitmap 重做删除1 {
  2569. get {
  2570. object obj = ResourceManager.GetObject("重做删除1", resourceCulture);
  2571. return ((System.Drawing.Bitmap)(obj));
  2572. }
  2573. }
  2574. /// <summary>
  2575. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2576. /// </summary>
  2577. internal static System.Drawing.Bitmap 重做删除16 {
  2578. get {
  2579. object obj = ResourceManager.GetObject("重做删除16", resourceCulture);
  2580. return ((System.Drawing.Bitmap)(obj));
  2581. }
  2582. }
  2583. /// <summary>
  2584. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2585. /// </summary>
  2586. internal static System.Drawing.Bitmap 重做删除32 {
  2587. get {
  2588. object obj = ResourceManager.GetObject("重做删除32", resourceCulture);
  2589. return ((System.Drawing.Bitmap)(obj));
  2590. }
  2591. }
  2592. /// <summary>
  2593. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2594. /// </summary>
  2595. internal static System.Drawing.Bitmap 重新分类 {
  2596. get {
  2597. object obj = ResourceManager.GetObject("重新分类", resourceCulture);
  2598. return ((System.Drawing.Bitmap)(obj));
  2599. }
  2600. }
  2601. /// <summary>
  2602. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2603. /// </summary>
  2604. internal static System.Drawing.Bitmap 重新分类32 {
  2605. get {
  2606. object obj = ResourceManager.GetObject("重新分类32", resourceCulture);
  2607. return ((System.Drawing.Bitmap)(obj));
  2608. }
  2609. }
  2610. /// <summary>
  2611. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2612. /// </summary>
  2613. internal static System.Drawing.Bitmap 颗粒列表 {
  2614. get {
  2615. object obj = ResourceManager.GetObject("颗粒列表", resourceCulture);
  2616. return ((System.Drawing.Bitmap)(obj));
  2617. }
  2618. }
  2619. /// <summary>
  2620. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2621. /// </summary>
  2622. internal static System.Drawing.Bitmap 颗粒列表不显示原图 {
  2623. get {
  2624. object obj = ResourceManager.GetObject("颗粒列表不显示原图", resourceCulture);
  2625. return ((System.Drawing.Bitmap)(obj));
  2626. }
  2627. }
  2628. /// <summary>
  2629. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2630. /// </summary>
  2631. internal static System.Drawing.Bitmap 颗粒列表不显示原图不显示能谱显示放大图 {
  2632. get {
  2633. object obj = ResourceManager.GetObject("颗粒列表不显示原图不显示能谱显示放大图", resourceCulture);
  2634. return ((System.Drawing.Bitmap)(obj));
  2635. }
  2636. }
  2637. /// <summary>
  2638. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2639. /// </summary>
  2640. internal static System.Drawing.Bitmap 颗粒列表不显示原图和放大图显示能谱图 {
  2641. get {
  2642. object obj = ResourceManager.GetObject("颗粒列表不显示原图和放大图显示能谱图", resourceCulture);
  2643. return ((System.Drawing.Bitmap)(obj));
  2644. }
  2645. }
  2646. /// <summary>
  2647. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2648. /// </summary>
  2649. internal static System.Drawing.Bitmap 颗粒列表不显示原图显示放大图和能谱图 {
  2650. get {
  2651. object obj = ResourceManager.GetObject("颗粒列表不显示原图显示放大图和能谱图", resourceCulture);
  2652. return ((System.Drawing.Bitmap)(obj));
  2653. }
  2654. }
  2655. /// <summary>
  2656. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2657. /// </summary>
  2658. internal static System.Drawing.Bitmap 颗粒列表不显示放大图 {
  2659. get {
  2660. object obj = ResourceManager.GetObject("颗粒列表不显示放大图", resourceCulture);
  2661. return ((System.Drawing.Bitmap)(obj));
  2662. }
  2663. }
  2664. /// <summary>
  2665. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2666. /// </summary>
  2667. internal static System.Drawing.Bitmap 颗粒列表不显示放大图不显示能谱显示原图 {
  2668. get {
  2669. object obj = ResourceManager.GetObject("颗粒列表不显示放大图不显示能谱显示原图", resourceCulture);
  2670. return ((System.Drawing.Bitmap)(obj));
  2671. }
  2672. }
  2673. /// <summary>
  2674. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2675. /// </summary>
  2676. internal static System.Drawing.Bitmap 颗粒列表不显示放大图显示原图和能谱图 {
  2677. get {
  2678. object obj = ResourceManager.GetObject("颗粒列表不显示放大图显示原图和能谱图", resourceCulture);
  2679. return ((System.Drawing.Bitmap)(obj));
  2680. }
  2681. }
  2682. /// <summary>
  2683. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2684. /// </summary>
  2685. internal static System.Drawing.Bitmap 颗粒列表不显示能谱图 {
  2686. get {
  2687. object obj = ResourceManager.GetObject("颗粒列表不显示能谱图", resourceCulture);
  2688. return ((System.Drawing.Bitmap)(obj));
  2689. }
  2690. }
  2691. /// <summary>
  2692. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2693. /// </summary>
  2694. internal static System.Drawing.Bitmap 颗粒列表不显示能谱显示原图和放大图 {
  2695. get {
  2696. object obj = ResourceManager.GetObject("颗粒列表不显示能谱显示原图和放大图", resourceCulture);
  2697. return ((System.Drawing.Bitmap)(obj));
  2698. }
  2699. }
  2700. /// <summary>
  2701. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2702. /// </summary>
  2703. internal static System.Drawing.Bitmap 颗粒列表显示无 {
  2704. get {
  2705. object obj = ResourceManager.GetObject("颗粒列表显示无", resourceCulture);
  2706. return ((System.Drawing.Bitmap)(obj));
  2707. }
  2708. }
  2709. /// <summary>
  2710. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2711. /// </summary>
  2712. internal static System.Drawing.Bitmap 颗粒列表第二页备注 {
  2713. get {
  2714. object obj = ResourceManager.GetObject("颗粒列表第二页备注", resourceCulture);
  2715. return ((System.Drawing.Bitmap)(obj));
  2716. }
  2717. }
  2718. /// <summary>
  2719. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2720. /// </summary>
  2721. internal static System.Drawing.Bitmap 颗粒尺寸分析结果 {
  2722. get {
  2723. object obj = ResourceManager.GetObject("颗粒尺寸分析结果", resourceCulture);
  2724. return ((System.Drawing.Bitmap)(obj));
  2725. }
  2726. }
  2727. /// <summary>
  2728. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2729. /// </summary>
  2730. internal static System.Drawing.Bitmap 颗粒成分图 {
  2731. get {
  2732. object obj = ResourceManager.GetObject("颗粒成分图", resourceCulture);
  2733. return ((System.Drawing.Bitmap)(obj));
  2734. }
  2735. }
  2736. /// <summary>
  2737. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2738. /// </summary>
  2739. internal static System.Drawing.Bitmap 颗粒成分图加备注 {
  2740. get {
  2741. object obj = ResourceManager.GetObject("颗粒成分图加备注", resourceCulture);
  2742. return ((System.Drawing.Bitmap)(obj));
  2743. }
  2744. }
  2745. /// <summary>
  2746. /// Looks up a localized resource of type System.Drawing.Bitmap.
  2747. /// </summary>
  2748. internal static System.Drawing.Bitmap 首页 {
  2749. get {
  2750. object obj = ResourceManager.GetObject("首页", resourceCulture);
  2751. return ((System.Drawing.Bitmap)(obj));
  2752. }
  2753. }
  2754. }
  2755. }