123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- using System.Drawing;
- using System.Windows.Forms;
- namespace FastReport.Forms
- {
- partial class CloudDataSourceForm
- {
- /// <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 Windows Form 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.SelectSourcesLabel = new System.Windows.Forms.Label();
- this.NoConnectionsLabel = new System.Windows.Forms.Label();
- this.listView1 = new System.Windows.Forms.ListView();
- this.DSName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.DSConnectionType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.DSStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.subscriptionsCmbx = new System.Windows.Forms.ComboBox();
- this.SuspendLayout();
- //
- // btnOk
- //
- this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnOk.Enabled = false;
- this.btnOk.Location = new System.Drawing.Point(274, 283);
- //
- // btnCancel
- //
- this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnCancel.Location = new System.Drawing.Point(355, 283);
- //
- // SelectSourcesLabel
- //
- this.SelectSourcesLabel.AutoSize = true;
- this.SelectSourcesLabel.Location = new System.Drawing.Point(12, 9);
- this.SelectSourcesLabel.Name = "SelectSourcesLabel";
- this.SelectSourcesLabel.Size = new System.Drawing.Size(226, 13);
- this.SelectSourcesLabel.TabIndex = 1;
- this.SelectSourcesLabel.Text = "Select data source for your report from Cloud";
- //
- // NoConnectionsLabel
- //
- this.NoConnectionsLabel.AutoSize = true;
- this.NoConnectionsLabel.Location = new System.Drawing.Point(20, 55);
- this.NoConnectionsLabel.Name = "NoConnectionsLabel";
- this.NoConnectionsLabel.Size = new System.Drawing.Size(156, 13);
- this.NoConnectionsLabel.TabIndex = 3;
- this.NoConnectionsLabel.Text = "No available data source found";
- this.NoConnectionsLabel.Visible = false;
- //
- // listView1
- //
- this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
- this.DSName,
- this.DSConnectionType,
- this.DSStatus});
- this.listView1.FullRowSelect = true;
- this.listView1.HideSelection = false;
- this.listView1.Location = new System.Drawing.Point(12, 34);
- this.listView1.Name = "listView1";
- this.listView1.Size = new System.Drawing.Size(418, 237);
- this.listView1.TabIndex = 2;
- this.listView1.UseCompatibleStateImageBehavior = false;
- this.listView1.View = System.Windows.Forms.View.Details;
- this.listView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.ListView1OnMouseClick);
- //
- // DSName
- //
- this.DSName.Text = "Name";
- this.DSName.Width = 128;
- //
- // DSConnectionType
- //
- this.DSConnectionType.Text = "Type";
- this.DSConnectionType.Width = 90;
- //
- // DSStatus
- //
- this.DSStatus.Text = "Status";
- this.DSStatus.Width = 90;
- //
- // subscriptionsCmbx
- //
- this.subscriptionsCmbx.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.subscriptionsCmbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.subscriptionsCmbx.Location = new System.Drawing.Point(12, 283);
- this.subscriptionsCmbx.Name = "subscriptionsCmbx";
- this.subscriptionsCmbx.Size = new System.Drawing.Size(175, 21);
- this.subscriptionsCmbx.TabIndex = 4;
- this.subscriptionsCmbx.SelectedValueChanged += new System.EventHandler(this.SubscriptionsCmbxOnSelectedValueChanged);
- //
- // CloudDataSourceForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.ClientSize = new System.Drawing.Size(442, 316);
- this.Controls.Add(this.listView1);
- this.Controls.Add(this.SelectSourcesLabel);
- this.Controls.Add(this.NoConnectionsLabel);
- this.Controls.Add(this.subscriptionsCmbx);
- this.Name = "CloudDataSourceForm";
- this.Text = "Form1";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.CloudDataSourceForm_FormClosed);
- this.Controls.SetChildIndex(this.subscriptionsCmbx, 0);
- this.Controls.SetChildIndex(this.NoConnectionsLabel, 0);
- this.Controls.SetChildIndex(this.btnOk, 0);
- this.Controls.SetChildIndex(this.btnCancel, 0);
- this.Controls.SetChildIndex(this.SelectSourcesLabel, 0);
- this.Controls.SetChildIndex(this.listView1, 0);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private ColumnHeader DSName;
- private ColumnHeader DSConnectionType;
- private ColumnHeader DSStatus;
- private System.Windows.Forms.Label SelectSourcesLabel;
- private System.Windows.Forms.Label NoConnectionsLabel;
- private System.Windows.Forms.ListView listView1;
- private System.Windows.Forms.ComboBox subscriptionsCmbx;
- }
- }
|