xenadmin/XenAdmin/Plugins/UI/TabPageCredentialsDialog.Designer.cs
Mihaela Stoica bd36a85bff CP-4816: Initial commit to git repo
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
2013-06-24 12:41:48 +01:00

121 lines
5.1 KiB
C#

namespace XenAdmin.Plugins
{
partial class TabPageCredentialsDialog
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TabPageCredentialsDialog));
this.TopLabel = new System.Windows.Forms.Label();
this.UsernameLabel = new System.Windows.Forms.Label();
this.PasswordLabel = new System.Windows.Forms.Label();
this.UsernameTextBox = new System.Windows.Forms.TextBox();
this.PasswordTextBox = new System.Windows.Forms.TextBox();
this.OKButton = new System.Windows.Forms.Button();
this.CancelBtn = new System.Windows.Forms.Button();
this.PersistCredentialsCheckBox = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// TopLabel
//
resources.ApplyResources(this.TopLabel, "TopLabel");
this.TopLabel.Name = "TopLabel";
//
// UsernameLabel
//
resources.ApplyResources(this.UsernameLabel, "UsernameLabel");
this.UsernameLabel.Name = "UsernameLabel";
//
// PasswordLabel
//
resources.ApplyResources(this.PasswordLabel, "PasswordLabel");
this.PasswordLabel.Name = "PasswordLabel";
//
// UsernameTextBox
//
resources.ApplyResources(this.UsernameTextBox, "UsernameTextBox");
this.UsernameTextBox.Name = "UsernameTextBox";
//
// PasswordTextBox
//
resources.ApplyResources(this.PasswordTextBox, "PasswordTextBox");
this.PasswordTextBox.Name = "PasswordTextBox";
this.PasswordTextBox.UseSystemPasswordChar = true;
//
// OKButton
//
resources.ApplyResources(this.OKButton, "OKButton");
this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.OKButton.Name = "OKButton";
this.OKButton.UseVisualStyleBackColor = true;
//
// CancelBtn
//
resources.ApplyResources(this.CancelBtn, "CancelBtn");
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.UseVisualStyleBackColor = true;
//
// PersistCredentialsCheckBox
//
resources.ApplyResources(this.PersistCredentialsCheckBox, "PersistCredentialsCheckBox");
this.PersistCredentialsCheckBox.Checked = true;
this.PersistCredentialsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.PersistCredentialsCheckBox.Name = "PersistCredentialsCheckBox";
this.PersistCredentialsCheckBox.UseVisualStyleBackColor = true;
//
// TabPageCredentialsDialog
//
this.AcceptButton = this.OKButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.CancelBtn;
this.Controls.Add(this.PersistCredentialsCheckBox);
this.Controls.Add(this.CancelBtn);
this.Controls.Add(this.OKButton);
this.Controls.Add(this.PasswordTextBox);
this.Controls.Add(this.UsernameTextBox);
this.Controls.Add(this.PasswordLabel);
this.Controls.Add(this.UsernameLabel);
this.Controls.Add(this.TopLabel);
this.Name = "TabPageCredentialsDialog";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label TopLabel;
private System.Windows.Forms.Label UsernameLabel;
private System.Windows.Forms.Label PasswordLabel;
private System.Windows.Forms.TextBox UsernameTextBox;
private System.Windows.Forms.TextBox PasswordTextBox;
private System.Windows.Forms.Button OKButton;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.CheckBox PersistCredentialsCheckBox;
}
}