xenadmin/XenAdmin/Wizards/PatchingWizard/AutomatedUpdatesBasePage.designer.cs
Joey 6d2c3541f5 CP-29768: Add Skip functionality for RPU supp pack installation (#2283)
* CP-29768: Add Skip functionality for RPU supp pack installation

Signed-off-by: Ji Jiang <ji.jiang@citrix.com>

* Minor corrections

Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>

* Revert unnecessary layout changes

Also changed the title of the confirmation dialog to the wizard title, as it could be shown in either RPU or the Patching wizard

Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
2018-11-07 18:07:53 +02:00

139 lines
6.1 KiB
C#

namespace XenAdmin.Wizards.PatchingWizard
{
partial class AutomatedUpdatesBasePage
{
/// <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)
{
backgroundWorkers.ForEach(bgw => bgw.Dispose());
if (components != null)
components.Dispose();
}
base.Dispose(disposing);
}
#region Component 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(AutomatedUpdatesBasePage));
this.labelTitle = new System.Windows.Forms.Label();
this.textBoxLog = new System.Windows.Forms.TextBox();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.labelError = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.panel1 = new System.Windows.Forms.TableLayoutPanel();
this.buttonRetry = new System.Windows.Forms.Button();
this.buttonSkip = new System.Windows.Forms.Button();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.panel1.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// labelTitle
//
resources.ApplyResources(this.labelTitle, "labelTitle");
this.labelTitle.Name = "labelTitle";
//
// textBoxLog
//
this.textBoxLog.BackColor = System.Drawing.SystemColors.ControlLightLight;
resources.ApplyResources(this.textBoxLog, "textBoxLog");
this.textBoxLog.Name = "textBoxLog";
this.textBoxLog.ReadOnly = true;
//
// progressBar
//
resources.ApplyResources(this.progressBar, "progressBar");
this.progressBar.Name = "progressBar";
//
// labelError
//
resources.ApplyResources(this.labelError, "labelError");
this.labelError.BackColor = System.Drawing.SystemColors.Control;
this.labelError.Name = "labelError";
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.SystemColors.Control;
resources.ApplyResources(this.pictureBox1, "pictureBox1");
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.TabStop = false;
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.BackColor = System.Drawing.SystemColors.Control;
this.panel1.Controls.Add(this.pictureBox1, 0, 0);
this.panel1.Controls.Add(this.labelError, 1, 0);
this.panel1.Controls.Add(this.buttonRetry, 2, 0);
this.panel1.Controls.Add(this.buttonSkip, 3, 0);
this.panel1.Name = "panel1";
//
// buttonRetry
//
resources.ApplyResources(this.buttonRetry, "buttonRetry");
this.buttonRetry.Name = "buttonRetry";
this.buttonRetry.UseVisualStyleBackColor = true;
this.buttonRetry.Click += new System.EventHandler(this.buttonRetry_Click);
//
// buttonSkip
//
resources.ApplyResources(this.buttonSkip, "buttonSkip");
this.buttonSkip.Name = "buttonSkip";
this.buttonSkip.UseVisualStyleBackColor = true;
this.buttonSkip.Click += new System.EventHandler(this.buttonSkip_Click);
//
// tableLayoutPanel1
//
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
this.tableLayoutPanel1.Controls.Add(this.labelTitle, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.progressBar, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.textBoxLog, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 3);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// AutomatedUpdatesBasePage
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "AutomatedUpdatesBasePage";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label labelTitle;
private System.Windows.Forms.TextBox textBoxLog;
private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.Label labelError;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.TableLayoutPanel panel1;
private System.Windows.Forms.Button buttonRetry;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Button buttonSkip;
}
}