mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
a56a383ec0
* CP-35687: Detach update mechanism from update wizard Signed-off-by: Ji Jiang <ji.jiang@citrix.com> * CP-35687 part 2: Removed updates mechanism. * Corrections as per code review. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
93 lines
4.0 KiB
C#
93 lines
4.0 KiB
C#
namespace XenAdmin.Wizards.PatchingWizard
|
|
{
|
|
partial class PatchingWizard_SelectPatchPage
|
|
{
|
|
/// <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 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(PatchingWizard_SelectPatchPage));
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.labelOnlySelectFromDisk = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.fileNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.BrowseButton = new System.Windows.Forms.Button();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.labelOnlySelectFromDisk, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.fileNameTextBox, 1, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.BrowseButton, 2, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// labelOnlySelectFromDisk
|
|
//
|
|
resources.ApplyResources(this.labelOnlySelectFromDisk, "labelOnlySelectFromDisk");
|
|
this.tableLayoutPanel1.SetColumnSpan(this.labelOnlySelectFromDisk, 3);
|
|
this.labelOnlySelectFromDisk.Name = "labelOnlySelectFromDisk";
|
|
//
|
|
// label2
|
|
//
|
|
resources.ApplyResources(this.label2, "label2");
|
|
this.label2.Name = "label2";
|
|
//
|
|
// fileNameTextBox
|
|
//
|
|
resources.ApplyResources(this.fileNameTextBox, "fileNameTextBox");
|
|
this.fileNameTextBox.Name = "fileNameTextBox";
|
|
this.fileNameTextBox.TextChanged += new System.EventHandler(this.fileNameTextBox_TextChanged);
|
|
//
|
|
// BrowseButton
|
|
//
|
|
resources.ApplyResources(this.BrowseButton, "BrowseButton");
|
|
this.BrowseButton.Name = "BrowseButton";
|
|
this.BrowseButton.UseVisualStyleBackColor = true;
|
|
this.BrowseButton.Click += new System.EventHandler(this.BrowseButton_Click);
|
|
//
|
|
// PatchingWizard_SelectPatchPage
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "PatchingWizard_SelectPatchPage";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label labelOnlySelectFromDisk;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox fileNameTextBox;
|
|
private System.Windows.Forms.Button BrowseButton;
|
|
}
|
|
}
|