ClientInfoForm.Designer.cs 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. namespace FastReport.Cloud.StorageClient.SkyDrive
  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.tbClientId = new System.Windows.Forms.TextBox();
  30. this.SuspendLayout();
  31. //
  32. // btnOk
  33. //
  34. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  35. this.btnOk.Location = new System.Drawing.Point(226, 44);
  36. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  37. this.btnOk.TabIndex = 2;
  38. //
  39. // btnCancel
  40. //
  41. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  42. this.btnCancel.Location = new System.Drawing.Point(307, 44);
  43. this.btnCancel.TabIndex = 3;
  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. // tbClientId
  55. //
  56. this.tbClientId.Location = new System.Drawing.Point(142, 12);
  57. this.tbClientId.Name = "tbClientId";
  58. this.tbClientId.Size = new System.Drawing.Size(240, 20);
  59. this.tbClientId.TabIndex = 1;
  60. //
  61. // ClientInfoForm
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  65. this.ClientSize = new System.Drawing.Size(394, 80);
  66. this.Controls.Add(this.tbClientId);
  67. this.Controls.Add(this.labelClientId);
  68. this.Location = new System.Drawing.Point(0, 0);
  69. this.Name = "ClientInfoForm";
  70. this.Text = "Client Info";
  71. this.Controls.SetChildIndex(this.labelClientId, 0);
  72. this.Controls.SetChildIndex(this.btnOk, 0);
  73. this.Controls.SetChildIndex(this.btnCancel, 0);
  74. this.Controls.SetChildIndex(this.tbClientId, 0);
  75. this.ResumeLayout(false);
  76. this.PerformLayout();
  77. }
  78. #endregion
  79. private System.Windows.Forms.Label labelClientId;
  80. private System.Windows.Forms.TextBox tbClientId;
  81. }
  82. }