PictureEditorAdvancedForm.Designer.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class PictureEditorAdvancedForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.btnOK = new System.Windows.Forms.Button();
  30. this.btnCancel = new System.Windows.Forms.Button();
  31. this.panelBottom = new System.Windows.Forms.Panel();
  32. this.btnReset = new System.Windows.Forms.Button();
  33. this.panelTop = new System.Windows.Forms.Panel();
  34. this.gbColor = new System.Windows.Forms.GroupBox();
  35. this.rbGrayscale = new System.Windows.Forms.RadioButton();
  36. this.rbMonochrome = new System.Windows.Forms.RadioButton();
  37. this.rbNone = new System.Windows.Forms.RadioButton();
  38. this.gbCrop = new System.Windows.Forms.GroupBox();
  39. this.nudBottom = new System.Windows.Forms.NumericUpDown();
  40. this.nudRight = new System.Windows.Forms.NumericUpDown();
  41. this.nudLeft = new System.Windows.Forms.NumericUpDown();
  42. this.label4 = new System.Windows.Forms.Label();
  43. this.label3 = new System.Windows.Forms.Label();
  44. this.label2 = new System.Windows.Forms.Label();
  45. this.label1 = new System.Windows.Forms.Label();
  46. this.nudTop = new System.Windows.Forms.NumericUpDown();
  47. this.lblChange2 = new System.Windows.Forms.Label();
  48. this.rbPixelsCrop = new System.Windows.Forms.RadioButton();
  49. this.rbPercentCrop = new System.Windows.Forms.RadioButton();
  50. this.gbResize = new System.Windows.Forms.GroupBox();
  51. this.nudHor = new System.Windows.Forms.NumericUpDown();
  52. this.cbAspectRatio = new System.Windows.Forms.CheckBox();
  53. this.lblHor = new System.Windows.Forms.Label();
  54. this.lblChange = new System.Windows.Forms.Label();
  55. this.nudVer = new System.Windows.Forms.NumericUpDown();
  56. this.lblVer = new System.Windows.Forms.Label();
  57. this.rbPixelsResize = new System.Windows.Forms.RadioButton();
  58. this.rbPercentResize = new System.Windows.Forms.RadioButton();
  59. this.panelMiddle = new System.Windows.Forms.Panel();
  60. this.pictureBox = new System.Windows.Forms.PictureBox();
  61. this.statusBar = new System.Windows.Forms.StatusStrip();
  62. this.panelBottom.SuspendLayout();
  63. this.panelTop.SuspendLayout();
  64. this.gbColor.SuspendLayout();
  65. this.gbCrop.SuspendLayout();
  66. ((System.ComponentModel.ISupportInitialize)(this.nudBottom)).BeginInit();
  67. ((System.ComponentModel.ISupportInitialize)(this.nudRight)).BeginInit();
  68. ((System.ComponentModel.ISupportInitialize)(this.nudLeft)).BeginInit();
  69. ((System.ComponentModel.ISupportInitialize)(this.nudTop)).BeginInit();
  70. this.gbResize.SuspendLayout();
  71. ((System.ComponentModel.ISupportInitialize)(this.nudHor)).BeginInit();
  72. ((System.ComponentModel.ISupportInitialize)(this.nudVer)).BeginInit();
  73. this.panelMiddle.SuspendLayout();
  74. ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
  75. this.SuspendLayout();
  76. //
  77. // btnOK
  78. //
  79. this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  80. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  81. this.btnOK.Location = new System.Drawing.Point(470, 13);
  82. this.btnOK.Name = "btnOK";
  83. this.btnOK.Size = new System.Drawing.Size(75, 23);
  84. this.btnOK.TabIndex = 9;
  85. this.btnOK.Text = "OK";
  86. this.btnOK.UseVisualStyleBackColor = true;
  87. //
  88. // btnCancel
  89. //
  90. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  91. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  92. this.btnCancel.Location = new System.Drawing.Point(659, 13);
  93. this.btnCancel.Name = "btnCancel";
  94. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  95. this.btnCancel.TabIndex = 10;
  96. this.btnCancel.Text = "Cancel";
  97. this.btnCancel.UseVisualStyleBackColor = true;
  98. //
  99. // panelBottom
  100. //
  101. this.panelBottom.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  102. this.panelBottom.Controls.Add(this.btnReset);
  103. this.panelBottom.Controls.Add(this.btnOK);
  104. this.panelBottom.Controls.Add(this.btnCancel);
  105. this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  106. this.panelBottom.Location = new System.Drawing.Point(0, 499);
  107. this.panelBottom.Name = "panelBottom";
  108. this.panelBottom.Size = new System.Drawing.Size(746, 48);
  109. this.panelBottom.TabIndex = 11;
  110. //
  111. // btnReset
  112. //
  113. this.btnReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  114. this.btnReset.Location = new System.Drawing.Point(551, 13);
  115. this.btnReset.Name = "btnReset";
  116. this.btnReset.Size = new System.Drawing.Size(102, 23);
  117. this.btnReset.TabIndex = 11;
  118. this.btnReset.Text = "Reset";
  119. this.btnReset.UseVisualStyleBackColor = true;
  120. this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
  121. //
  122. // panelTop
  123. //
  124. this.panelTop.AutoScroll = true;
  125. this.panelTop.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  126. this.panelTop.Controls.Add(this.gbColor);
  127. this.panelTop.Controls.Add(this.gbCrop);
  128. this.panelTop.Controls.Add(this.gbResize);
  129. this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
  130. this.panelTop.Location = new System.Drawing.Point(0, 0);
  131. this.panelTop.Name = "panelTop";
  132. this.panelTop.Size = new System.Drawing.Size(746, 175);
  133. this.panelTop.TabIndex = 12;
  134. //
  135. // gbColor
  136. //
  137. this.gbColor.Controls.Add(this.rbGrayscale);
  138. this.gbColor.Controls.Add(this.rbMonochrome);
  139. this.gbColor.Controls.Add(this.rbNone);
  140. this.gbColor.Location = new System.Drawing.Point(554, 12);
  141. this.gbColor.Name = "gbColor";
  142. this.gbColor.Padding = new System.Windows.Forms.Padding(10);
  143. this.gbColor.Size = new System.Drawing.Size(180, 146);
  144. this.gbColor.TabIndex = 19;
  145. this.gbColor.TabStop = false;
  146. this.gbColor.Text = "Color";
  147. //
  148. // rbGrayscale
  149. //
  150. this.rbGrayscale.AutoSize = true;
  151. this.rbGrayscale.Location = new System.Drawing.Point(13, 46);
  152. this.rbGrayscale.Name = "rbGrayscale";
  153. this.rbGrayscale.Size = new System.Drawing.Size(72, 17);
  154. this.rbGrayscale.TabIndex = 2;
  155. this.rbGrayscale.Text = "Grayscale";
  156. this.rbGrayscale.UseVisualStyleBackColor = true;
  157. this.rbGrayscale.CheckedChanged += new System.EventHandler(this.rbNone_CheckedChanged);
  158. //
  159. // rbMonochrome
  160. //
  161. this.rbMonochrome.AutoSize = true;
  162. this.rbMonochrome.Location = new System.Drawing.Point(13, 69);
  163. this.rbMonochrome.Name = "rbMonochrome";
  164. this.rbMonochrome.Size = new System.Drawing.Size(86, 17);
  165. this.rbMonochrome.TabIndex = 1;
  166. this.rbMonochrome.Text = "Monochrome";
  167. this.rbMonochrome.UseVisualStyleBackColor = true;
  168. this.rbMonochrome.CheckedChanged += new System.EventHandler(this.rbNone_CheckedChanged);
  169. //
  170. // rbNone
  171. //
  172. this.rbNone.AutoSize = true;
  173. this.rbNone.Checked = true;
  174. this.rbNone.Location = new System.Drawing.Point(13, 23);
  175. this.rbNone.Name = "rbNone";
  176. this.rbNone.Size = new System.Drawing.Size(50, 17);
  177. this.rbNone.TabIndex = 0;
  178. this.rbNone.TabStop = true;
  179. this.rbNone.Text = "None";
  180. this.rbNone.UseVisualStyleBackColor = true;
  181. this.rbNone.CheckedChanged += new System.EventHandler(this.rbNone_CheckedChanged);
  182. //
  183. // gbCrop
  184. //
  185. this.gbCrop.Controls.Add(this.nudBottom);
  186. this.gbCrop.Controls.Add(this.nudRight);
  187. this.gbCrop.Controls.Add(this.nudLeft);
  188. this.gbCrop.Controls.Add(this.label4);
  189. this.gbCrop.Controls.Add(this.label3);
  190. this.gbCrop.Controls.Add(this.label2);
  191. this.gbCrop.Controls.Add(this.label1);
  192. this.gbCrop.Controls.Add(this.nudTop);
  193. this.gbCrop.Controls.Add(this.lblChange2);
  194. this.gbCrop.Controls.Add(this.rbPixelsCrop);
  195. this.gbCrop.Controls.Add(this.rbPercentCrop);
  196. this.gbCrop.Location = new System.Drawing.Point(283, 12);
  197. this.gbCrop.Name = "gbCrop";
  198. this.gbCrop.Padding = new System.Windows.Forms.Padding(10);
  199. this.gbCrop.Size = new System.Drawing.Size(265, 146);
  200. this.gbCrop.TabIndex = 18;
  201. this.gbCrop.TabStop = false;
  202. this.gbCrop.Text = "Crop";
  203. //
  204. // nudBottom
  205. //
  206. this.nudBottom.Location = new System.Drawing.Point(100, 115);
  207. this.nudBottom.Name = "nudBottom";
  208. this.nudBottom.Size = new System.Drawing.Size(62, 20);
  209. this.nudBottom.TabIndex = 41;
  210. //
  211. // nudRight
  212. //
  213. this.nudRight.Location = new System.Drawing.Point(163, 83);
  214. this.nudRight.Name = "nudRight";
  215. this.nudRight.Size = new System.Drawing.Size(62, 20);
  216. this.nudRight.TabIndex = 40;
  217. //
  218. // nudLeft
  219. //
  220. this.nudLeft.Location = new System.Drawing.Point(36, 83);
  221. this.nudLeft.Name = "nudLeft";
  222. this.nudLeft.Size = new System.Drawing.Size(62, 20);
  223. this.nudLeft.TabIndex = 39;
  224. //
  225. // label4
  226. //
  227. this.label4.AutoSize = true;
  228. this.label4.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  229. this.label4.Location = new System.Drawing.Point(124, 95);
  230. this.label4.Name = "label4";
  231. this.label4.Size = new System.Drawing.Size(15, 16);
  232. this.label4.TabIndex = 38;
  233. this.label4.Text = "↑";
  234. //
  235. // label3
  236. //
  237. this.label3.AutoSize = true;
  238. this.label3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  239. this.label3.Location = new System.Drawing.Point(136, 85);
  240. this.label3.Name = "label3";
  241. this.label3.Size = new System.Drawing.Size(21, 16);
  242. this.label3.TabIndex = 37;
  243. this.label3.Text = "←";
  244. //
  245. // label2
  246. //
  247. this.label2.AutoSize = true;
  248. this.label2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  249. this.label2.Location = new System.Drawing.Point(104, 85);
  250. this.label2.Name = "label2";
  251. this.label2.Size = new System.Drawing.Size(21, 16);
  252. this.label2.TabIndex = 36;
  253. this.label2.Text = "→";
  254. //
  255. // label1
  256. //
  257. this.label1.AutoSize = true;
  258. this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  259. this.label1.Location = new System.Drawing.Point(124, 76);
  260. this.label1.Name = "label1";
  261. this.label1.Size = new System.Drawing.Size(15, 16);
  262. this.label1.TabIndex = 35;
  263. this.label1.Text = "↓";
  264. //
  265. // nudTop
  266. //
  267. this.nudTop.Location = new System.Drawing.Point(100, 53);
  268. this.nudTop.Name = "nudTop";
  269. this.nudTop.Size = new System.Drawing.Size(62, 20);
  270. this.nudTop.TabIndex = 23;
  271. //
  272. // lblChange2
  273. //
  274. this.lblChange2.AutoSize = true;
  275. this.lblChange2.Location = new System.Drawing.Point(13, 25);
  276. this.lblChange2.Name = "lblChange2";
  277. this.lblChange2.Size = new System.Drawing.Size(48, 13);
  278. this.lblChange2.TabIndex = 19;
  279. this.lblChange2.Text = "Change:";
  280. //
  281. // rbPixelsCrop
  282. //
  283. this.rbPixelsCrop.AutoSize = true;
  284. this.rbPixelsCrop.Location = new System.Drawing.Point(185, 23);
  285. this.rbPixelsCrop.Name = "rbPixelsCrop";
  286. this.rbPixelsCrop.Size = new System.Drawing.Size(52, 17);
  287. this.rbPixelsCrop.TabIndex = 18;
  288. this.rbPixelsCrop.Text = "pixels";
  289. this.rbPixelsCrop.UseVisualStyleBackColor = true;
  290. //
  291. // rbPercentCrop
  292. //
  293. this.rbPercentCrop.AutoSize = true;
  294. this.rbPercentCrop.Checked = true;
  295. this.rbPercentCrop.Location = new System.Drawing.Point(100, 23);
  296. this.rbPercentCrop.Name = "rbPercentCrop";
  297. this.rbPercentCrop.Size = new System.Drawing.Size(62, 17);
  298. this.rbPercentCrop.TabIndex = 17;
  299. this.rbPercentCrop.TabStop = true;
  300. this.rbPercentCrop.Text = "percent";
  301. this.rbPercentCrop.UseVisualStyleBackColor = true;
  302. //
  303. // gbResize
  304. //
  305. this.gbResize.Controls.Add(this.nudHor);
  306. this.gbResize.Controls.Add(this.cbAspectRatio);
  307. this.gbResize.Controls.Add(this.lblHor);
  308. this.gbResize.Controls.Add(this.lblChange);
  309. this.gbResize.Controls.Add(this.nudVer);
  310. this.gbResize.Controls.Add(this.lblVer);
  311. this.gbResize.Controls.Add(this.rbPixelsResize);
  312. this.gbResize.Controls.Add(this.rbPercentResize);
  313. this.gbResize.Location = new System.Drawing.Point(12, 12);
  314. this.gbResize.Name = "gbResize";
  315. this.gbResize.Padding = new System.Windows.Forms.Padding(10);
  316. this.gbResize.Size = new System.Drawing.Size(265, 146);
  317. this.gbResize.TabIndex = 17;
  318. this.gbResize.TabStop = false;
  319. this.gbResize.Text = "Resize";
  320. //
  321. // nudHor
  322. //
  323. this.nudHor.Location = new System.Drawing.Point(100, 53);
  324. this.nudHor.Name = "nudHor";
  325. this.nudHor.Size = new System.Drawing.Size(62, 20);
  326. this.nudHor.TabIndex = 15;
  327. //
  328. // cbAspectRatio
  329. //
  330. this.cbAspectRatio.AutoSize = true;
  331. this.cbAspectRatio.Checked = true;
  332. this.cbAspectRatio.CheckState = System.Windows.Forms.CheckState.Checked;
  333. this.cbAspectRatio.Location = new System.Drawing.Point(16, 115);
  334. this.cbAspectRatio.Name = "cbAspectRatio";
  335. this.cbAspectRatio.Size = new System.Drawing.Size(110, 17);
  336. this.cbAspectRatio.TabIndex = 16;
  337. this.cbAspectRatio.Text = "Keep aspect ratio";
  338. this.cbAspectRatio.UseVisualStyleBackColor = true;
  339. //
  340. // lblHor
  341. //
  342. this.lblHor.AutoSize = true;
  343. this.lblHor.Location = new System.Drawing.Point(13, 55);
  344. this.lblHor.Name = "lblHor";
  345. this.lblHor.Size = new System.Drawing.Size(59, 13);
  346. this.lblHor.TabIndex = 12;
  347. this.lblHor.Text = "Horizontal:";
  348. //
  349. // lblChange
  350. //
  351. this.lblChange.AutoSize = true;
  352. this.lblChange.Location = new System.Drawing.Point(13, 25);
  353. this.lblChange.Name = "lblChange";
  354. this.lblChange.Size = new System.Drawing.Size(48, 13);
  355. this.lblChange.TabIndex = 11;
  356. this.lblChange.Text = "Change:";
  357. //
  358. // nudVer
  359. //
  360. this.nudVer.Location = new System.Drawing.Point(100, 83);
  361. this.nudVer.Name = "nudVer";
  362. this.nudVer.Size = new System.Drawing.Size(62, 20);
  363. this.nudVer.TabIndex = 14;
  364. //
  365. // lblVer
  366. //
  367. this.lblVer.AutoSize = true;
  368. this.lblVer.Location = new System.Drawing.Point(13, 85);
  369. this.lblVer.Name = "lblVer";
  370. this.lblVer.Size = new System.Drawing.Size(46, 13);
  371. this.lblVer.TabIndex = 13;
  372. this.lblVer.Text = "Vertical:";
  373. //
  374. // rbPixelsResize
  375. //
  376. this.rbPixelsResize.AutoSize = true;
  377. this.rbPixelsResize.Location = new System.Drawing.Point(185, 23);
  378. this.rbPixelsResize.Name = "rbPixelsResize";
  379. this.rbPixelsResize.Size = new System.Drawing.Size(52, 17);
  380. this.rbPixelsResize.TabIndex = 10;
  381. this.rbPixelsResize.Text = "pixels";
  382. this.rbPixelsResize.UseVisualStyleBackColor = true;
  383. //
  384. // rbPercentResize
  385. //
  386. this.rbPercentResize.AutoSize = true;
  387. this.rbPercentResize.Checked = true;
  388. this.rbPercentResize.Location = new System.Drawing.Point(100, 23);
  389. this.rbPercentResize.Name = "rbPercentResize";
  390. this.rbPercentResize.Size = new System.Drawing.Size(62, 17);
  391. this.rbPercentResize.TabIndex = 9;
  392. this.rbPercentResize.TabStop = true;
  393. this.rbPercentResize.Text = "percent";
  394. this.rbPercentResize.UseVisualStyleBackColor = true;
  395. //
  396. // panelMiddle
  397. //
  398. this.panelMiddle.AutoScroll = true;
  399. this.panelMiddle.Controls.Add(this.pictureBox);
  400. this.panelMiddle.Dock = System.Windows.Forms.DockStyle.Fill;
  401. this.panelMiddle.Location = new System.Drawing.Point(0, 175);
  402. this.panelMiddle.Name = "panelMiddle";
  403. this.panelMiddle.Size = new System.Drawing.Size(746, 324);
  404. this.panelMiddle.TabIndex = 13;
  405. //
  406. // pictureBox
  407. //
  408. this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
  409. this.pictureBox.Location = new System.Drawing.Point(0, 0);
  410. this.pictureBox.Name = "pictureBox";
  411. this.pictureBox.Size = new System.Drawing.Size(746, 324);
  412. this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  413. this.pictureBox.TabIndex = 0;
  414. this.pictureBox.TabStop = false;
  415. //
  416. // statusBar
  417. //
  418. this.statusBar.Location = new System.Drawing.Point(0, 547);
  419. this.statusBar.Name = "statusBar";
  420. this.statusBar.Size = new System.Drawing.Size(746, 22);
  421. this.statusBar.TabIndex = 14;
  422. this.statusBar.Text = "statusStrip1";
  423. //
  424. // PictureEditorAdvancedForm
  425. //
  426. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  427. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  428. this.CancelButton = this.btnCancel;
  429. this.ClientSize = new System.Drawing.Size(746, 569);
  430. this.Controls.Add(this.panelMiddle);
  431. this.Controls.Add(this.panelTop);
  432. this.Controls.Add(this.panelBottom);
  433. this.Controls.Add(this.statusBar);
  434. this.Name = "PictureEditorAdvancedForm";
  435. this.Text = "Title";
  436. this.panelBottom.ResumeLayout(false);
  437. this.panelTop.ResumeLayout(false);
  438. this.gbColor.ResumeLayout(false);
  439. this.gbColor.PerformLayout();
  440. this.gbCrop.ResumeLayout(false);
  441. this.gbCrop.PerformLayout();
  442. ((System.ComponentModel.ISupportInitialize)(this.nudBottom)).EndInit();
  443. ((System.ComponentModel.ISupportInitialize)(this.nudRight)).EndInit();
  444. ((System.ComponentModel.ISupportInitialize)(this.nudLeft)).EndInit();
  445. ((System.ComponentModel.ISupportInitialize)(this.nudTop)).EndInit();
  446. this.gbResize.ResumeLayout(false);
  447. this.gbResize.PerformLayout();
  448. ((System.ComponentModel.ISupportInitialize)(this.nudHor)).EndInit();
  449. ((System.ComponentModel.ISupportInitialize)(this.nudVer)).EndInit();
  450. this.panelMiddle.ResumeLayout(false);
  451. ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
  452. this.ResumeLayout(false);
  453. this.PerformLayout();
  454. }
  455. #endregion
  456. private System.Windows.Forms.Button btnOK;
  457. private System.Windows.Forms.Button btnCancel;
  458. private System.Windows.Forms.Panel panelBottom;
  459. private System.Windows.Forms.Panel panelTop;
  460. private System.Windows.Forms.GroupBox gbColor;
  461. private System.Windows.Forms.GroupBox gbCrop;
  462. private System.Windows.Forms.GroupBox gbResize;
  463. private System.Windows.Forms.NumericUpDown nudHor;
  464. private System.Windows.Forms.Label lblHor;
  465. private System.Windows.Forms.Label lblChange;
  466. private System.Windows.Forms.NumericUpDown nudVer;
  467. private System.Windows.Forms.Label lblVer;
  468. private System.Windows.Forms.Panel panelMiddle;
  469. private System.Windows.Forms.PictureBox pictureBox;
  470. private System.Windows.Forms.NumericUpDown nudTop;
  471. private System.Windows.Forms.Label lblChange2;
  472. private System.Windows.Forms.StatusStrip statusBar;
  473. private System.Windows.Forms.Button btnReset;
  474. private System.Windows.Forms.Label label4;
  475. private System.Windows.Forms.Label label3;
  476. private System.Windows.Forms.Label label2;
  477. private System.Windows.Forms.Label label1;
  478. private System.Windows.Forms.NumericUpDown nudBottom;
  479. private System.Windows.Forms.NumericUpDown nudRight;
  480. private System.Windows.Forms.NumericUpDown nudLeft;
  481. private System.Windows.Forms.CheckBox cbAspectRatio;
  482. private System.Windows.Forms.RadioButton rbPixelsResize;
  483. private System.Windows.Forms.RadioButton rbPercentResize;
  484. private System.Windows.Forms.RadioButton rbPixelsCrop;
  485. private System.Windows.Forms.RadioButton rbPercentCrop;
  486. private System.Windows.Forms.RadioButton rbGrayscale;
  487. private System.Windows.Forms.RadioButton rbMonochrome;
  488. private System.Windows.Forms.RadioButton rbNone;
  489. }
  490. }