12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- namespace FastReport.Cloud.StorageClient.SkyDrive
- {
- partial class ClientInfoForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.labelClientId = new System.Windows.Forms.Label();
- this.tbClientId = new System.Windows.Forms.TextBox();
- this.SuspendLayout();
- //
- // btnOk
- //
- this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnOk.Location = new System.Drawing.Point(226, 44);
- this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
- this.btnOk.TabIndex = 2;
- //
- // btnCancel
- //
- this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnCancel.Location = new System.Drawing.Point(307, 44);
- this.btnCancel.TabIndex = 3;
- //
- // labelClientId
- //
- this.labelClientId.AutoSize = true;
- this.labelClientId.Location = new System.Drawing.Point(12, 15);
- this.labelClientId.Name = "labelClientId";
- this.labelClientId.Size = new System.Drawing.Size(52, 13);
- this.labelClientId.TabIndex = 0;
- this.labelClientId.Text = "Client ID:";
- //
- // tbClientId
- //
- this.tbClientId.Location = new System.Drawing.Point(142, 12);
- this.tbClientId.Name = "tbClientId";
- this.tbClientId.Size = new System.Drawing.Size(240, 20);
- this.tbClientId.TabIndex = 1;
- //
- // ClientInfoForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.ClientSize = new System.Drawing.Size(394, 80);
- this.Controls.Add(this.tbClientId);
- this.Controls.Add(this.labelClientId);
- this.Location = new System.Drawing.Point(0, 0);
- this.Name = "ClientInfoForm";
- this.Text = "Client Info";
- this.Controls.SetChildIndex(this.labelClientId, 0);
- this.Controls.SetChildIndex(this.btnOk, 0);
- this.Controls.SetChildIndex(this.btnCancel, 0);
- this.Controls.SetChildIndex(this.tbClientId, 0);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label labelClientId;
- private System.Windows.Forms.TextBox tbClientId;
- }
- }
|