xenadmin/XenAdmin/Dialogs/PasswordsRequestDialog.Designer.cs
Konstantina Chremmou e9d2da082d Prevent XenCenter from crashing if starting it by double-clicking a license file.
Also, fixed hotkeys and info message on the PasswordRequest dialog.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
2019-10-07 18:00:32 +01:00

152 lines
6.9 KiB
C#

namespace XenAdmin.Dialogs
{
partial class PasswordsRequestDialog
{
/// <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(PasswordsRequestDialog));
this.OKThisTimeButton = new System.Windows.Forms.Button();
this.OKAlwaysButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.CancelBtn = new System.Windows.Forms.Button();
this.ApplicationLabel = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// OKThisTimeButton
//
resources.ApplyResources(this.OKThisTimeButton, "OKThisTimeButton");
this.OKThisTimeButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.OKThisTimeButton.Name = "OKThisTimeButton";
this.OKThisTimeButton.UseVisualStyleBackColor = true;
//
// OKAlwaysButton
//
resources.ApplyResources(this.OKAlwaysButton, "OKAlwaysButton");
this.OKAlwaysButton.DialogResult = System.Windows.Forms.DialogResult.Yes;
this.OKAlwaysButton.Name = "OKAlwaysButton";
this.OKAlwaysButton.UseVisualStyleBackColor = true;
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.tableLayoutPanel1.SetColumnSpan(this.label1, 3);
this.label1.Name = "label1";
//
// CancelBtn
//
resources.ApplyResources(this.CancelBtn, "CancelBtn");
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.UseVisualStyleBackColor = true;
//
// ApplicationLabel
//
resources.ApplyResources(this.ApplicationLabel, "ApplicationLabel");
this.tableLayoutPanel1.SetColumnSpan(this.ApplicationLabel, 3);
this.ApplicationLabel.Name = "ApplicationLabel";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.tableLayoutPanel1.SetColumnSpan(this.label3, 3);
this.label3.Name = "label3";
//
// tableLayoutPanel1
//
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.OKAlwaysButton, 1, 4);
this.tableLayoutPanel1.Controls.Add(this.CancelBtn, 2, 4);
this.tableLayoutPanel1.Controls.Add(this.ApplicationLabel, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.label3, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.OKThisTimeButton, 0, 4);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 3);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// tableLayoutPanel2
//
resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
this.tableLayoutPanel1.SetColumnSpan(this.tableLayoutPanel2, 3);
this.tableLayoutPanel2.Controls.Add(this.pictureBox1, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label2, 1, 0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
//
// pictureBox1
//
resources.ApplyResources(this.pictureBox1, "pictureBox1");
this.pictureBox1.Image = global::XenAdmin.Properties.Resources._000_Info3_h32bit_16;
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.TabStop = false;
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// PasswordsRequestDialog
//
this.AcceptButton = this.OKThisTimeButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.CancelBtn;
this.Controls.Add(this.tableLayoutPanel1);
this.HelpButton = false;
this.Name = "PasswordsRequestDialog";
this.Load += new System.EventHandler(this.PasswordsRequestDialog_Load);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button OKThisTimeButton;
private System.Windows.Forms.Button OKAlwaysButton;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Label ApplicationLabel;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label label2;
}
}