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>
96 lines
3.8 KiB
C#
96 lines
3.8 KiB
C#
namespace XenAdmin.Dialogs
|
|
{
|
|
partial class BallooningDialogAdvanced
|
|
{
|
|
/// <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(BallooningDialogAdvanced));
|
|
this.rubric = new System.Windows.Forms.Label();
|
|
this.memoryControlsAdvanced = new XenAdmin.Controls.Ballooning.VMMemoryControlsAdvanced();
|
|
this.buttonOK = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// rubric
|
|
//
|
|
resources.ApplyResources(this.rubric, "rubric");
|
|
this.rubric.Name = "rubric";
|
|
//
|
|
// memoryControlsAdvanced
|
|
//
|
|
resources.ApplyResources(this.memoryControlsAdvanced, "memoryControlsAdvanced");
|
|
this.memoryControlsAdvanced.Name = "memoryControlsAdvanced";
|
|
//
|
|
// buttonOK
|
|
//
|
|
resources.ApplyResources(this.buttonOK, "buttonOK");
|
|
this.buttonOK.Name = "buttonOK";
|
|
this.buttonOK.UseVisualStyleBackColor = true;
|
|
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
|
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// groupBox1
|
|
//
|
|
resources.ApplyResources(this.groupBox1, "groupBox1");
|
|
this.groupBox1.Controls.Add(this.memoryControlsAdvanced);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.TabStop = false;
|
|
//
|
|
// BallooningDialogAdvanced
|
|
//
|
|
this.AcceptButton = this.buttonOK;
|
|
resources.ApplyResources(this, "$this");
|
|
this.CancelButton = this.buttonCancel;
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonOK);
|
|
this.Controls.Add(this.rubric);
|
|
this.Name = "BallooningDialogAdvanced";
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label rubric;
|
|
private XenAdmin.Controls.Ballooning.VMMemoryControlsAdvanced memoryControlsAdvanced;
|
|
private System.Windows.Forms.Button buttonOK;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
}
|
|
}
|