CloudDataSourceForm.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. using System.Drawing;
  2. using System.Windows.Forms;
  3. namespace FastReport.Forms
  4. {
  5. partial class CloudDataSourceForm
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.SelectSourcesLabel = new System.Windows.Forms.Label();
  31. this.NoConnectionsLabel = new System.Windows.Forms.Label();
  32. this.listView1 = new System.Windows.Forms.ListView();
  33. this.DSName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  34. this.DSConnectionType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  35. this.DSStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  36. this.subscriptionsCmbx = new System.Windows.Forms.ComboBox();
  37. this.SuspendLayout();
  38. //
  39. // btnOk
  40. //
  41. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  42. this.btnOk.Enabled = false;
  43. this.btnOk.Location = new System.Drawing.Point(274, 283);
  44. //
  45. // btnCancel
  46. //
  47. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  48. this.btnCancel.Location = new System.Drawing.Point(355, 283);
  49. //
  50. // SelectSourcesLabel
  51. //
  52. this.SelectSourcesLabel.AutoSize = true;
  53. this.SelectSourcesLabel.Location = new System.Drawing.Point(12, 9);
  54. this.SelectSourcesLabel.Name = "SelectSourcesLabel";
  55. this.SelectSourcesLabel.Size = new System.Drawing.Size(226, 13);
  56. this.SelectSourcesLabel.TabIndex = 1;
  57. this.SelectSourcesLabel.Text = "Select data source for your report from Cloud";
  58. //
  59. // NoConnectionsLabel
  60. //
  61. this.NoConnectionsLabel.AutoSize = true;
  62. this.NoConnectionsLabel.Location = new System.Drawing.Point(20, 55);
  63. this.NoConnectionsLabel.Name = "NoConnectionsLabel";
  64. this.NoConnectionsLabel.Size = new System.Drawing.Size(156, 13);
  65. this.NoConnectionsLabel.TabIndex = 3;
  66. this.NoConnectionsLabel.Text = "No available data source found";
  67. this.NoConnectionsLabel.Visible = false;
  68. //
  69. // listView1
  70. //
  71. this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  72. this.DSName,
  73. this.DSConnectionType,
  74. this.DSStatus});
  75. this.listView1.FullRowSelect = true;
  76. this.listView1.HideSelection = false;
  77. this.listView1.Location = new System.Drawing.Point(12, 34);
  78. this.listView1.Name = "listView1";
  79. this.listView1.Size = new System.Drawing.Size(418, 237);
  80. this.listView1.TabIndex = 2;
  81. this.listView1.UseCompatibleStateImageBehavior = false;
  82. this.listView1.View = System.Windows.Forms.View.Details;
  83. this.listView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.ListView1OnMouseClick);
  84. //
  85. // DSName
  86. //
  87. this.DSName.Text = "Name";
  88. this.DSName.Width = 128;
  89. //
  90. // DSConnectionType
  91. //
  92. this.DSConnectionType.Text = "Type";
  93. this.DSConnectionType.Width = 90;
  94. //
  95. // DSStatus
  96. //
  97. this.DSStatus.Text = "Status";
  98. this.DSStatus.Width = 90;
  99. //
  100. // subscriptionsCmbx
  101. //
  102. this.subscriptionsCmbx.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  103. this.subscriptionsCmbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  104. this.subscriptionsCmbx.Location = new System.Drawing.Point(12, 283);
  105. this.subscriptionsCmbx.Name = "subscriptionsCmbx";
  106. this.subscriptionsCmbx.Size = new System.Drawing.Size(175, 21);
  107. this.subscriptionsCmbx.TabIndex = 4;
  108. this.subscriptionsCmbx.SelectedValueChanged += new System.EventHandler(this.SubscriptionsCmbxOnSelectedValueChanged);
  109. //
  110. // CloudDataSourceForm
  111. //
  112. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  113. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  114. this.ClientSize = new System.Drawing.Size(442, 316);
  115. this.Controls.Add(this.listView1);
  116. this.Controls.Add(this.SelectSourcesLabel);
  117. this.Controls.Add(this.NoConnectionsLabel);
  118. this.Controls.Add(this.subscriptionsCmbx);
  119. this.Name = "CloudDataSourceForm";
  120. this.Text = "Form1";
  121. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.CloudDataSourceForm_FormClosed);
  122. this.Controls.SetChildIndex(this.subscriptionsCmbx, 0);
  123. this.Controls.SetChildIndex(this.NoConnectionsLabel, 0);
  124. this.Controls.SetChildIndex(this.btnOk, 0);
  125. this.Controls.SetChildIndex(this.btnCancel, 0);
  126. this.Controls.SetChildIndex(this.SelectSourcesLabel, 0);
  127. this.Controls.SetChildIndex(this.listView1, 0);
  128. this.ResumeLayout(false);
  129. this.PerformLayout();
  130. }
  131. #endregion
  132. private ColumnHeader DSName;
  133. private ColumnHeader DSConnectionType;
  134. private ColumnHeader DSStatus;
  135. private System.Windows.Forms.Label SelectSourcesLabel;
  136. private System.Windows.Forms.Label NoConnectionsLabel;
  137. private System.Windows.Forms.ListView listView1;
  138. private System.Windows.Forms.ComboBox subscriptionsCmbx;
  139. }
  140. }