ApplicationInfoForm.Designer.cs 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. namespace FastReport.Cloud.StorageClient.Dropbox
  2. {
  3. partial class ApplicationInfoForm
  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.labelAccessToken = new System.Windows.Forms.Label();
  29. this.tbAccessToken = new System.Windows.Forms.TextBox();
  30. this.SuspendLayout();
  31. //
  32. // btnOk
  33. //
  34. this.btnOk.Location = new System.Drawing.Point(396, 46);
  35. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  36. this.btnOk.TabIndex = 2;
  37. //
  38. // btnCancel
  39. //
  40. this.btnCancel.Location = new System.Drawing.Point(477, 46);
  41. this.btnCancel.TabIndex = 3;
  42. //
  43. // labelAccessToken
  44. //
  45. this.labelAccessToken.AutoSize = true;
  46. this.labelAccessToken.Location = new System.Drawing.Point(12, 15);
  47. this.labelAccessToken.Name = "labelAccessToken";
  48. this.labelAccessToken.Size = new System.Drawing.Size(76, 13);
  49. this.labelAccessToken.TabIndex = 0;
  50. this.labelAccessToken.Text = "Access Token:";
  51. //
  52. // tbAccessToken
  53. //
  54. this.tbAccessToken.Location = new System.Drawing.Point(152, 12);
  55. this.tbAccessToken.Name = "tbAccessToken";
  56. this.tbAccessToken.Size = new System.Drawing.Size(400, 20);
  57. this.tbAccessToken.TabIndex = 1;
  58. //
  59. // ApplicationInfoForm
  60. //
  61. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  63. this.ClientSize = new System.Drawing.Size(564, 81);
  64. this.Controls.Add(this.tbAccessToken);
  65. this.Controls.Add(this.labelAccessToken);
  66. this.Name = "ApplicationInfoForm";
  67. this.Text = "Application Info";
  68. this.Controls.SetChildIndex(this.labelAccessToken, 0);
  69. this.Controls.SetChildIndex(this.btnOk, 0);
  70. this.Controls.SetChildIndex(this.btnCancel, 0);
  71. this.Controls.SetChildIndex(this.tbAccessToken, 0);
  72. this.ResumeLayout(false);
  73. this.PerformLayout();
  74. }
  75. #endregion
  76. private System.Windows.Forms.Label labelAccessToken;
  77. private System.Windows.Forms.TextBox tbAccessToken;
  78. }
  79. }