ClientInfoForm.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace FastReport.Cloud.StorageClient.Box
  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.SuspendLayout();
  33. //
  34. // btnOk
  35. //
  36. this.btnOk.Location = new System.Drawing.Point(226, 64);
  37. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  38. this.btnOk.TabIndex = 4;
  39. //
  40. // btnCancel
  41. //
  42. this.btnCancel.Location = new System.Drawing.Point(307, 64);
  43. this.btnCancel.TabIndex = 5;
  44. //
  45. // labelClientId
  46. //
  47. this.labelClientId.AutoSize = true;
  48. this.labelClientId.Location = new System.Drawing.Point(12, 15);
  49. this.labelClientId.Name = "labelClientId";
  50. this.labelClientId.Size = new System.Drawing.Size(52, 13);
  51. this.labelClientId.TabIndex = 0;
  52. this.labelClientId.Text = "Client ID:";
  53. //
  54. // labelClientSecret
  55. //
  56. this.labelClientSecret.AutoSize = true;
  57. this.labelClientSecret.Location = new System.Drawing.Point(12, 41);
  58. this.labelClientSecret.Name = "labelClientSecret";
  59. this.labelClientSecret.Size = new System.Drawing.Size(72, 13);
  60. this.labelClientSecret.TabIndex = 2;
  61. this.labelClientSecret.Text = "Client Secret:";
  62. //
  63. // tbClientId
  64. //
  65. this.tbClientId.Location = new System.Drawing.Point(142, 12);
  66. this.tbClientId.Name = "tbClientId";
  67. this.tbClientId.Size = new System.Drawing.Size(240, 20);
  68. this.tbClientId.TabIndex = 1;
  69. //
  70. // tbClientSecret
  71. //
  72. this.tbClientSecret.Location = new System.Drawing.Point(142, 38);
  73. this.tbClientSecret.Name = "tbClientSecret";
  74. this.tbClientSecret.Size = new System.Drawing.Size(240, 20);
  75. this.tbClientSecret.TabIndex = 3;
  76. //
  77. // ClientInfoForm
  78. //
  79. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  80. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  81. this.ClientSize = new System.Drawing.Size(394, 99);
  82. this.Controls.Add(this.tbClientSecret);
  83. this.Controls.Add(this.tbClientId);
  84. this.Controls.Add(this.labelClientSecret);
  85. this.Controls.Add(this.labelClientId);
  86. this.Name = "ClientInfoForm";
  87. this.Text = "Client Info";
  88. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ClientInfoForm_FormClosing);
  89. this.Controls.SetChildIndex(this.labelClientId, 0);
  90. this.Controls.SetChildIndex(this.labelClientSecret, 0);
  91. this.Controls.SetChildIndex(this.tbClientId, 0);
  92. this.Controls.SetChildIndex(this.tbClientSecret, 0);
  93. this.Controls.SetChildIndex(this.btnOk, 0);
  94. this.Controls.SetChildIndex(this.btnCancel, 0);
  95. this.ResumeLayout(false);
  96. this.PerformLayout();
  97. }
  98. #endregion
  99. private System.Windows.Forms.Label labelClientId;
  100. private System.Windows.Forms.Label labelClientSecret;
  101. private System.Windows.Forms.TextBox tbClientId;
  102. private System.Windows.Forms.TextBox tbClientSecret;
  103. }
  104. }