BorderEditorForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. using System;
  2. using System.Windows.Forms;
  3. using System.Drawing;
  4. using FastReport.Controls;
  5. namespace FastReport.Forms
  6. {
  7. partial class BorderEditorForm
  8. {
  9. /// <summary>
  10. /// Required designer variable.
  11. /// </summary>
  12. private System.ComponentModel.IContainer components = null;
  13. /// <summary>
  14. /// Clean up any resources being used.
  15. /// </summary>
  16. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  17. protected override void Dispose(bool disposing)
  18. {
  19. if (disposing && (components != null))
  20. {
  21. components.Dispose();
  22. }
  23. base.Dispose(disposing);
  24. }
  25. #region Windows Form Designer generated code
  26. /// <summary>
  27. /// Required method for Designer support - do not modify
  28. /// the contents of this method with the code editor.
  29. /// </summary>
  30. private void InitializeComponent()
  31. {
  32. this.gbBorder = new System.Windows.Forms.GroupBox();
  33. this.cbShadow = new System.Windows.Forms.CheckBox();
  34. this.btnAllLines = new System.Windows.Forms.Button();
  35. this.btnNoLines = new System.Windows.Forms.Button();
  36. this.cbTopLine = new System.Windows.Forms.CheckBox();
  37. this.cbBottomLine = new System.Windows.Forms.CheckBox();
  38. this.cbLeftLine = new System.Windows.Forms.CheckBox();
  39. this.cbRightLine = new System.Windows.Forms.CheckBox();
  40. this.pnSample = new FastReport.Controls.BorderSample();
  41. this.lblShadow = new FastReport.Controls.LabelLine();
  42. this.cbxShadowWidth = new FastReport.Controls.LineWidthComboBox();
  43. this.lblShadowWidth = new System.Windows.Forms.Label();
  44. this.cbxShadowColor = new FastReport.Controls.ColorComboBox();
  45. this.lblShadowColor = new System.Windows.Forms.Label();
  46. this.gbLine = new System.Windows.Forms.GroupBox();
  47. this.lsLineStyle = new FastReport.Controls.LineStyleControl();
  48. this.lblStyle = new System.Windows.Forms.Label();
  49. this.cbxLineWidth = new FastReport.Controls.LineWidthComboBox();
  50. this.lblLineWidth = new System.Windows.Forms.Label();
  51. this.cbxLineColor = new FastReport.Controls.ColorComboBox();
  52. this.lblLineColor = new System.Windows.Forms.Label();
  53. this.lblHint = new System.Windows.Forms.Label();
  54. this.gbBorder.SuspendLayout();
  55. this.gbLine.SuspendLayout();
  56. this.SuspendLayout();
  57. //
  58. // btnOk
  59. //
  60. this.btnOk.Location = new System.Drawing.Point(140, 276);
  61. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  62. //
  63. // btnCancel
  64. //
  65. this.btnCancel.Location = new System.Drawing.Point(220, 276);
  66. //
  67. // gbBorder
  68. //
  69. this.gbBorder.Controls.Add(this.cbShadow);
  70. this.gbBorder.Controls.Add(this.btnAllLines);
  71. this.gbBorder.Controls.Add(this.btnNoLines);
  72. this.gbBorder.Controls.Add(this.cbTopLine);
  73. this.gbBorder.Controls.Add(this.cbBottomLine);
  74. this.gbBorder.Controls.Add(this.cbLeftLine);
  75. this.gbBorder.Controls.Add(this.cbRightLine);
  76. this.gbBorder.Controls.Add(this.pnSample);
  77. this.gbBorder.Controls.Add(this.lblShadow);
  78. this.gbBorder.Controls.Add(this.cbxShadowWidth);
  79. this.gbBorder.Controls.Add(this.lblShadowWidth);
  80. this.gbBorder.Controls.Add(this.cbxShadowColor);
  81. this.gbBorder.Controls.Add(this.lblShadowColor);
  82. this.gbBorder.Location = new System.Drawing.Point(8, 4);
  83. this.gbBorder.Name = "gbBorder";
  84. this.gbBorder.Size = new System.Drawing.Size(184, 228);
  85. this.gbBorder.TabIndex = 0;
  86. this.gbBorder.TabStop = false;
  87. this.gbBorder.Text = "Border";
  88. //
  89. // cbShadow
  90. //
  91. this.cbShadow.AutoSize = true;
  92. this.cbShadow.Location = new System.Drawing.Point(12, 156);
  93. this.cbShadow.Name = "cbShadow";
  94. this.cbShadow.Size = new System.Drawing.Size(58, 17);
  95. this.cbShadow.TabIndex = 6;
  96. this.cbShadow.Text = "Shadow";
  97. this.cbShadow.CheckedChanged += new System.EventHandler(this.cbShadow_CheckedChanged);
  98. //
  99. // btnAllLines
  100. //
  101. this.btnAllLines.Location = new System.Drawing.Point(11, 20);
  102. this.btnAllLines.Name = "btnAllLines";
  103. this.btnAllLines.Size = new System.Drawing.Size(24, 24);
  104. this.btnAllLines.TabIndex = 0;
  105. this.btnAllLines.Click += new System.EventHandler(this.btnAllLines_Click);
  106. //
  107. // btnNoLines
  108. //
  109. this.btnNoLines.Location = new System.Drawing.Point(36, 20);
  110. this.btnNoLines.Name = "btnNoLines";
  111. this.btnNoLines.Size = new System.Drawing.Size(24, 24);
  112. this.btnNoLines.TabIndex = 1;
  113. this.btnNoLines.Click += new System.EventHandler(this.btnNoLines_Click);
  114. //
  115. // cbTopLine
  116. //
  117. this.cbTopLine.Appearance = System.Windows.Forms.Appearance.Button;
  118. this.cbTopLine.Location = new System.Drawing.Point(74, 20);
  119. this.cbTopLine.Name = "cbTopLine";
  120. this.cbTopLine.Size = new System.Drawing.Size(24, 24);
  121. this.cbTopLine.TabIndex = 2;
  122. this.cbTopLine.Click += new System.EventHandler(this.Line_Click);
  123. //
  124. // cbBottomLine
  125. //
  126. this.cbBottomLine.Appearance = System.Windows.Forms.Appearance.Button;
  127. this.cbBottomLine.Location = new System.Drawing.Point(99, 20);
  128. this.cbBottomLine.Name = "cbBottomLine";
  129. this.cbBottomLine.Size = new System.Drawing.Size(24, 24);
  130. this.cbBottomLine.TabIndex = 3;
  131. this.cbBottomLine.Click += new System.EventHandler(this.Line_Click);
  132. //
  133. // cbLeftLine
  134. //
  135. this.cbLeftLine.Appearance = System.Windows.Forms.Appearance.Button;
  136. this.cbLeftLine.Location = new System.Drawing.Point(124, 20);
  137. this.cbLeftLine.Name = "cbLeftLine";
  138. this.cbLeftLine.Size = new System.Drawing.Size(24, 24);
  139. this.cbLeftLine.TabIndex = 4;
  140. this.cbLeftLine.Click += new System.EventHandler(this.Line_Click);
  141. //
  142. // cbRightLine
  143. //
  144. this.cbRightLine.Appearance = System.Windows.Forms.Appearance.Button;
  145. this.cbRightLine.Location = new System.Drawing.Point(149, 20);
  146. this.cbRightLine.Name = "cbRightLine";
  147. this.cbRightLine.Size = new System.Drawing.Size(24, 24);
  148. this.cbRightLine.TabIndex = 5;
  149. this.cbRightLine.Click += new System.EventHandler(this.Line_Click);
  150. //
  151. // FSample
  152. //
  153. this.pnSample.BackColor = System.Drawing.SystemColors.Window;
  154. this.pnSample.Location = new System.Drawing.Point(12, 52);
  155. this.pnSample.Name = "FSample";
  156. this.pnSample.Size = new System.Drawing.Size(160, 94);
  157. this.pnSample.TabIndex = 6;
  158. this.pnSample.ToggleLine += new FastReport.Controls.ToggleLineEventHandler(this.pnSample_ToggleLine);
  159. //
  160. // lblShadow
  161. //
  162. this.lblShadow.Location = new System.Drawing.Point(12, 156);
  163. this.lblShadow.Name = "lblShadow";
  164. this.lblShadow.Size = new System.Drawing.Size(158, 16);
  165. this.lblShadow.TabIndex = 7;
  166. //
  167. // cbxShadowWidth
  168. //
  169. this.cbxShadowWidth.Location = new System.Drawing.Point(12, 192);
  170. this.cbxShadowWidth.Name = "cbxShadowWidth";
  171. this.cbxShadowWidth.Size = new System.Drawing.Size(70, 21);
  172. this.cbxShadowWidth.TabIndex = 8;
  173. this.cbxShadowWidth.Text = "1";
  174. this.cbxShadowWidth.WidthSelected += new System.EventHandler(this.cbxShadowWidth_WidthSelected);
  175. //
  176. // lblShadowWidth
  177. //
  178. this.lblShadowWidth.AutoSize = true;
  179. this.lblShadowWidth.Location = new System.Drawing.Point(12, 174);
  180. this.lblShadowWidth.Name = "lblShadowWidth";
  181. this.lblShadowWidth.Size = new System.Drawing.Size(35, 13);
  182. this.lblShadowWidth.TabIndex = 9;
  183. this.lblShadowWidth.Text = "Width";
  184. //
  185. // cbxShadowColor
  186. //
  187. this.cbxShadowColor.Color = System.Drawing.Color.Transparent;
  188. this.cbxShadowColor.Location = new System.Drawing.Point(100, 192);
  189. this.cbxShadowColor.Name = "cbxShadowColor";
  190. this.cbxShadowColor.Size = new System.Drawing.Size(70, 21);
  191. this.cbxShadowColor.TabIndex = 10;
  192. this.cbxShadowColor.ColorSelected += new System.EventHandler(this.cbxShadowColor_ColorSelected);
  193. //
  194. // lblShadowColor
  195. //
  196. this.lblShadowColor.AutoSize = true;
  197. this.lblShadowColor.Location = new System.Drawing.Point(100, 174);
  198. this.lblShadowColor.Name = "lblShadowColor";
  199. this.lblShadowColor.Size = new System.Drawing.Size(32, 13);
  200. this.lblShadowColor.TabIndex = 11;
  201. this.lblShadowColor.Text = "Color";
  202. //
  203. // gbLine
  204. //
  205. this.gbLine.Controls.Add(this.lsLineStyle);
  206. this.gbLine.Controls.Add(this.lblStyle);
  207. this.gbLine.Controls.Add(this.cbxLineWidth);
  208. this.gbLine.Controls.Add(this.lblLineWidth);
  209. this.gbLine.Controls.Add(this.cbxLineColor);
  210. this.gbLine.Controls.Add(this.lblLineColor);
  211. this.gbLine.Location = new System.Drawing.Point(200, 4);
  212. this.gbLine.Name = "gbLine";
  213. this.gbLine.Size = new System.Drawing.Size(96, 228);
  214. this.gbLine.TabIndex = 1;
  215. this.gbLine.TabStop = false;
  216. this.gbLine.Text = "Line";
  217. //
  218. // lsLineStyle
  219. //
  220. this.lsLineStyle.BackColor = System.Drawing.SystemColors.Window;
  221. this.lsLineStyle.LineColor = System.Drawing.Color.Black;
  222. this.lsLineStyle.LineWidth = 1F;
  223. this.lsLineStyle.Location = new System.Drawing.Point(12, 32);
  224. this.lsLineStyle.Name = "lsLineStyle";
  225. this.lsLineStyle.ShowBorder = true;
  226. this.lsLineStyle.Size = new System.Drawing.Size(70, 99);
  227. this.lsLineStyle.Style = FastReport.LineStyle.Solid;
  228. this.lsLineStyle.TabIndex = 0;
  229. //
  230. // lblStyle
  231. //
  232. this.lblStyle.AutoSize = true;
  233. this.lblStyle.Location = new System.Drawing.Point(12, 14);
  234. this.lblStyle.Name = "lblStyle";
  235. this.lblStyle.Size = new System.Drawing.Size(31, 13);
  236. this.lblStyle.TabIndex = 1;
  237. this.lblStyle.Text = "Style";
  238. //
  239. // cbxLineWidth
  240. //
  241. this.cbxLineWidth.Location = new System.Drawing.Point(12, 152);
  242. this.cbxLineWidth.Name = "cbxLineWidth";
  243. this.cbxLineWidth.Size = new System.Drawing.Size(70, 21);
  244. this.cbxLineWidth.TabIndex = 2;
  245. this.cbxLineWidth.Text = "1";
  246. this.cbxLineWidth.WidthSelected += new System.EventHandler(this.cbxLineWidth_WidthSelected);
  247. //
  248. // lblLineWidth
  249. //
  250. this.lblLineWidth.AutoSize = true;
  251. this.lblLineWidth.Location = new System.Drawing.Point(12, 134);
  252. this.lblLineWidth.Name = "lblLineWidth";
  253. this.lblLineWidth.Size = new System.Drawing.Size(35, 13);
  254. this.lblLineWidth.TabIndex = 3;
  255. this.lblLineWidth.Text = "Width";
  256. //
  257. // cbxLineColor
  258. //
  259. this.cbxLineColor.Color = System.Drawing.Color.Transparent;
  260. this.cbxLineColor.Location = new System.Drawing.Point(12, 192);
  261. this.cbxLineColor.Name = "cbxLineColor";
  262. this.cbxLineColor.Size = new System.Drawing.Size(70, 21);
  263. this.cbxLineColor.TabIndex = 4;
  264. this.cbxLineColor.ColorSelected += new System.EventHandler(this.cbxLineColor_ColorSelected);
  265. //
  266. // lblLineColor
  267. //
  268. this.lblLineColor.AutoSize = true;
  269. this.lblLineColor.Location = new System.Drawing.Point(12, 174);
  270. this.lblLineColor.Name = "lblLineColor";
  271. this.lblLineColor.Size = new System.Drawing.Size(32, 13);
  272. this.lblLineColor.TabIndex = 5;
  273. this.lblLineColor.Text = "Color";
  274. //
  275. // lblHint
  276. //
  277. this.lblHint.Location = new System.Drawing.Point(8, 236);
  278. this.lblHint.Name = "lblHint";
  279. this.lblHint.Size = new System.Drawing.Size(288, 36);
  280. this.lblHint.Anchor = System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Top;
  281. this.lblHint.TabIndex = 2;
  282. this.lblHint.Text = "Hint";
  283. //
  284. // BorderEditorForm
  285. //
  286. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  287. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  288. this.ClientSize = new System.Drawing.Size(305, 309);
  289. this.Controls.Add(this.gbBorder);
  290. this.Controls.Add(this.gbLine);
  291. this.Controls.Add(this.lblHint);
  292. this.Name = "BorderEditorForm";
  293. this.Text = "Border Editor";
  294. this.Controls.SetChildIndex(this.lblHint, 0);
  295. this.Controls.SetChildIndex(this.btnOk, 0);
  296. this.Controls.SetChildIndex(this.gbLine, 0);
  297. this.Controls.SetChildIndex(this.btnCancel, 0);
  298. this.Controls.SetChildIndex(this.gbBorder, 0);
  299. this.gbBorder.ResumeLayout(false);
  300. this.gbBorder.PerformLayout();
  301. this.gbLine.ResumeLayout(false);
  302. this.gbLine.PerformLayout();
  303. this.ResumeLayout(false);
  304. }
  305. #endregion
  306. private GroupBox gbBorder;
  307. private GroupBox gbLine;
  308. private Button btnAllLines;
  309. private Button btnNoLines;
  310. private CheckBox cbTopLine;
  311. private CheckBox cbBottomLine;
  312. private CheckBox cbLeftLine;
  313. private CheckBox cbRightLine;
  314. private Label lblStyle;
  315. private LineStyleControl lsLineStyle;
  316. private Label lblLineWidth;
  317. private LineWidthComboBox cbxLineWidth;
  318. private Label lblLineColor;
  319. private ColorComboBox cbxLineColor;
  320. private LabelLine lblShadow;
  321. private Label lblShadowWidth;
  322. private LineWidthComboBox cbxShadowWidth;
  323. private Label lblShadowColor;
  324. private ColorComboBox cbxShadowColor;
  325. private Label lblHint;
  326. private BorderSample pnSample;
  327. private CheckBox cbShadow;
  328. }
  329. }