ReportDataForm.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class ReportDataForm
  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.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReportDataForm));
  31. this.tvData = new FastReport.Controls.DataTreeView();
  32. this.cbAliases = new System.Windows.Forms.CheckBox();
  33. this.lblHint = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // btnOk
  37. //
  38. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  39. this.btnOk.Location = new System.Drawing.Point(104, 261);
  40. //
  41. // btnCancel
  42. //
  43. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  44. this.btnCancel.Location = new System.Drawing.Point(184, 261);
  45. //
  46. // tvData
  47. //
  48. this.tvData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  49. | System.Windows.Forms.AnchorStyles.Left)
  50. | System.Windows.Forms.AnchorStyles.Right)));
  51. this.tvData.CheckBoxes = true;
  52. this.tvData.ImageIndex = 0;
  53. this.tvData.Location = new System.Drawing.Point(12, 44);
  54. this.tvData.Name = "tvData";
  55. this.tvData.SelectedImageIndex = 0;
  56. this.tvData.ShowColumns = true;
  57. this.tvData.ShowDataSources = true;
  58. this.tvData.ShowEnabledOnly = false;
  59. this.tvData.ShowFunctions = false;
  60. this.tvData.ShowLines = false;
  61. this.tvData.ShowNone = false;
  62. this.tvData.ShowParameters = false;
  63. this.tvData.ShowRelations = true;
  64. this.tvData.ShowTotals = false;
  65. this.tvData.ShowVariables = false;
  66. this.tvData.Size = new System.Drawing.Size(248, 182);
  67. this.tvData.TabIndex = 1;
  68. this.tvData.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvData_AfterCheck);
  69. this.tvData.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvData_BeforeExpand);
  70. //
  71. // cbAliases
  72. //
  73. this.cbAliases.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  74. this.cbAliases.AutoSize = true;
  75. this.cbAliases.Checked = true;
  76. this.cbAliases.CheckState = System.Windows.Forms.CheckState.Checked;
  77. this.cbAliases.Location = new System.Drawing.Point(12, 234);
  78. this.cbAliases.Name = "cbAliases";
  79. this.cbAliases.Size = new System.Drawing.Size(87, 17);
  80. this.cbAliases.TabIndex = 2;
  81. this.cbAliases.Text = "Show aliases";
  82. this.cbAliases.UseVisualStyleBackColor = true;
  83. this.cbAliases.CheckedChanged += new System.EventHandler(this.cbAliases_CheckedChanged);
  84. //
  85. // lblHint
  86. //
  87. this.lblHint.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  88. | System.Windows.Forms.AnchorStyles.Right)));
  89. this.lblHint.Location = new System.Drawing.Point(12, 8);
  90. this.lblHint.Name = "lblHint";
  91. this.lblHint.Size = new System.Drawing.Size(248, 32);
  92. this.lblHint.TabIndex = 3;
  93. this.lblHint.Text = "Select data sources and fields that you want to use in the report:";
  94. //
  95. // ReportDataForm
  96. //
  97. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  98. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  99. this.ClientSize = new System.Drawing.Size(272, 296);
  100. this.Controls.Add(this.lblHint);
  101. this.Controls.Add(this.cbAliases);
  102. this.Controls.Add(this.tvData);
  103. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  104. this.Name = "ReportDataForm";
  105. this.ShowIcon = false;
  106. this.Text = "Select Data Sources";
  107. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ReportDataForm_FormClosing);
  108. this.Controls.SetChildIndex(this.btnCancel, 0);
  109. this.Controls.SetChildIndex(this.btnOk, 0);
  110. this.Controls.SetChildIndex(this.tvData, 0);
  111. this.Controls.SetChildIndex(this.cbAliases, 0);
  112. this.Controls.SetChildIndex(this.lblHint, 0);
  113. this.ResumeLayout(false);
  114. this.PerformLayout();
  115. }
  116. #endregion
  117. private FastReport.Controls.DataTreeView tvData;
  118. private System.Windows.Forms.CheckBox cbAliases;
  119. private System.Windows.Forms.Label lblHint;
  120. }
  121. }