SVGEditorAdvancedForm.designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. using FastReport.Controls;
  2. using System.Windows.Forms;
  3. namespace FastReport.Forms
  4. {
  5. partial class SVGEditorAdvancedForm
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.btnCancel = new System.Windows.Forms.Button();
  32. this.panelBottom = new System.Windows.Forms.Panel();
  33. this.btnReset = new System.Windows.Forms.Button();
  34. this.panelTop = new System.Windows.Forms.Panel();
  35. this.gbColor = new System.Windows.Forms.GroupBox();
  36. this.rbGrayscale = new System.Windows.Forms.RadioButton();
  37. this.rbNone = new System.Windows.Forms.RadioButton();
  38. this.gbResize = new System.Windows.Forms.GroupBox();
  39. this.NUpDownWidth = new System.Windows.Forms.NumericUpDown();
  40. this.lblWidth = new System.Windows.Forms.Label();
  41. this.NUpDownHeight = new System.Windows.Forms.NumericUpDown();
  42. this.lblHeight = new System.Windows.Forms.Label();
  43. this.NUpDownMinX = new System.Windows.Forms.NumericUpDown();
  44. this.lblMinX = new System.Windows.Forms.Label();
  45. this.NUpDownMinY = new System.Windows.Forms.NumericUpDown();
  46. this.lblMinY = new System.Windows.Forms.Label();
  47. this.cbAspectRatio = new System.Windows.Forms.CheckBox();
  48. this.panelMiddle = new System.Windows.Forms.Panel();
  49. this.pictureBox = new System.Windows.Forms.PictureBox();
  50. this.panelBottom.SuspendLayout();
  51. this.panelTop.SuspendLayout();
  52. this.gbColor.SuspendLayout();
  53. this.gbResize.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.NUpDownWidth)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.NUpDownHeight)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.NUpDownMinX)).BeginInit();
  57. ((System.ComponentModel.ISupportInitialize)(this.NUpDownMinY)).BeginInit();
  58. this.panelMiddle.SuspendLayout();
  59. ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
  60. this.SuspendLayout();
  61. //
  62. // btnOK
  63. //
  64. this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  65. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  66. this.btnOK.Location = new System.Drawing.Point(412, 8);
  67. this.btnOK.Name = "btnOK";
  68. this.btnOK.Size = new System.Drawing.Size(75, 23);
  69. this.btnOK.TabIndex = 7;
  70. this.btnOK.Text = "OK";
  71. this.btnOK.UseVisualStyleBackColor = true;
  72. //
  73. // btnCancel
  74. //
  75. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  76. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  77. this.btnCancel.Location = new System.Drawing.Point(493, 8);
  78. this.btnCancel.Name = "btnCancel";
  79. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  80. this.btnCancel.TabIndex = 9;
  81. this.btnCancel.Text = "Cancel";
  82. this.btnCancel.UseVisualStyleBackColor = true;
  83. //
  84. // panelBottom
  85. //
  86. this.panelBottom.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  87. this.panelBottom.Controls.Add(this.btnReset);
  88. this.panelBottom.Controls.Add(this.btnOK);
  89. this.panelBottom.Controls.Add(this.btnCancel);
  90. this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  91. this.panelBottom.Location = new System.Drawing.Point(0, 397);
  92. this.panelBottom.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  93. this.panelBottom.Name = "panelBottom";
  94. this.panelBottom.Size = new System.Drawing.Size(579, 41);
  95. this.panelBottom.TabIndex = 11;
  96. //
  97. // btnReset
  98. //
  99. this.btnReset.Location = new System.Drawing.Point(12, 8);
  100. this.btnReset.Name = "btnReset";
  101. this.btnReset.Size = new System.Drawing.Size(75, 23);
  102. this.btnReset.TabIndex = 8;
  103. this.btnReset.Text = "Reset";
  104. this.btnReset.UseVisualStyleBackColor = true;
  105. this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
  106. //
  107. // panelTop
  108. //
  109. this.panelTop.AutoScroll = true;
  110. this.panelTop.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  111. this.panelTop.Controls.Add(this.gbColor);
  112. this.panelTop.Controls.Add(this.gbResize);
  113. this.panelTop.Controls.Add(this.cbAspectRatio);
  114. this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
  115. this.panelTop.Location = new System.Drawing.Point(0, 0);
  116. this.panelTop.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  117. this.panelTop.Name = "panelTop";
  118. this.panelTop.Size = new System.Drawing.Size(579, 137);
  119. this.panelTop.TabIndex = 12;
  120. //
  121. // gbColor
  122. //
  123. this.gbColor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  124. | System.Windows.Forms.AnchorStyles.Right)));
  125. this.gbColor.Controls.Add(this.rbGrayscale);
  126. this.gbColor.Controls.Add(this.rbNone);
  127. this.gbColor.Location = new System.Drawing.Point(396, 12);
  128. this.gbColor.Name = "gbColor";
  129. this.gbColor.Size = new System.Drawing.Size(171, 85);
  130. this.gbColor.TabIndex = 19;
  131. this.gbColor.TabStop = false;
  132. this.gbColor.Text = "Color";
  133. //
  134. // rbGrayscale
  135. //
  136. this.rbGrayscale.AutoSize = true;
  137. this.rbGrayscale.Location = new System.Drawing.Point(12, 49);
  138. this.rbGrayscale.Name = "rbGrayscale";
  139. this.rbGrayscale.Size = new System.Drawing.Size(72, 17);
  140. this.rbGrayscale.TabIndex = 5;
  141. this.rbGrayscale.Text = "Grayscale";
  142. this.rbGrayscale.UseVisualStyleBackColor = true;
  143. //
  144. // rbNone
  145. //
  146. this.rbNone.AutoSize = true;
  147. this.rbNone.Checked = true;
  148. this.rbNone.Location = new System.Drawing.Point(12, 21);
  149. this.rbNone.Name = "rbNone";
  150. this.rbNone.Size = new System.Drawing.Size(50, 17);
  151. this.rbNone.TabIndex = 4;
  152. this.rbNone.TabStop = true;
  153. this.rbNone.Text = "None";
  154. this.rbNone.UseVisualStyleBackColor = true;
  155. //
  156. // gbResize
  157. //
  158. this.gbResize.Controls.Add(this.NUpDownWidth);
  159. this.gbResize.Controls.Add(this.lblWidth);
  160. this.gbResize.Controls.Add(this.NUpDownHeight);
  161. this.gbResize.Controls.Add(this.lblHeight);
  162. this.gbResize.Controls.Add(this.NUpDownMinX);
  163. this.gbResize.Controls.Add(this.lblMinX);
  164. this.gbResize.Controls.Add(this.NUpDownMinY);
  165. this.gbResize.Controls.Add(this.lblMinY);
  166. this.gbResize.Location = new System.Drawing.Point(12, 12);
  167. this.gbResize.Name = "gbResize";
  168. this.gbResize.Size = new System.Drawing.Size(377, 85);
  169. this.gbResize.TabIndex = 17;
  170. this.gbResize.TabStop = false;
  171. this.gbResize.Text = "ViewBox";
  172. //
  173. // NUpDownWidth
  174. //
  175. this.NUpDownWidth.Location = new System.Drawing.Point(299, 21);
  176. this.NUpDownWidth.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  177. this.NUpDownWidth.Name = "NUpDownWidth";
  178. this.NUpDownWidth.Size = new System.Drawing.Size(65, 20);
  179. this.NUpDownWidth.TabIndex = 2;
  180. //
  181. // lblWidth
  182. //
  183. this.lblWidth.AutoSize = true;
  184. this.lblWidth.Location = new System.Drawing.Point(203, 23);
  185. this.lblWidth.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  186. this.lblWidth.Name = "lblWidth";
  187. this.lblWidth.Size = new System.Drawing.Size(39, 13);
  188. this.lblWidth.TabIndex = 17;
  189. this.lblWidth.Text = "Width:";
  190. //
  191. // NUpDownHeight
  192. //
  193. this.NUpDownHeight.Location = new System.Drawing.Point(299, 51);
  194. this.NUpDownHeight.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  195. this.NUpDownHeight.Name = "NUpDownHeight";
  196. this.NUpDownHeight.Size = new System.Drawing.Size(65, 20);
  197. this.NUpDownHeight.TabIndex = 3;
  198. //
  199. // lblHeight
  200. //
  201. this.lblHeight.AutoSize = true;
  202. this.lblHeight.Location = new System.Drawing.Point(203, 53);
  203. this.lblHeight.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  204. this.lblHeight.Name = "lblHeight";
  205. this.lblHeight.Size = new System.Drawing.Size(42, 13);
  206. this.lblHeight.TabIndex = 18;
  207. this.lblHeight.Text = "Height:";
  208. //
  209. // NUpDownMinX
  210. //
  211. this.NUpDownMinX.Location = new System.Drawing.Point(105, 21);
  212. this.NUpDownMinX.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  213. this.NUpDownMinX.Name = "NUpDownMinX";
  214. this.NUpDownMinX.Size = new System.Drawing.Size(65, 20);
  215. this.NUpDownMinX.TabIndex = 0;
  216. //
  217. // lblMinX
  218. //
  219. this.lblMinX.AutoSize = true;
  220. this.lblMinX.Location = new System.Drawing.Point(7, 23);
  221. this.lblMinX.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  222. this.lblMinX.Name = "lblMinX";
  223. this.lblMinX.Size = new System.Drawing.Size(33, 13);
  224. this.lblMinX.TabIndex = 12;
  225. this.lblMinX.Text = "MinX:";
  226. //
  227. // NUpDownMinY
  228. //
  229. this.NUpDownMinY.Location = new System.Drawing.Point(105, 51);
  230. this.NUpDownMinY.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  231. this.NUpDownMinY.Name = "NUpDownMinY";
  232. this.NUpDownMinY.Size = new System.Drawing.Size(65, 20);
  233. this.NUpDownMinY.TabIndex = 1;
  234. //
  235. // lblMinY
  236. //
  237. this.lblMinY.AutoSize = true;
  238. this.lblMinY.Location = new System.Drawing.Point(7, 53);
  239. this.lblMinY.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  240. this.lblMinY.Name = "lblMinY";
  241. this.lblMinY.Size = new System.Drawing.Size(33, 13);
  242. this.lblMinY.TabIndex = 13;
  243. this.lblMinY.Text = "MinY:";
  244. //
  245. // cbAspectRatio
  246. //
  247. this.cbAspectRatio.AutoSize = true;
  248. this.cbAspectRatio.Checked = true;
  249. this.cbAspectRatio.CheckState = System.Windows.Forms.CheckState.Checked;
  250. this.cbAspectRatio.Location = new System.Drawing.Point(12, 105);
  251. this.cbAspectRatio.Name = "cbAspectRatio";
  252. this.cbAspectRatio.Size = new System.Drawing.Size(110, 17);
  253. this.cbAspectRatio.TabIndex = 6;
  254. this.cbAspectRatio.Text = "Keep aspect ratio";
  255. this.cbAspectRatio.UseVisualStyleBackColor = true;
  256. //
  257. // panelMiddle
  258. //
  259. this.panelMiddle.AutoScroll = true;
  260. this.panelMiddle.Controls.Add(this.pictureBox);
  261. this.panelMiddle.Dock = System.Windows.Forms.DockStyle.Fill;
  262. this.panelMiddle.Location = new System.Drawing.Point(0, 137);
  263. this.panelMiddle.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  264. this.panelMiddle.Name = "panelMiddle";
  265. this.panelMiddle.Size = new System.Drawing.Size(579, 260);
  266. this.panelMiddle.TabIndex = 13;
  267. //
  268. // pictureBox
  269. //
  270. this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
  271. this.pictureBox.Location = new System.Drawing.Point(0, 0);
  272. this.pictureBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  273. this.pictureBox.Name = "pictureBox";
  274. this.pictureBox.Size = new System.Drawing.Size(579, 260);
  275. this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  276. this.pictureBox.TabIndex = 0;
  277. this.pictureBox.TabStop = false;
  278. //
  279. // SVGEditorAdvancedForm
  280. //
  281. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  282. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  283. this.CancelButton = this.btnCancel;
  284. this.ClientSize = new System.Drawing.Size(579, 438);
  285. this.Controls.Add(this.panelMiddle);
  286. this.Controls.Add(this.panelTop);
  287. this.Controls.Add(this.panelBottom);
  288. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  289. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  290. this.Name = "SVGEditorAdvancedForm";
  291. this.ShowIcon = false;
  292. this.Text = "Title";
  293. this.panelBottom.ResumeLayout(false);
  294. this.panelTop.ResumeLayout(false);
  295. this.panelTop.PerformLayout();
  296. this.gbColor.ResumeLayout(false);
  297. this.gbColor.PerformLayout();
  298. this.gbResize.ResumeLayout(false);
  299. this.gbResize.PerformLayout();
  300. ((System.ComponentModel.ISupportInitialize)(this.NUpDownWidth)).EndInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.NUpDownHeight)).EndInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.NUpDownMinX)).EndInit();
  303. ((System.ComponentModel.ISupportInitialize)(this.NUpDownMinY)).EndInit();
  304. this.panelMiddle.ResumeLayout(false);
  305. ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
  306. this.ResumeLayout(false);
  307. }
  308. #endregion
  309. private System.Windows.Forms.Button btnOK;
  310. private System.Windows.Forms.Button btnCancel;
  311. private System.Windows.Forms.Panel panelBottom;
  312. private System.Windows.Forms.Panel panelTop;
  313. private System.Windows.Forms.GroupBox gbColor;
  314. private System.Windows.Forms.GroupBox gbResize;
  315. private System.Windows.Forms.NumericUpDown NUpDownMinX;
  316. private System.Windows.Forms.Label lblMinX;
  317. private System.Windows.Forms.NumericUpDown NUpDownMinY;
  318. private System.Windows.Forms.Label lblMinY;
  319. private System.Windows.Forms.Panel panelMiddle;
  320. private System.Windows.Forms.PictureBox pictureBox;
  321. private System.Windows.Forms.Button btnReset;
  322. private System.Windows.Forms.RadioButton rbGrayscale;
  323. private System.Windows.Forms.RadioButton rbNone;
  324. private NumericUpDown NUpDownWidth;
  325. private Label lblWidth;
  326. private NumericUpDown NUpDownHeight;
  327. private Label lblHeight;
  328. private System.Windows.Forms.CheckBox cbAspectRatio;
  329. }
  330. }