ShareX/ShareX.UploadersLib/Controls/AccountsControl.Designer.cs

113 lines
4.6 KiB
C#
Raw Normal View History

2014-12-11 09:25:20 +13:00
namespace ShareX.UploadersLib
2013-11-03 23:53:49 +13:00
{
public partial class AccountsControl
{
/// <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(AccountsControl));
2014-04-30 21:46:15 +12:00
this.pgSettings = new System.Windows.Forms.PropertyGrid();
this.lbAccounts = new System.Windows.Forms.ListBox();
2013-11-03 23:53:49 +13:00
this.btnAdd = new System.Windows.Forms.Button();
this.btnTest = new System.Windows.Forms.Button();
this.btnRemove = new System.Windows.Forms.Button();
this.AccountsLayout = new System.Windows.Forms.TableLayoutPanel();
2014-04-30 21:46:15 +12:00
this.btnDuplicate = new System.Windows.Forms.Button();
2013-11-03 23:53:49 +13:00
this.AccountsLayout.SuspendLayout();
this.SuspendLayout();
//
2014-04-30 21:46:15 +12:00
// pgSettings
//
resources.ApplyResources(this.pgSettings, "pgSettings");
2014-04-30 21:46:15 +12:00
this.pgSettings.Name = "pgSettings";
this.pgSettings.PropertySort = System.Windows.Forms.PropertySort.NoSort;
this.pgSettings.ToolbarVisible = false;
this.pgSettings.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.pgSettings_PropertyValueChanged);
//
// lbAccounts
//
resources.ApplyResources(this.lbAccounts, "lbAccounts");
2014-04-30 21:46:15 +12:00
this.lbAccounts.FormattingEnabled = true;
this.lbAccounts.Name = "lbAccounts";
this.lbAccounts.SelectedIndexChanged += new System.EventHandler(this.lbAccounts_SelectedIndexChanged);
2013-11-03 23:53:49 +13:00
//
// btnAdd
//
resources.ApplyResources(this.btnAdd, "btnAdd");
2013-11-03 23:53:49 +13:00
this.btnAdd.Name = "btnAdd";
2014-04-30 21:46:15 +12:00
this.btnAdd.UseVisualStyleBackColor = true;
2013-11-03 23:53:49 +13:00
//
// btnTest
//
resources.ApplyResources(this.btnTest, "btnTest");
2013-11-03 23:53:49 +13:00
this.btnTest.Name = "btnTest";
2014-04-30 21:46:15 +12:00
this.btnTest.UseVisualStyleBackColor = true;
2013-11-03 23:53:49 +13:00
//
// btnRemove
//
resources.ApplyResources(this.btnRemove, "btnRemove");
2013-11-03 23:53:49 +13:00
this.btnRemove.Name = "btnRemove";
this.btnRemove.UseVisualStyleBackColor = true;
//
// AccountsLayout
//
resources.ApplyResources(this.AccountsLayout, "AccountsLayout");
2014-04-30 21:46:15 +12:00
this.AccountsLayout.Controls.Add(this.pgSettings, 1, 0);
this.AccountsLayout.Controls.Add(this.lbAccounts, -1, 0);
2013-11-03 23:53:49 +13:00
this.AccountsLayout.Name = "AccountsLayout";
//
2014-04-30 21:46:15 +12:00
// btnDuplicate
2013-11-03 23:53:49 +13:00
//
resources.ApplyResources(this.btnDuplicate, "btnDuplicate");
2014-04-30 21:46:15 +12:00
this.btnDuplicate.Name = "btnDuplicate";
this.btnDuplicate.UseVisualStyleBackColor = true;
2013-11-03 23:53:49 +13:00
//
// AccountsControl
//
resources.ApplyResources(this, "$this");
2013-11-03 23:53:49 +13:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2014-04-30 21:46:15 +12:00
this.Controls.Add(this.btnDuplicate);
2013-11-03 23:53:49 +13:00
this.Controls.Add(this.AccountsLayout);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.btnTest);
this.Controls.Add(this.btnRemove);
this.Name = "AccountsControl";
this.AccountsLayout.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion Component Designer generated code
public System.Windows.Forms.Button btnAdd;
public System.Windows.Forms.Button btnTest;
public System.Windows.Forms.Button btnRemove;
private System.Windows.Forms.TableLayoutPanel AccountsLayout;
2014-04-30 21:46:15 +12:00
public System.Windows.Forms.PropertyGrid pgSettings;
public System.Windows.Forms.ListBox lbAccounts;
public System.Windows.Forms.Button btnDuplicate;
2013-11-03 23:53:49 +13:00
}
}