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