mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-22 16:20:42 +01:00
374078fbec
- CA-92787: Added tip on how to reset a forgotten password on the LoadSessionDialog. - The LoadSessionDialog was launching help twice. - The error message on the SetPasswordDialog was truncated after the first time it appeared. - The checks on the ChangeMasterPasswordDialog were out of order. - Minor layout corrections and code compacting on all dialogs. - Moved LoadSessionDialog to the same folder as the other RestoreSession dialogs. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
128 lines
5.6 KiB
C#
128 lines
5.6 KiB
C#
namespace XenAdmin.Dialogs.RestoreSession
|
|
{
|
|
partial class LoadSessionDialog
|
|
{
|
|
/// <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(LoadSessionDialog));
|
|
this.EnterPassLabel = new System.Windows.Forms.Label();
|
|
this.passLabel = 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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// EnterPassLabel
|
|
//
|
|
resources.ApplyResources(this.EnterPassLabel, "EnterPassLabel");
|
|
this.tableLayoutPanel1.SetColumnSpan(this.EnterPassLabel, 4);
|
|
this.EnterPassLabel.Name = "EnterPassLabel";
|
|
this.EnterPassLabel.UseMnemonic = false;
|
|
//
|
|
// passLabel
|
|
//
|
|
resources.ApplyResources(this.passLabel, "passLabel");
|
|
this.passLabel.Name = "passLabel";
|
|
//
|
|
// passBox
|
|
//
|
|
resources.ApplyResources(this.passBox, "passBox");
|
|
this.tableLayoutPanel1.SetColumnSpan(this.passBox, 3);
|
|
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.tableLayoutPanel1.SetColumnSpan(this.passwordFailure1, 3);
|
|
this.passwordFailure1.Name = "passwordFailure1";
|
|
this.passwordFailure1.TabStop = false;
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.EnterPassLabel, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.passLabel, 0, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.passBox, 1, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.passwordFailure1, 1, 3);
|
|
this.tableLayoutPanel1.Controls.Add(this.cancelButton, 3, 4);
|
|
this.tableLayoutPanel1.Controls.Add(this.okButton, 2, 4);
|
|
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 1);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// label1
|
|
//
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.tableLayoutPanel1.SetColumnSpan(this.label1, 4);
|
|
this.label1.Name = "label1";
|
|
//
|
|
// LoadSessionDialog
|
|
//
|
|
this.AcceptButton = this.okButton;
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.CancelButton = this.cancelButton;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "LoadSessionDialog";
|
|
this.Load += new System.EventHandler(this.LoadSessionDialog_Load);
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label EnterPassLabel;
|
|
private System.Windows.Forms.Label passLabel;
|
|
private System.Windows.Forms.TextBox passBox;
|
|
private System.Windows.Forms.Button okButton;
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private XenAdmin.Controls.Common.PasswordFailure passwordFailure1;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label label1;
|
|
}
|
|
} |