From 3f48c3069b09a388641856cb824bc5f1387e20f6 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Sat, 3 Feb 2024 23:27:02 +0000 Subject: [PATCH] better list of bootstrapper styles --- Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs b/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs index 8df58df..df430fb 100644 --- a/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs +++ b/Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs @@ -65,7 +65,16 @@ namespace Bloxstrap.UI.ViewModels.Menu } } - public IEnumerable Dialogs { get; } = Enum.GetValues(typeof(BootstrapperStyle)).Cast(); + public IEnumerable Dialogs { get; } = new BootstrapperStyle[] + { + BootstrapperStyle.FluentDialog, + BootstrapperStyle.ProgressFluentDialog, + BootstrapperStyle.ProgressFluentAeroDialog, + BootstrapperStyle.ByfronDialog, + BootstrapperStyle.LegacyDialog2011, + BootstrapperStyle.LegacyDialog2008, + BootstrapperStyle.VistaDialog + }; public BootstrapperStyle Dialog {