ShareX/UploadersLib/Controls/AccountTypeControl.Designer.cs

75 lines
2.7 KiB
C#

namespace UploadersLib
{
partial class AccountTypeControl
{
/// <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 Component 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.lblAccountType = new System.Windows.Forms.Label();
this.cbAccountType = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// lblAccountType
//
this.lblAccountType.AutoSize = true;
this.lblAccountType.Location = new System.Drawing.Point(8, 8);
this.lblAccountType.Name = "lblAccountType";
this.lblAccountType.Size = new System.Drawing.Size(73, 13);
this.lblAccountType.TabIndex = 0;
this.lblAccountType.Text = "Account type:";
//
// cbAccountType
//
this.cbAccountType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbAccountType.FormattingEnabled = true;
this.cbAccountType.Items.AddRange(new object[] {
"Anonymous",
"User"});
this.cbAccountType.Location = new System.Drawing.Point(88, 4);
this.cbAccountType.Name = "cbAccountType";
this.cbAccountType.Size = new System.Drawing.Size(88, 21);
this.cbAccountType.TabIndex = 1;
//
// AccountTypeControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.cbAccountType);
this.Controls.Add(this.lblAccountType);
this.Name = "AccountTypeControl";
this.Size = new System.Drawing.Size(180, 30);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblAccountType;
private System.Windows.Forms.ComboBox cbAccountType;
}
}