mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
95 lines
3.8 KiB
C#
95 lines
3.8 KiB
C#
|
namespace XenAdmin.Dialogs
|
||
|
{
|
||
|
partial class VNCPasswordDialog
|
||
|
{
|
||
|
/// <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(VNCPasswordDialog));
|
||
|
this.EnterPassLabel = new System.Windows.Forms.Label();
|
||
|
this.passBox = new System.Windows.Forms.TextBox();
|
||
|
this.okButton = new System.Windows.Forms.Button();
|
||
|
this.cancelButton = new System.Windows.Forms.Button();
|
||
|
this.passwordFailure1 = new XenAdmin.Controls.Common.PasswordFailure();
|
||
|
this.SuspendLayout();
|
||
|
//
|
||
|
// EnterPassLabel
|
||
|
//
|
||
|
resources.ApplyResources(this.EnterPassLabel, "EnterPassLabel");
|
||
|
this.EnterPassLabel.Name = "EnterPassLabel";
|
||
|
//
|
||
|
// passBox
|
||
|
//
|
||
|
resources.ApplyResources(this.passBox, "passBox");
|
||
|
this.passBox.Name = "passBox";
|
||
|
this.passBox.UseSystemPasswordChar = true;
|
||
|
this.passBox.TextChanged += new System.EventHandler(this.passBox_TextChanged);
|
||
|
//
|
||
|
// okButton
|
||
|
//
|
||
|
resources.ApplyResources(this.okButton, "okButton");
|
||
|
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||
|
this.okButton.Name = "okButton";
|
||
|
this.okButton.UseVisualStyleBackColor = true;
|
||
|
//
|
||
|
// cancelButton
|
||
|
//
|
||
|
resources.ApplyResources(this.cancelButton, "cancelButton");
|
||
|
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||
|
this.cancelButton.Name = "cancelButton";
|
||
|
this.cancelButton.UseVisualStyleBackColor = true;
|
||
|
//
|
||
|
// passwordFailure1
|
||
|
//
|
||
|
resources.ApplyResources(this.passwordFailure1, "passwordFailure1");
|
||
|
this.passwordFailure1.Name = "passwordFailure1";
|
||
|
//
|
||
|
// VNCPasswordDialog
|
||
|
//
|
||
|
this.AcceptButton = this.okButton;
|
||
|
resources.ApplyResources(this, "$this");
|
||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||
|
this.CancelButton = this.cancelButton;
|
||
|
this.Controls.Add(this.passwordFailure1);
|
||
|
this.Controls.Add(this.cancelButton);
|
||
|
this.Controls.Add(this.okButton);
|
||
|
this.Controls.Add(this.passBox);
|
||
|
this.Controls.Add(this.EnterPassLabel);
|
||
|
this.Name = "VNCPasswordDialog";
|
||
|
this.ResumeLayout(false);
|
||
|
this.PerformLayout();
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
private System.Windows.Forms.Label EnterPassLabel;
|
||
|
private System.Windows.Forms.TextBox passBox;
|
||
|
private System.Windows.Forms.Button okButton;
|
||
|
private System.Windows.Forms.Button cancelButton;
|
||
|
private XenAdmin.Controls.Common.PasswordFailure passwordFailure1;
|
||
|
}
|
||
|
}
|