ShareX/ShareX.UploadersLib/Controls/OAuthControl.Designer.cs

124 lines
5.8 KiB
C#
Raw Normal View History

namespace UploadersLib
2013-11-03 23:53:49 +13:00
{
partial class OAuthControl
2013-11-03 23:53:49 +13:00
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OAuthControl));
2013-11-03 23:53:49 +13:00
this.gbUserAccount = new System.Windows.Forms.GroupBox();
2014-06-26 08:45:57 +12:00
this.btnClearAuthorization = new System.Windows.Forms.Button();
2013-11-03 23:53:49 +13:00
this.btnRefreshAuthorization = new System.Windows.Forms.Button();
this.btnOpenAuthorizePage = new System.Windows.Forms.Button();
this.lblVerificationCode = new System.Windows.Forms.Label();
this.btnCompleteAuthorization = new System.Windows.Forms.Button();
this.txtVerificationCode = new System.Windows.Forms.TextBox();
this.lblLoginStatus = new System.Windows.Forms.Label();
this.gbUserAccount.SuspendLayout();
this.SuspendLayout();
//
// gbUserAccount
//
this.gbUserAccount.Controls.Add(this.btnClearAuthorization);
2013-11-03 23:53:49 +13:00
this.gbUserAccount.Controls.Add(this.btnRefreshAuthorization);
this.gbUserAccount.Controls.Add(this.btnOpenAuthorizePage);
this.gbUserAccount.Controls.Add(this.lblVerificationCode);
this.gbUserAccount.Controls.Add(this.btnCompleteAuthorization);
this.gbUserAccount.Controls.Add(this.txtVerificationCode);
this.gbUserAccount.Controls.Add(this.lblLoginStatus);
resources.ApplyResources(this.gbUserAccount, "gbUserAccount");
2013-11-03 23:53:49 +13:00
this.gbUserAccount.Name = "gbUserAccount";
this.gbUserAccount.TabStop = false;
//
2014-06-26 08:45:57 +12:00
// btnClearAuthorization
//
resources.ApplyResources(this.btnClearAuthorization, "btnClearAuthorization");
2014-06-26 08:45:57 +12:00
this.btnClearAuthorization.Name = "btnClearAuthorization";
this.btnClearAuthorization.UseVisualStyleBackColor = true;
this.btnClearAuthorization.Click += new System.EventHandler(this.btnClearAuthorization_Click);
//
2013-11-03 23:53:49 +13:00
// btnRefreshAuthorization
//
resources.ApplyResources(this.btnRefreshAuthorization, "btnRefreshAuthorization");
2013-11-03 23:53:49 +13:00
this.btnRefreshAuthorization.Name = "btnRefreshAuthorization";
this.btnRefreshAuthorization.UseVisualStyleBackColor = true;
this.btnRefreshAuthorization.Click += new System.EventHandler(this.btnRefreshAuthorization_Click);
//
// btnOpenAuthorizePage
//
resources.ApplyResources(this.btnOpenAuthorizePage, "btnOpenAuthorizePage");
2013-11-03 23:53:49 +13:00
this.btnOpenAuthorizePage.Name = "btnOpenAuthorizePage";
this.btnOpenAuthorizePage.UseVisualStyleBackColor = true;
this.btnOpenAuthorizePage.Click += new System.EventHandler(this.btnOpenAuthorizePage_Click);
//
// lblVerificationCode
//
resources.ApplyResources(this.lblVerificationCode, "lblVerificationCode");
2013-11-03 23:53:49 +13:00
this.lblVerificationCode.Name = "lblVerificationCode";
//
// btnCompleteAuthorization
//
resources.ApplyResources(this.btnCompleteAuthorization, "btnCompleteAuthorization");
2013-11-03 23:53:49 +13:00
this.btnCompleteAuthorization.Name = "btnCompleteAuthorization";
this.btnCompleteAuthorization.UseVisualStyleBackColor = true;
this.btnCompleteAuthorization.Click += new System.EventHandler(this.btnCompleteAuthorization_Click);
//
// txtVerificationCode
//
resources.ApplyResources(this.txtVerificationCode, "txtVerificationCode");
2013-11-03 23:53:49 +13:00
this.txtVerificationCode.Name = "txtVerificationCode";
this.txtVerificationCode.TextChanged += new System.EventHandler(this.txtVerificationCode_TextChanged);
//
// lblLoginStatus
//
resources.ApplyResources(this.lblLoginStatus, "lblLoginStatus");
2013-11-03 23:53:49 +13:00
this.lblLoginStatus.Name = "lblLoginStatus";
//
// OAuthControl
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this, "$this");
2013-11-03 23:53:49 +13:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.gbUserAccount);
this.Name = "OAuthControl";
2013-11-03 23:53:49 +13:00
this.gbUserAccount.ResumeLayout(false);
this.gbUserAccount.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox gbUserAccount;
private System.Windows.Forms.Button btnRefreshAuthorization;
private System.Windows.Forms.Button btnOpenAuthorizePage;
private System.Windows.Forms.Label lblVerificationCode;
private System.Windows.Forms.Button btnCompleteAuthorization;
private System.Windows.Forms.TextBox txtVerificationCode;
private System.Windows.Forms.Label lblLoginStatus;
private System.Windows.Forms.Button btnClearAuthorization;
2013-11-03 23:53:49 +13:00
}
}