ClientInfoForm.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. namespace FastReport.Cloud.StorageClient.GoogleDrive
  2. {
  3. partial class ClientInfoForm
  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.labelClientId = new System.Windows.Forms.Label();
  29. this.labelClientSecret = new System.Windows.Forms.Label();
  30. this.tbClientId = new System.Windows.Forms.TextBox();
  31. this.tbClientSecret = new System.Windows.Forms.TextBox();
  32. this.labelKey = new System.Windows.Forms.Label();
  33. this.tbClientKey = new System.Windows.Forms.TextBox();
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // btnOk
  38. //
  39. this.btnOk.Location = new System.Drawing.Point(0, 0);
  40. this.btnOk.Visible = false;
  41. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  42. //
  43. // btnCancel
  44. //
  45. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  46. this.btnCancel.Location = new System.Drawing.Point(307, 64);
  47. //
  48. // labelClientId
  49. //
  50. this.labelClientId.AutoSize = true;
  51. this.labelClientId.Location = new System.Drawing.Point(12, 15);
  52. this.labelClientId.Name = "labelClientId";
  53. this.labelClientId.Size = new System.Drawing.Size(52, 13);
  54. this.labelClientId.TabIndex = 1;
  55. this.labelClientId.Text = "Client ID:";
  56. //
  57. // labelClientSecret
  58. //
  59. this.labelClientSecret.AutoSize = true;
  60. this.labelClientSecret.Location = new System.Drawing.Point(12, 41);
  61. this.labelClientSecret.Name = "labelClientSecret";
  62. this.labelClientSecret.Size = new System.Drawing.Size(72, 13);
  63. this.labelClientSecret.TabIndex = 2;
  64. this.labelClientSecret.Text = "Client Secret:";
  65. //
  66. // tbClientId
  67. //
  68. this.tbClientId.Location = new System.Drawing.Point(142, 12);
  69. this.tbClientId.Name = "tbClientId";
  70. this.tbClientId.Size = new System.Drawing.Size(240, 20);
  71. this.tbClientId.TabIndex = 3;
  72. //
  73. // tbClientSecret
  74. //
  75. this.tbClientSecret.Location = new System.Drawing.Point(142, 38);
  76. this.tbClientSecret.Name = "tbClientSecret";
  77. this.tbClientSecret.Size = new System.Drawing.Size(240, 20);
  78. this.tbClientSecret.TabIndex = 4;
  79. //
  80. // labelKey
  81. //
  82. this.labelKey.AutoSize = true;
  83. this.labelKey.Location = new System.Drawing.Point(12, 64);
  84. this.labelKey.Name = "labelKey";
  85. this.labelKey.Size = new System.Drawing.Size(82, 13);
  86. this.labelKey.TabIndex = 2;
  87. this.labelKey.Text = "Client AuthKey:";
  88. this.labelKey.Visible = false;
  89. //
  90. // tbClientKey
  91. //
  92. this.tbClientKey.Location = new System.Drawing.Point(142, 64);
  93. this.tbClientKey.Name = "tbClientKey";
  94. this.tbClientKey.Size = new System.Drawing.Size(240, 20);
  95. this.tbClientKey.TabIndex = 4;
  96. this.tbClientKey.Visible = false;
  97. //
  98. // button1
  99. //
  100. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  101. this.button1.Location = new System.Drawing.Point(226, 64);
  102. this.button1.Name = "button1";
  103. this.button1.Size = new System.Drawing.Size(75, 23);
  104. this.button1.TabIndex = 5;
  105. this.button1.Text = "OK";
  106. this.button1.UseVisualStyleBackColor = true;
  107. this.button1.Click += new System.EventHandler(this.btnOk_Click);
  108. //
  109. // ClientInfoForm
  110. //
  111. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  112. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  113. this.ClientSize = new System.Drawing.Size(394, 99);
  114. this.Controls.Add(this.button1);
  115. this.Controls.Add(this.tbClientId);
  116. this.Controls.Add(this.tbClientKey);
  117. this.Controls.Add(this.tbClientSecret);
  118. this.Controls.Add(this.labelKey);
  119. this.Controls.Add(this.labelClientSecret);
  120. this.Controls.Add(this.labelClientId);
  121. this.Name = "ClientInfoForm";
  122. this.Text = "Client Info";
  123. this.Controls.SetChildIndex(this.labelClientId, 0);
  124. this.Controls.SetChildIndex(this.labelClientSecret, 0);
  125. this.Controls.SetChildIndex(this.labelKey, 0);
  126. this.Controls.SetChildIndex(this.tbClientSecret, 0);
  127. this.Controls.SetChildIndex(this.tbClientKey, 0);
  128. this.Controls.SetChildIndex(this.tbClientId, 0);
  129. this.Controls.SetChildIndex(this.btnOk, 0);
  130. this.Controls.SetChildIndex(this.btnCancel, 0);
  131. this.Controls.SetChildIndex(this.button1, 0);
  132. this.ResumeLayout(false);
  133. this.PerformLayout();
  134. }
  135. #endregion
  136. private System.Windows.Forms.Label labelClientId;
  137. private System.Windows.Forms.Label labelClientSecret;
  138. private System.Windows.Forms.TextBox tbClientId;
  139. private System.Windows.Forms.TextBox tbClientSecret;
  140. private System.Windows.Forms.Label labelKey;
  141. private System.Windows.Forms.TextBox tbClientKey;
  142. private System.Windows.Forms.Button button1;
  143. }
  144. }