mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-23 00:46:03 +01:00
138e5884b6
Use two separate feature flags, `guefi` and `guefi-secureboot`, with the following rules: - If the feature is disabled, then the option is hidden in XenCenter. - If the feature is enabled and experimental, then the option is visible and a warning is displayed in XenCenter (in the New Vm and Import wizards). Also show the reason why a boot mode option is greyed out (when the uefi/uefi-secure boot mode is not supported in the selected template). (On the Page_InstallationMedia control, I moved the BootModeContol and PvBootBox controls inside the TableLayoutPanel, to allow better alignment and for better visibility in the design mode) Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
54 lines
1.5 KiB
C#
54 lines
1.5 KiB
C#
using XenAdmin.Controls;
|
|
|
|
namespace XenAdmin.Wizards.ImportWizard
|
|
{
|
|
public partial class ImportBootOptionPage : XenTabPage
|
|
{
|
|
public ImportBootOptionPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
#region Base class (XenTabPage) overrides
|
|
|
|
/// <summary>
|
|
/// Gets the page's title (headline)
|
|
/// </summary>
|
|
public override string PageTitle { get { return Messages.IMPORT_SELECT_BOOT_OPTIONS_PAGE_TITLE; } }
|
|
|
|
/// <summary>
|
|
/// Gets the page's label in the (left hand side) wizard progress panel
|
|
/// </summary>
|
|
public override string Text { get { return Messages.IMPORT_SELECT_BOOT_OPTIONS_PAGE_TEXT; } }
|
|
|
|
/// <summary>
|
|
/// Gets the value by which the help files section for this page is identified
|
|
/// </summary>
|
|
public override string HelpID { get { return "VMConfig"; } }
|
|
|
|
protected override bool ImplementsIsDirty()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
protected override void PageLoadedCore(PageLoadedDirection direction)
|
|
{
|
|
if (direction == PageLoadedDirection.Forward)
|
|
bootModesControl1.Connection = Connection;
|
|
}
|
|
|
|
public override void PopulatePage()
|
|
{
|
|
bootModesControl1.CheckBIOSBootMode();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Accessors
|
|
|
|
public Actions.VMActions.BootMode SelectedBootMode { get { return bootModesControl1.SelectedOption; } }
|
|
|
|
#endregion
|
|
}
|
|
}
|