OutlineEditorForm.Designer.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. using FastReport.Controls;
  2. using System.Drawing.Drawing2D;
  3. namespace FastReport.Forms
  4. {
  5. partial class OutlineEditorForm
  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.cbxLineStyle = new System.Windows.Forms.ComboBox();
  31. this.cbxLineWidth = new FastReport.Controls.LineWidthComboBox();
  32. this.lblLineWidth = new System.Windows.Forms.Label();
  33. this.gbLine = new System.Windows.Forms.GroupBox();
  34. this.cbxDrawBehind = new System.Windows.Forms.CheckBox();
  35. this.lblStyle = new System.Windows.Forms.Label();
  36. this.cbxLineColor = new FastReport.Controls.ColorComboBox();
  37. this.lblLineColor = new System.Windows.Forms.Label();
  38. this.cbxEnabled = new System.Windows.Forms.CheckBox();
  39. this.gbLine.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // btnOk
  43. //
  44. this.btnOk.Location = new System.Drawing.Point(138, 141);
  45. //
  46. // btnCancel
  47. //
  48. this.btnCancel.Location = new System.Drawing.Point(219, 141);
  49. //
  50. // cbxLineStyle
  51. //
  52. this.cbxLineStyle.BackColor = System.Drawing.SystemColors.Window;
  53. this.cbxLineStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  54. this.cbxLineStyle.Items.AddRange(new object[] {
  55. "Solid",
  56. "Dot",
  57. "Dash",
  58. "DashDot",
  59. "DashDotDot"});
  60. this.cbxLineStyle.Location = new System.Drawing.Point(15, 32);
  61. this.cbxLineStyle.Name = "cbxLineStyle";
  62. this.cbxLineStyle.Size = new System.Drawing.Size(82, 21);
  63. this.cbxLineStyle.TabIndex = 0;
  64. this.cbxLineStyle.SelectedValueChanged += new System.EventHandler(this.cbxLineStyle_SelectedValueChanged);
  65. //
  66. // cbxLineWidth
  67. //
  68. this.cbxLineWidth.Location = new System.Drawing.Point(112, 32);
  69. this.cbxLineWidth.Name = "cbxLineWidth";
  70. this.cbxLineWidth.Size = new System.Drawing.Size(70, 21);
  71. this.cbxLineWidth.TabIndex = 2;
  72. this.cbxLineWidth.Text = "1";
  73. this.cbxLineWidth.WidthSelected += new System.EventHandler(this.cbxLineWidth_WidthSelected);
  74. //
  75. // lblLineWidth
  76. //
  77. this.lblLineWidth.AutoSize = true;
  78. this.lblLineWidth.Location = new System.Drawing.Point(109, 16);
  79. this.lblLineWidth.Name = "lblLineWidth";
  80. this.lblLineWidth.Size = new System.Drawing.Size(35, 13);
  81. this.lblLineWidth.TabIndex = 3;
  82. this.lblLineWidth.Text = "Width";
  83. //
  84. // gbLine
  85. //
  86. this.gbLine.Controls.Add(this.cbxDrawBehind);
  87. this.gbLine.Controls.Add(this.cbxLineStyle);
  88. this.gbLine.Controls.Add(this.lblStyle);
  89. this.gbLine.Controls.Add(this.cbxLineWidth);
  90. this.gbLine.Controls.Add(this.lblLineWidth);
  91. this.gbLine.Controls.Add(this.cbxLineColor);
  92. this.gbLine.Controls.Add(this.lblLineColor);
  93. this.gbLine.Location = new System.Drawing.Point(12, 35);
  94. this.gbLine.Name = "gbLine";
  95. this.gbLine.Size = new System.Drawing.Size(282, 100);
  96. this.gbLine.TabIndex = 2;
  97. this.gbLine.TabStop = false;
  98. //
  99. // cbxDrawBehind
  100. //
  101. this.cbxDrawBehind.Location = new System.Drawing.Point(15, 68);
  102. this.cbxDrawBehind.Name = "cbxDrawBehind";
  103. this.cbxDrawBehind.AutoSize = true;
  104. this.cbxDrawBehind.TabIndex = 6;
  105. this.cbxDrawBehind.Text = "Draw behind";
  106. this.cbxDrawBehind.UseVisualStyleBackColor = true;
  107. this.cbxDrawBehind.CheckedChanged += new System.EventHandler(this.cbxDrawBehind_CheckedChanged);
  108. //
  109. // lblStyle
  110. //
  111. this.lblStyle.AutoSize = true;
  112. this.lblStyle.Location = new System.Drawing.Point(12, 16);
  113. this.lblStyle.Name = "lblStyle";
  114. this.lblStyle.Size = new System.Drawing.Size(31, 13);
  115. this.lblStyle.TabIndex = 1;
  116. this.lblStyle.Text = "Style";
  117. //
  118. // cbxLineColor
  119. //
  120. this.cbxLineColor.Color = System.Drawing.Color.Transparent;
  121. this.cbxLineColor.Location = new System.Drawing.Point(197, 32);
  122. this.cbxLineColor.Name = "cbxLineColor";
  123. this.cbxLineColor.Size = new System.Drawing.Size(70, 21);
  124. this.cbxLineColor.TabIndex = 4;
  125. this.cbxLineColor.ColorSelected += new System.EventHandler(this.cbxLineColor_ColorSelected);
  126. //
  127. // lblLineColor
  128. //
  129. this.lblLineColor.AutoSize = true;
  130. this.lblLineColor.Location = new System.Drawing.Point(194, 16);
  131. this.lblLineColor.Name = "lblLineColor";
  132. this.lblLineColor.Size = new System.Drawing.Size(32, 13);
  133. this.lblLineColor.TabIndex = 5;
  134. this.lblLineColor.Text = "Color";
  135. //
  136. // cbxEnabled
  137. //
  138. this.cbxEnabled.Location = new System.Drawing.Point(12, 12);
  139. this.cbxEnabled.Name = "cbxEnabled";
  140. this.cbxEnabled.AutoSize = true;
  141. this.cbxEnabled.TabIndex = 3;
  142. this.cbxEnabled.Text = "Enabled";
  143. this.cbxEnabled.UseVisualStyleBackColor = true;
  144. this.cbxEnabled.CheckedChanged += new System.EventHandler(this.cbxEnabled_CheckedChanged);
  145. //
  146. // OutlineEditorForm
  147. //
  148. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  149. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  150. this.ClientSize = new System.Drawing.Size(306, 176);
  151. this.Controls.Add(this.cbxEnabled);
  152. this.Controls.Add(this.gbLine);
  153. this.Name = "OutlineEditorForm";
  154. this.Text = "Outline Editor";
  155. this.Controls.SetChildIndex(this.gbLine, 0);
  156. this.Controls.SetChildIndex(this.btnCancel, 0);
  157. this.Controls.SetChildIndex(this.btnOk, 0);
  158. this.Controls.SetChildIndex(this.cbxEnabled, 0);
  159. this.gbLine.ResumeLayout(false);
  160. this.gbLine.PerformLayout();
  161. this.ResumeLayout(false);
  162. }
  163. #endregion
  164. private System.Windows.Forms.ComboBox cbxLineStyle;
  165. private FastReport.Controls.LineWidthComboBox cbxLineWidth;
  166. private System.Windows.Forms.Label lblLineWidth;
  167. private System.Windows.Forms.GroupBox gbLine;
  168. private FastReport.Controls.ColorComboBox cbxLineColor;
  169. private System.Windows.Forms.Label lblLineColor;
  170. private System.Windows.Forms.Label lblStyle;
  171. private System.Windows.Forms.CheckBox cbxDrawBehind;
  172. private System.Windows.Forms.CheckBox cbxEnabled;
  173. }
  174. }