XmlConnectionEditor.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. namespace FastReport.Data.ConnectionEditors
  2. {
  3. partial class XmlConnectionEditor
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.gbSelect = new System.Windows.Forms.GroupBox();
  29. this.tbXml = new FastReport.Controls.TextBoxButton();
  30. this.tbXsd = new FastReport.Controls.TextBoxButton();
  31. this.lblSelectXml = new System.Windows.Forms.Label();
  32. this.lblSelectXsd = new System.Windows.Forms.Label();
  33. this.gbSelect.SuspendLayout();
  34. this.SuspendLayout();
  35. //
  36. // gbSelect
  37. //
  38. this.gbSelect.Controls.Add(this.tbXml);
  39. this.gbSelect.Controls.Add(this.tbXsd);
  40. this.gbSelect.Controls.Add(this.lblSelectXml);
  41. this.gbSelect.Controls.Add(this.lblSelectXsd);
  42. this.gbSelect.Location = new System.Drawing.Point(8, 4);
  43. this.gbSelect.Name = "gbSelect";
  44. this.gbSelect.Size = new System.Drawing.Size(320, 128);
  45. this.gbSelect.TabIndex = 1;
  46. this.gbSelect.TabStop = false;
  47. this.gbSelect.Text = "Select database file";
  48. //
  49. // tbXml
  50. //
  51. this.tbXml.ButtonText = "";
  52. this.tbXml.Image = null;
  53. this.tbXml.Location = new System.Drawing.Point(12, 92);
  54. this.tbXml.Name = "tbXml";
  55. this.tbXml.Size = new System.Drawing.Size(296, 21);
  56. this.tbXml.TabIndex = 3;
  57. this.tbXml.ButtonClick += new System.EventHandler(this.tbXml_ButtonClick);
  58. //
  59. // tbXsd
  60. //
  61. this.tbXsd.ButtonText = "";
  62. this.tbXsd.Image = null;
  63. this.tbXsd.Location = new System.Drawing.Point(12, 40);
  64. this.tbXsd.Name = "tbXsd";
  65. this.tbXsd.Size = new System.Drawing.Size(296, 21);
  66. this.tbXsd.TabIndex = 2;
  67. this.tbXsd.ButtonClick += new System.EventHandler(this.tbXsd_ButtonClick);
  68. //
  69. // lblSelectXml
  70. //
  71. this.lblSelectXml.AutoSize = true;
  72. this.lblSelectXml.Location = new System.Drawing.Point(12, 72);
  73. this.lblSelectXml.Name = "lblSelectXml";
  74. this.lblSelectXml.Size = new System.Drawing.Size(77, 13);
  75. this.lblSelectXml.TabIndex = 1;
  76. this.lblSelectXml.Text = "Select .xml file:";
  77. //
  78. // lblSelectXsd
  79. //
  80. this.lblSelectXsd.AutoSize = true;
  81. this.lblSelectXsd.Location = new System.Drawing.Point(12, 20);
  82. this.lblSelectXsd.Name = "lblSelectXsd";
  83. this.lblSelectXsd.Size = new System.Drawing.Size(78, 13);
  84. this.lblSelectXsd.TabIndex = 0;
  85. this.lblSelectXsd.Text = "Select .xsd file:";
  86. //
  87. // XmlConnectionEditor
  88. //
  89. this.Controls.Add(this.gbSelect);
  90. this.Name = "XmlConnectionEditor";
  91. this.Size = new System.Drawing.Size(336, 140);
  92. this.gbSelect.ResumeLayout(false);
  93. this.gbSelect.PerformLayout();
  94. this.ResumeLayout(false);
  95. }
  96. #endregion
  97. private System.Windows.Forms.GroupBox gbSelect;
  98. private FastReport.Controls.TextBoxButton tbXml;
  99. private FastReport.Controls.TextBoxButton tbXsd;
  100. private System.Windows.Forms.Label lblSelectXml;
  101. private System.Windows.Forms.Label lblSelectXsd;
  102. }
  103. }