mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
21 lines
768 B
C#
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
|
|
};
|
|
}
|
|
}
|