123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- using FastReport.Controls;
- namespace FastReport.Data.ConnectionEditors
- {
- partial class JsonDataSourceConnectionEditor
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Component Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.gbConnection = new System.Windows.Forms.GroupBox();
- this.lbHeaders = new System.Windows.Forms.Label();
- this.dgvHeaders = new System.Windows.Forms.DataGridView();
- this.colHeader = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.colContent = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.lbJsonSchema = new System.Windows.Forms.Label();
- this.tbJsonSchema = new FastReport.Controls.TextBoxButton();
- this.lbEncoding = new System.Windows.Forms.Label();
- this.cbEnconding = new System.Windows.Forms.ComboBox();
- this.lbJson = new System.Windows.Forms.Label();
- this.tbJson = new FastReport.Controls.TextBoxButton();
- this.cbSimpleStructure = new System.Windows.Forms.CheckBox();
- this.gbConnection.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvHeaders)).BeginInit();
- this.SuspendLayout();
- //
- // gbConnection
- //
- this.gbConnection.Controls.Add(this.cbSimpleStructure);
- this.gbConnection.Controls.Add(this.lbHeaders);
- this.gbConnection.Controls.Add(this.dgvHeaders);
- this.gbConnection.Controls.Add(this.lbJsonSchema);
- this.gbConnection.Controls.Add(this.tbJsonSchema);
- this.gbConnection.Controls.Add(this.lbEncoding);
- this.gbConnection.Controls.Add(this.cbEnconding);
- this.gbConnection.Controls.Add(this.lbJson);
- this.gbConnection.Controls.Add(this.tbJson);
- this.gbConnection.Location = new System.Drawing.Point(8, 4);
- this.gbConnection.Margin = new System.Windows.Forms.Padding(8, 4, 8, 4);
- this.gbConnection.Name = "gbConnection";
- this.gbConnection.Size = new System.Drawing.Size(320, 263);
- this.gbConnection.TabIndex = 0;
- this.gbConnection.TabStop = false;
- this.gbConnection.Text = "Connection settings";
- //
- // lbHeaders
- //
- this.lbHeaders.AutoSize = true;
- this.lbHeaders.Location = new System.Drawing.Point(8, 140);
- this.lbHeaders.Name = "lbHeaders";
- this.lbHeaders.Size = new System.Drawing.Size(47, 13);
- this.lbHeaders.TabIndex = 12;
- this.lbHeaders.Text = "Headers";
- //
- // dgvHeaders
- //
- this.dgvHeaders.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dgvHeaders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvHeaders.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.colHeader,
- this.colContent});
- this.dgvHeaders.Location = new System.Drawing.Point(11, 156);
- this.dgvHeaders.Name = "dgvHeaders";
- this.dgvHeaders.RowHeadersVisible = false;
- this.dgvHeaders.Size = new System.Drawing.Size(303, 71);
- this.dgvHeaders.TabIndex = 4;
- //
- // colHeader
- //
- this.colHeader.HeaderText = "Header";
- this.colHeader.Name = "colHeader";
- //
- // colContent
- //
- this.colContent.HeaderText = "Content";
- this.colContent.Name = "colContent";
- //
- // lbJsonSchema
- //
- this.lbJsonSchema.AutoSize = true;
- this.lbJsonSchema.Location = new System.Drawing.Point(8, 94);
- this.lbJsonSchema.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0);
- this.lbJsonSchema.Name = "lbJsonSchema";
- this.lbJsonSchema.Size = new System.Drawing.Size(71, 13);
- this.lbJsonSchema.TabIndex = 10;
- this.lbJsonSchema.Text = "Json Schema";
- //
- // tbJsonSchema
- //
- this.tbJsonSchema.ButtonText = "...";
- this.tbJsonSchema.Image = null;
- this.tbJsonSchema.Location = new System.Drawing.Point(11, 110);
- this.tbJsonSchema.Margin = new System.Windows.Forms.Padding(8, 3, 3, 5);
- this.tbJsonSchema.Name = "tbJsonSchema";
- this.tbJsonSchema.Size = new System.Drawing.Size(303, 20);
- this.tbJsonSchema.TabIndex = 2;
- this.tbJsonSchema.ButtonClick += new System.EventHandler(this.BtnJsonSchema_Click);
- //
- // lbEncoding
- //
- this.lbEncoding.AutoSize = true;
- this.lbEncoding.Location = new System.Drawing.Point(8, 25);
- this.lbEncoding.Margin = new System.Windows.Forms.Padding(3, 0, 3, 5);
- this.lbEncoding.Name = "lbEncoding";
- this.lbEncoding.Size = new System.Drawing.Size(52, 13);
- this.lbEncoding.TabIndex = 4;
- this.lbEncoding.Text = "Encoding";
- //
- // cbEnconding
- //
- this.cbEnconding.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbEnconding.FormattingEnabled = true;
- this.cbEnconding.Location = new System.Drawing.Point(172, 22);
- this.cbEnconding.Margin = new System.Windows.Forms.Padding(3, 3, 8, 3);
- this.cbEnconding.Name = "cbEnconding";
- this.cbEnconding.Size = new System.Drawing.Size(142, 21);
- this.cbEnconding.TabIndex = 0;
- this.cbEnconding.SelectedIndexChanged += new System.EventHandler(this.ComboBox1_SelectedIndexChanged);
- //
- // lbJson
- //
- this.lbJson.AutoSize = true;
- this.lbJson.Location = new System.Drawing.Point(8, 48);
- this.lbJson.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0);
- this.lbJson.Name = "lbJson";
- this.lbJson.Size = new System.Drawing.Size(32, 13);
- this.lbJson.TabIndex = 2;
- this.lbJson.Text = "Json ";
- //
- // tbJson
- //
- this.tbJson.ButtonText = "...";
- this.tbJson.Image = null;
- this.tbJson.Location = new System.Drawing.Point(11, 64);
- this.tbJson.Margin = new System.Windows.Forms.Padding(8, 3, 0, 5);
- this.tbJson.Name = "tbJson";
- this.tbJson.Size = new System.Drawing.Size(303, 20);
- this.tbJson.TabIndex = 1;
- this.tbJson.ButtonClick += new System.EventHandler(this.BtnJson_Click);
- //
- // cbSimpleStructure
- //
- this.cbSimpleStructure.AutoSize = true;
- this.cbSimpleStructure.Location = new System.Drawing.Point(11, 240);
- this.cbSimpleStructure.Name = "cbSimpleStructure";
- this.cbSimpleStructure.Size = new System.Drawing.Size(101, 17);
- this.cbSimpleStructure.TabIndex = 5;
- this.cbSimpleStructure.Text = "Simple structure";
- this.cbSimpleStructure.UseVisualStyleBackColor = true;
- //
- // JsonDataSourceConnectionEditor
- //
- this.Controls.Add(this.gbConnection);
- this.Name = "JsonDataSourceConnectionEditor";
- this.Size = new System.Drawing.Size(336, 279);
- this.gbConnection.ResumeLayout(false);
- this.gbConnection.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvHeaders)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.GroupBox gbConnection;
- private TextBoxButton tbJson;
- private System.Windows.Forms.Label lbJson;
- private System.Windows.Forms.Label lbJsonSchema;
- private TextBoxButton tbJsonSchema;
- private System.Windows.Forms.Label lbEncoding;
- private System.Windows.Forms.ComboBox cbEnconding;
- private System.Windows.Forms.Label lbHeaders;
- private System.Windows.Forms.DataGridView dgvHeaders;
- private System.Windows.Forms.DataGridViewTextBoxColumn colHeader;
- private System.Windows.Forms.DataGridViewTextBoxColumn colContent;
- private System.Windows.Forms.CheckBox cbSimpleStructure;
- }
- }
|