mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
bd36a85bff
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
88 lines
3.5 KiB
C#
88 lines
3.5 KiB
C#
namespace XenAdmin.Wizards.BallooningWizard_Pages
|
|
{
|
|
partial class ChooseVMs
|
|
{
|
|
/// <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(ChooseVMs));
|
|
this.listBox = new System.Windows.Forms.CheckedListBox();
|
|
this.clearAllButton = new System.Windows.Forms.Button();
|
|
this.selectAllButton = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// listBox
|
|
//
|
|
resources.ApplyResources(this.listBox, "listBox");
|
|
this.listBox.CheckOnClick = true;
|
|
this.listBox.FormattingEnabled = true;
|
|
this.listBox.Name = "listBox";
|
|
this.listBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.listBox_ItemCheck);
|
|
//
|
|
// clearAllButton
|
|
//
|
|
resources.ApplyResources(this.clearAllButton, "clearAllButton");
|
|
this.clearAllButton.Name = "clearAllButton";
|
|
this.clearAllButton.UseVisualStyleBackColor = true;
|
|
this.clearAllButton.Click += new System.EventHandler(this.clearAllButton_Click);
|
|
//
|
|
// selectAllButton
|
|
//
|
|
resources.ApplyResources(this.selectAllButton, "selectAllButton");
|
|
this.selectAllButton.Name = "selectAllButton";
|
|
this.selectAllButton.UseVisualStyleBackColor = true;
|
|
this.selectAllButton.Click += new System.EventHandler(this.selectAllButton_Click);
|
|
//
|
|
// label1
|
|
//
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.label1.Name = "label1";
|
|
//
|
|
// ChooseVMs
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.BackColor = System.Drawing.SystemColors.Control;
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.selectAllButton);
|
|
this.Controls.Add(this.clearAllButton);
|
|
this.Controls.Add(this.listBox);
|
|
this.Name = "ChooseVMs";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button selectAllButton;
|
|
private System.Windows.Forms.Button clearAllButton;
|
|
private System.Windows.Forms.CheckedListBox listBox;
|
|
private System.Windows.Forms.Label label1;
|
|
}
|
|
}
|