bloxstrap/Bloxstrap/Extensions/BootstrapperStyleEx.cs
2024-10-19 21:05:37 +01:00

21 lines
768 B
C#

namespace Bloxstrap.Extensions
{
static class BootstrapperStyleEx
{
public static IBootstrapperDialog GetNew(this BootstrapperStyle bootstrapperStyle) => Frontend.GetBootstrapperDialog(bootstrapperStyle);
public static IReadOnlyCollection<BootstrapperStyle> Selections => new BootstrapperStyle[]
{
BootstrapperStyle.FluentDialog,
BootstrapperStyle.FluentAeroDialog,
BootstrapperStyle.ClassicFluentDialog,
BootstrapperStyle.ByfronDialog,
BootstrapperStyle.ProgressDialog,
BootstrapperStyle.LegacyDialog2011,
BootstrapperStyle.LegacyDialog2008,
BootstrapperStyle.VistaDialog,
BootstrapperStyle.CustomDialog
};
}
}