xenadmin/XenAdmin/Dialogs/AdPasswordPrompt.Designer.cs
Gabor Apati-Nagy 5f24a4e084 CA-211363: Replace 'User name' labels with 'Username'
According to the Microsoft style guide XC to use 'username' for UI fields and use 'user name' when it's being referred to.

Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
2016-12-07 11:12:58 +00:00

173 lines
7.9 KiB
C#

namespace XenAdmin.Dialogs
{
partial class AdPasswordPrompt
{
/// <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(AdPasswordPrompt));
this.labelBlurb = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.textBoxUsername = new System.Windows.Forms.TextBox();
this.textBoxPassword = new System.Windows.Forms.TextBox();
this.buttonOk = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.textBoxDomain = new System.Windows.Forms.TextBox();
this.labelAdditionalInfo = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.SkipButton = new System.Windows.Forms.Button();
this.tableLayoutPanel2.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// labelBlurb
//
resources.ApplyResources(this.labelBlurb, "labelBlurb");
this.tableLayoutPanel2.SetColumnSpan(this.labelBlurb, 2);
this.labelBlurb.Name = "labelBlurb";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// textBoxUsername
//
resources.ApplyResources(this.textBoxUsername, "textBoxUsername");
this.textBoxUsername.Name = "textBoxUsername";
this.textBoxUsername.TextChanged += new System.EventHandler(this.textBoxUsername_TextChanged);
//
// textBoxPassword
//
resources.ApplyResources(this.textBoxPassword, "textBoxPassword");
this.textBoxPassword.Name = "textBoxPassword";
this.textBoxPassword.UseSystemPasswordChar = true;
this.textBoxPassword.TextChanged += new System.EventHandler(this.textBoxPassword_TextChanged);
//
// buttonOk
//
resources.ApplyResources(this.buttonOk, "buttonOk");
this.buttonOk.Name = "buttonOk";
this.buttonOk.UseVisualStyleBackColor = true;
this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
//
// buttonCancel
//
resources.ApplyResources(this.buttonCancel, "buttonCancel");
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// tableLayoutPanel2
//
resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
this.tableLayoutPanel2.Controls.Add(this.labelBlurb, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.textBoxDomain, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.label2, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.textBoxUsername, 1, 2);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 3);
this.tableLayoutPanel2.Controls.Add(this.textBoxPassword, 1, 3);
this.tableLayoutPanel2.Controls.Add(this.labelAdditionalInfo, 0, 4);
this.tableLayoutPanel2.Controls.Add(this.flowLayoutPanel1, 1, 5);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// textBoxDomain
//
resources.ApplyResources(this.textBoxDomain, "textBoxDomain");
this.textBoxDomain.Name = "textBoxDomain";
this.textBoxDomain.TextChanged += new System.EventHandler(this.textBoxDomain_TextChanged);
//
// labelAdditionalInfo
//
resources.ApplyResources(this.labelAdditionalInfo, "labelAdditionalInfo");
this.tableLayoutPanel2.SetColumnSpan(this.labelAdditionalInfo, 2);
this.labelAdditionalInfo.Name = "labelAdditionalInfo";
//
// flowLayoutPanel1
//
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
this.flowLayoutPanel1.Controls.Add(this.buttonCancel);
this.flowLayoutPanel1.Controls.Add(this.SkipButton);
this.flowLayoutPanel1.Controls.Add(this.buttonOk);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
//
// SkipButton
//
resources.ApplyResources(this.SkipButton, "SkipButton");
this.SkipButton.Name = "SkipButton";
this.SkipButton.UseVisualStyleBackColor = true;
this.SkipButton.Click += new System.EventHandler(this.SkipButton_Click);
//
// AdPasswordPrompt
//
this.AcceptButton = this.buttonOk;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.buttonCancel;
this.Controls.Add(this.tableLayoutPanel2);
this.Name = "AdPasswordPrompt";
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBoxUsername;
private System.Windows.Forms.TextBox textBoxPassword;
private System.Windows.Forms.Button buttonOk;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Label labelBlurb;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBoxDomain;
private System.Windows.Forms.Button SkipButton;
private System.Windows.Forms.Label labelAdditionalInfo;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
}
}