GalleryForm.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using FastReport.Controls;
  2. namespace FastReport.MSChart
  3. {
  4. partial class GalleryForm
  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.cbNewArea = new System.Windows.Forms.CheckBox();
  30. this.pcPages = new FastReport.Controls.PageControl();
  31. this.SuspendLayout();
  32. //
  33. // btnOk
  34. //
  35. this.btnOk.Enabled = false;
  36. this.btnOk.Location = new System.Drawing.Point(308, 412);
  37. //
  38. // btnCancel
  39. //
  40. this.btnCancel.Location = new System.Drawing.Point(388, 412);
  41. //
  42. // cbNewArea
  43. //
  44. this.cbNewArea.AutoSize = true;
  45. this.cbNewArea.Location = new System.Drawing.Point(12, 416);
  46. this.cbNewArea.Name = "cbNewArea";
  47. this.cbNewArea.Size = new System.Drawing.Size(198, 17);
  48. this.cbNewArea.TabIndex = 4;
  49. this.cbNewArea.Text = "Add new series with own chart area";
  50. this.cbNewArea.UseVisualStyleBackColor = true;
  51. //
  52. // pcPages
  53. //
  54. this.pcPages.Location = new System.Drawing.Point(12, 12);
  55. this.pcPages.Name = "pcPages";
  56. this.pcPages.SelectorWidth = 140;
  57. this.pcPages.Size = new System.Drawing.Size(452, 388);
  58. this.pcPages.TabIndex = 5;
  59. this.pcPages.Text = "pageControl1";
  60. //
  61. // GalleryForm
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  65. this.ClientSize = new System.Drawing.Size(475, 447);
  66. this.Controls.Add(this.pcPages);
  67. this.Controls.Add(this.cbNewArea);
  68. this.Name = "GalleryForm";
  69. this.Text = "Gallery";
  70. this.Shown += new System.EventHandler(this.GalleryForm_Shown);
  71. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.GalleryForm_FormClosed);
  72. this.Controls.SetChildIndex(this.btnOk, 0);
  73. this.Controls.SetChildIndex(this.btnCancel, 0);
  74. this.Controls.SetChildIndex(this.cbNewArea, 0);
  75. this.Controls.SetChildIndex(this.pcPages, 0);
  76. this.ResumeLayout(false);
  77. this.PerformLayout();
  78. }
  79. #endregion
  80. private System.Windows.Forms.CheckBox cbNewArea;
  81. private FastReport.Controls.PageControl pcPages;
  82. }
  83. }