mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
c3b667ec7f
New Page: Enlightenment on VM Properties Dialog, visible only for: - VMs on Cream Or Greater hosts - that can be enlightened, regardless of their power state A VM can be enlightened if the key "xscontainer-monitor" exists in other_config. A VM is enlightened if other_config:xscontainer-monitor if true. Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
75 lines
2.9 KiB
C#
75 lines
2.9 KiB
C#
namespace XenAdmin.SettingsPanels
|
|
{
|
|
partial class VMEnlightenmentEditPage
|
|
{
|
|
/// <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(VMEnlightenmentEditPage));
|
|
this.labelRubric = new System.Windows.Forms.Label();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.enlightenCheckBox = new System.Windows.Forms.CheckBox();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelRubric
|
|
//
|
|
resources.ApplyResources(this.labelRubric, "labelRubric");
|
|
this.labelRubric.Name = "labelRubric";
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
|
this.tableLayoutPanel1.Controls.Add(this.enlightenCheckBox, 0, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.labelRubric, 0, 0);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
//
|
|
// enlightenCheckBox
|
|
//
|
|
resources.ApplyResources(this.enlightenCheckBox, "enlightenCheckBox");
|
|
this.enlightenCheckBox.Name = "enlightenCheckBox";
|
|
this.enlightenCheckBox.UseVisualStyleBackColor = false;
|
|
//
|
|
// VMEnlightenmentEditPage
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "VMEnlightenmentEditPage";
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label labelRubric;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.CheckBox enlightenCheckBox;
|
|
}
|
|
}
|