mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
f0b1e6b3af
1. Update the duplicated shortcuts on CPU&Mem Page 2. Default radio boxes invisible 3. Move hardcoded logic to VM.cs 4. BIOS boot should be always enabled 5. Move radio boxes to Installation Media page 6. Extract radio boxes as a user control 7. Update summary Signed-off-by: Tim Liu <tim.liu@citrix.com>
102 lines
4.5 KiB
C#
102 lines
4.5 KiB
C#
using System.Drawing;
|
|
|
|
namespace XenAdmin.Wizards
|
|
{
|
|
partial class BootModesControl
|
|
{
|
|
/// <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(BootModesControl));
|
|
this.groupBoxBootMode = new System.Windows.Forms.GroupBox();
|
|
this.tableLayoutPanelBootMode = new System.Windows.Forms.TableLayoutPanel();
|
|
this.radioButtonUEFISecureBoot = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonBIOSBoot = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonUEFIBoot = new System.Windows.Forms.RadioButton();
|
|
this.groupBoxBootMode.SuspendLayout();
|
|
this.tableLayoutPanelBootMode.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBoxBootMode
|
|
//
|
|
this.groupBoxBootMode.Controls.Add(this.tableLayoutPanelBootMode);
|
|
resources.ApplyResources(this.groupBoxBootMode, "groupBoxBootMode");
|
|
this.groupBoxBootMode.Name = "groupBoxBootMode";
|
|
this.groupBoxBootMode.TabStop = false;
|
|
//
|
|
// tableLayoutPanelBootMode
|
|
//
|
|
this.tableLayoutPanelBootMode.Controls.Add(this.radioButtonUEFISecureBoot, 0, 2);
|
|
this.tableLayoutPanelBootMode.Controls.Add(this.radioButtonBIOSBoot, 0, 0);
|
|
this.tableLayoutPanelBootMode.Controls.Add(this.radioButtonUEFIBoot, 0, 1);
|
|
resources.ApplyResources(this.tableLayoutPanelBootMode, "tableLayoutPanelBootMode");
|
|
this.tableLayoutPanelBootMode.Name = "tableLayoutPanelBootMode";
|
|
//
|
|
// radioButtonUEFISecureBoot
|
|
//
|
|
resources.ApplyResources(this.radioButtonUEFISecureBoot, "radioButtonUEFISecureBoot");
|
|
this.radioButtonUEFISecureBoot.Name = "radioButtonUEFISecureBoot";
|
|
this.radioButtonUEFISecureBoot.UseVisualStyleBackColor = true;
|
|
//
|
|
// radioButtonBIOSBoot
|
|
//
|
|
resources.ApplyResources(this.radioButtonBIOSBoot, "radioButtonBIOSBoot");
|
|
this.radioButtonBIOSBoot.Checked = true;
|
|
this.radioButtonBIOSBoot.Name = "radioButtonBIOSBoot";
|
|
this.radioButtonBIOSBoot.TabStop = true;
|
|
this.radioButtonBIOSBoot.UseVisualStyleBackColor = true;
|
|
//
|
|
// radioButtonUEFIBoot
|
|
//
|
|
resources.ApplyResources(this.radioButtonUEFIBoot, "radioButtonUEFIBoot");
|
|
this.radioButtonUEFIBoot.Name = "radioButtonUEFIBoot";
|
|
this.radioButtonUEFIBoot.UseVisualStyleBackColor = true;
|
|
//
|
|
// BootModesControl
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.BackColor = System.Drawing.SystemColors.Control;
|
|
this.Controls.Add(this.groupBoxBootMode);
|
|
this.DoubleBuffered = true;
|
|
this.Name = "BootModesControl";
|
|
this.groupBoxBootMode.ResumeLayout(false);
|
|
this.tableLayoutPanelBootMode.ResumeLayout(false);
|
|
this.tableLayoutPanelBootMode.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBoxBootMode;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanelBootMode;
|
|
private System.Windows.Forms.RadioButton radioButtonUEFISecureBoot;
|
|
private System.Windows.Forms.RadioButton radioButtonBIOSBoot;
|
|
private System.Windows.Forms.RadioButton radioButtonUEFIBoot;
|
|
}
|
|
}
|