HighlightEditorForm.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class HighlightEditorForm
  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.gbConditions = new System.Windows.Forms.GroupBox();
  30. this.lvConditions = new System.Windows.Forms.ListView();
  31. this.btnDown = new System.Windows.Forms.Button();
  32. this.btnUp = new System.Windows.Forms.Button();
  33. this.btnEdit = new System.Windows.Forms.Button();
  34. this.btnDelete = new System.Windows.Forms.Button();
  35. this.btnAdd = new System.Windows.Forms.Button();
  36. this.gbStyle = new System.Windows.Forms.GroupBox();
  37. this.cbVisible = new System.Windows.Forms.CheckBox();
  38. this.cbApplyFont = new System.Windows.Forms.CheckBox();
  39. this.cbApplyTextFill = new System.Windows.Forms.CheckBox();
  40. this.cbApplyBorder = new System.Windows.Forms.CheckBox();
  41. this.cbApplyFill = new System.Windows.Forms.CheckBox();
  42. this.pnSample = new System.Windows.Forms.Panel();
  43. this.btnFont = new System.Windows.Forms.Button();
  44. this.btnTextColor = new System.Windows.Forms.Button();
  45. this.btnBorder = new System.Windows.Forms.Button();
  46. this.btnFill = new System.Windows.Forms.Button();
  47. this.gbConditions.SuspendLayout();
  48. this.gbStyle.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // btnOk
  52. //
  53. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  54. this.btnOk.Location = new System.Drawing.Point(308, 256);
  55. //
  56. // btnCancel
  57. //
  58. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  59. this.btnCancel.Location = new System.Drawing.Point(388, 256);
  60. //
  61. // gbConditions
  62. //
  63. this.gbConditions.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  64. | System.Windows.Forms.AnchorStyles.Left)
  65. | System.Windows.Forms.AnchorStyles.Right)));
  66. this.gbConditions.Controls.Add(this.lvConditions);
  67. this.gbConditions.Controls.Add(this.btnDown);
  68. this.gbConditions.Controls.Add(this.btnUp);
  69. this.gbConditions.Controls.Add(this.btnEdit);
  70. this.gbConditions.Controls.Add(this.btnDelete);
  71. this.gbConditions.Controls.Add(this.btnAdd);
  72. this.gbConditions.Location = new System.Drawing.Point(8, 4);
  73. this.gbConditions.Name = "gbConditions";
  74. this.gbConditions.Size = new System.Drawing.Size(281, 241);
  75. this.gbConditions.TabIndex = 1;
  76. this.gbConditions.TabStop = false;
  77. this.gbConditions.Text = "Conditions";
  78. //
  79. // lvConditions
  80. //
  81. this.lvConditions.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  82. | System.Windows.Forms.AnchorStyles.Left)
  83. | System.Windows.Forms.AnchorStyles.Right)));
  84. this.lvConditions.HideSelection = false;
  85. this.lvConditions.Location = new System.Drawing.Point(12, 20);
  86. this.lvConditions.Name = "lvConditions";
  87. this.lvConditions.Size = new System.Drawing.Size(171, 210);
  88. this.lvConditions.TabIndex = 6;
  89. this.lvConditions.UseCompatibleStateImageBehavior = false;
  90. this.lvConditions.View = System.Windows.Forms.View.List;
  91. this.lvConditions.SelectedIndexChanged += new System.EventHandler(this.lvConditions_SelectedIndexChanged);
  92. //
  93. // btnDown
  94. //
  95. this.btnDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  96. this.btnDown.Location = new System.Drawing.Point(193, 205);
  97. this.btnDown.Name = "btnDown";
  98. this.btnDown.Size = new System.Drawing.Size(24, 23);
  99. this.btnDown.TabIndex = 5;
  100. this.btnDown.UseVisualStyleBackColor = true;
  101. this.btnDown.Click += new System.EventHandler(this.btnDown_Click);
  102. //
  103. // btnUp
  104. //
  105. this.btnUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  106. this.btnUp.Location = new System.Drawing.Point(193, 177);
  107. this.btnUp.Name = "btnUp";
  108. this.btnUp.Size = new System.Drawing.Size(24, 23);
  109. this.btnUp.TabIndex = 4;
  110. this.btnUp.UseVisualStyleBackColor = true;
  111. this.btnUp.Click += new System.EventHandler(this.btnUp_Click);
  112. //
  113. // btnEdit
  114. //
  115. this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  116. this.btnEdit.Location = new System.Drawing.Point(193, 76);
  117. this.btnEdit.Name = "btnEdit";
  118. this.btnEdit.Size = new System.Drawing.Size(75, 23);
  119. this.btnEdit.TabIndex = 3;
  120. this.btnEdit.Text = "Edit";
  121. this.btnEdit.UseVisualStyleBackColor = true;
  122. this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
  123. //
  124. // btnDelete
  125. //
  126. this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  127. this.btnDelete.Location = new System.Drawing.Point(193, 48);
  128. this.btnDelete.Name = "btnDelete";
  129. this.btnDelete.Size = new System.Drawing.Size(75, 23);
  130. this.btnDelete.TabIndex = 2;
  131. this.btnDelete.Text = "Delete";
  132. this.btnDelete.UseVisualStyleBackColor = true;
  133. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  134. //
  135. // btnAdd
  136. //
  137. this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  138. this.btnAdd.Location = new System.Drawing.Point(193, 20);
  139. this.btnAdd.Name = "btnAdd";
  140. this.btnAdd.Size = new System.Drawing.Size(75, 23);
  141. this.btnAdd.TabIndex = 1;
  142. this.btnAdd.Text = "Add";
  143. this.btnAdd.UseVisualStyleBackColor = true;
  144. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  145. //
  146. // gbStyle
  147. //
  148. this.gbStyle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  149. | System.Windows.Forms.AnchorStyles.Right)));
  150. this.gbStyle.Controls.Add(this.cbVisible);
  151. this.gbStyle.Controls.Add(this.cbApplyFont);
  152. this.gbStyle.Controls.Add(this.cbApplyTextFill);
  153. this.gbStyle.Controls.Add(this.cbApplyBorder);
  154. this.gbStyle.Controls.Add(this.cbApplyFill);
  155. this.gbStyle.Controls.Add(this.pnSample);
  156. this.gbStyle.Controls.Add(this.btnFont);
  157. this.gbStyle.Controls.Add(this.btnTextColor);
  158. this.gbStyle.Controls.Add(this.btnBorder);
  159. this.gbStyle.Controls.Add(this.btnFill);
  160. this.gbStyle.Location = new System.Drawing.Point(297, 4);
  161. this.gbStyle.Name = "gbStyle";
  162. this.gbStyle.Size = new System.Drawing.Size(167, 241);
  163. this.gbStyle.TabIndex = 2;
  164. this.gbStyle.TabStop = false;
  165. this.gbStyle.Text = "Style";
  166. //
  167. // cbVisible
  168. //
  169. this.cbVisible.Location = new System.Drawing.Point(12, 136);
  170. this.cbVisible.Name = "cbVisible";
  171. this.cbVisible.AutoSize = true;
  172. this.cbVisible.TabIndex = 5;
  173. this.cbVisible.Text = "Visible";
  174. this.cbVisible.UseVisualStyleBackColor = true;
  175. this.cbVisible.CheckedChanged += new System.EventHandler(this.cbVisible_CheckedChanged);
  176. //
  177. // cbApplyFont
  178. //
  179. this.cbApplyFont.Location = new System.Drawing.Point(12, 108);
  180. this.cbApplyFont.Name = "cbApplyFont";
  181. this.cbApplyFont.Size = new System.Drawing.Size(15, 17);
  182. this.cbApplyFont.TabIndex = 4;
  183. this.cbApplyFont.UseVisualStyleBackColor = true;
  184. this.cbApplyFont.CheckedChanged += new System.EventHandler(this.cbApplyFont_CheckedChanged);
  185. //
  186. // cbApplyTextFill
  187. //
  188. this.cbApplyTextFill.Location = new System.Drawing.Point(12, 80);
  189. this.cbApplyTextFill.Name = "cbApplyTextFill";
  190. this.cbApplyTextFill.Size = new System.Drawing.Size(15, 17);
  191. this.cbApplyTextFill.TabIndex = 4;
  192. this.cbApplyTextFill.UseVisualStyleBackColor = true;
  193. this.cbApplyTextFill.CheckedChanged += new System.EventHandler(this.cbApplyTextFill_CheckedChanged);
  194. //
  195. // cbApplyBorder
  196. //
  197. this.cbApplyBorder.Location = new System.Drawing.Point(12, 24);
  198. this.cbApplyBorder.Name = "cbApplyBorder";
  199. this.cbApplyBorder.Size = new System.Drawing.Size(15, 17);
  200. this.cbApplyBorder.TabIndex = 4;
  201. this.cbApplyBorder.UseVisualStyleBackColor = true;
  202. this.cbApplyBorder.CheckedChanged += new System.EventHandler(this.cbApplyBorder_CheckedChanged);
  203. //
  204. // cbApplyFill
  205. //
  206. this.cbApplyFill.Location = new System.Drawing.Point(12, 52);
  207. this.cbApplyFill.Name = "cbApplyFill";
  208. this.cbApplyFill.Size = new System.Drawing.Size(15, 17);
  209. this.cbApplyFill.TabIndex = 4;
  210. this.cbApplyFill.UseVisualStyleBackColor = true;
  211. this.cbApplyFill.CheckedChanged += new System.EventHandler(this.cbApplyFill_CheckedChanged);
  212. //
  213. // pnSample
  214. //
  215. this.pnSample.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  216. this.pnSample.Location = new System.Drawing.Point(12, 161);
  217. this.pnSample.Name = "pnSample";
  218. this.pnSample.Size = new System.Drawing.Size(144, 68);
  219. this.pnSample.TabIndex = 3;
  220. this.pnSample.Paint += new System.Windows.Forms.PaintEventHandler(this.pnSample_Paint);
  221. //
  222. // btnFont
  223. //
  224. this.btnFont.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  225. this.btnFont.Location = new System.Drawing.Point(36, 104);
  226. this.btnFont.Name = "btnFont";
  227. this.btnFont.Size = new System.Drawing.Size(120, 23);
  228. this.btnFont.TabIndex = 2;
  229. this.btnFont.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  230. this.btnFont.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  231. this.btnFont.UseVisualStyleBackColor = true;
  232. this.btnFont.Click += new System.EventHandler(this.btnFont_Click);
  233. //
  234. // btnTextColor
  235. //
  236. this.btnTextColor.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  237. this.btnTextColor.Location = new System.Drawing.Point(36, 76);
  238. this.btnTextColor.Name = "btnTextColor";
  239. this.btnTextColor.Size = new System.Drawing.Size(120, 23);
  240. this.btnTextColor.TabIndex = 2;
  241. this.btnTextColor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  242. this.btnTextColor.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  243. this.btnTextColor.UseVisualStyleBackColor = true;
  244. this.btnTextColor.Click += new System.EventHandler(this.btnTextColor_Click);
  245. //
  246. // btnBorder
  247. //
  248. this.btnBorder.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  249. this.btnBorder.Location = new System.Drawing.Point(36, 20);
  250. this.btnBorder.Name = "btnBorder";
  251. this.btnBorder.Size = new System.Drawing.Size(120, 23);
  252. this.btnBorder.TabIndex = 0;
  253. this.btnBorder.Text = "Border";
  254. this.btnBorder.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  255. this.btnBorder.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  256. this.btnBorder.UseVisualStyleBackColor = true;
  257. this.btnBorder.Click += new System.EventHandler(this.btnBorder_Click);
  258. //
  259. // btnFill
  260. //
  261. this.btnFill.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  262. this.btnFill.Location = new System.Drawing.Point(36, 48);
  263. this.btnFill.Name = "btnFill";
  264. this.btnFill.Size = new System.Drawing.Size(120, 23);
  265. this.btnFill.TabIndex = 0;
  266. this.btnFill.Text = "Fill";
  267. this.btnFill.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  268. this.btnFill.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  269. this.btnFill.UseVisualStyleBackColor = true;
  270. this.btnFill.Click += new System.EventHandler(this.btnFill_Click);
  271. //
  272. // HighlightEditorForm
  273. //
  274. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  275. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  276. this.ClientSize = new System.Drawing.Size(472, 288);
  277. this.Controls.Add(this.gbConditions);
  278. this.Controls.Add(this.gbStyle);
  279. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  280. this.Name = "HighlightEditorForm";
  281. this.ShowIcon = false;
  282. this.Text = "Highlight Conditions";
  283. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.HighlightEditorForm_FormClosed);
  284. this.Controls.SetChildIndex(this.gbStyle, 0);
  285. this.Controls.SetChildIndex(this.gbConditions, 0);
  286. this.Controls.SetChildIndex(this.btnCancel, 0);
  287. this.Controls.SetChildIndex(this.btnOk, 0);
  288. this.gbConditions.ResumeLayout(false);
  289. this.gbStyle.ResumeLayout(false);
  290. this.ResumeLayout(false);
  291. }
  292. #endregion
  293. private System.Windows.Forms.GroupBox gbConditions;
  294. private System.Windows.Forms.GroupBox gbStyle;
  295. private System.Windows.Forms.Button btnFill;
  296. private System.Windows.Forms.Panel pnSample;
  297. private System.Windows.Forms.Button btnTextColor;
  298. private System.Windows.Forms.Button btnDown;
  299. private System.Windows.Forms.Button btnUp;
  300. private System.Windows.Forms.Button btnEdit;
  301. private System.Windows.Forms.Button btnDelete;
  302. private System.Windows.Forms.Button btnAdd;
  303. private System.Windows.Forms.ListView lvConditions;
  304. private System.Windows.Forms.Button btnFont;
  305. private System.Windows.Forms.Button btnBorder;
  306. private System.Windows.Forms.CheckBox cbApplyFill;
  307. private System.Windows.Forms.CheckBox cbApplyFont;
  308. private System.Windows.Forms.CheckBox cbApplyTextFill;
  309. private System.Windows.Forms.CheckBox cbVisible;
  310. private System.Windows.Forms.CheckBox cbApplyBorder;
  311. }
  312. }