mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-25 12:01:25 -07:00
57 lines
2.1 KiB
C#
57 lines
2.1 KiB
C#
using System.Windows;
|
|
|
|
using Bloxstrap.UI.Elements.Bootstrapper;
|
|
using Bloxstrap.UI.Elements.Dialogs;
|
|
using Bloxstrap.UI.Elements.Menu;
|
|
|
|
namespace Bloxstrap.UI
|
|
{
|
|
static class Controls
|
|
{
|
|
public static void ShowMenu() => new MainWindow().ShowDialog();
|
|
|
|
public static MessageBoxResult ShowMessageBox(string message, MessageBoxImage icon = MessageBoxImage.None, MessageBoxButton buttons = MessageBoxButton.OK, MessageBoxResult defaultResult = MessageBoxResult.None)
|
|
{
|
|
if (App.IsQuiet)
|
|
return defaultResult;
|
|
|
|
switch (App.Settings.Prop.BootstrapperStyle)
|
|
{
|
|
case BootstrapperStyle.FluentDialog:
|
|
case BootstrapperStyle.ByfronDialog:
|
|
return Application.Current.Dispatcher.Invoke(new Func<MessageBoxResult>(() =>
|
|
{
|
|
var messagebox = new FluentMessageBox(message, icon, buttons);
|
|
messagebox.ShowDialog();
|
|
return messagebox.Result;
|
|
}));
|
|
|
|
default:
|
|
return System.Windows.MessageBox.Show(message, App.ProjectName, buttons, icon);
|
|
}
|
|
}
|
|
|
|
public static void ShowExceptionDialog(Exception exception)
|
|
{
|
|
Application.Current.Dispatcher.Invoke(() =>
|
|
{
|
|
new ExceptionDialog(exception).ShowDialog();
|
|
});
|
|
}
|
|
|
|
public static IBootstrapperDialog GetBootstrapperDialog(BootstrapperStyle style)
|
|
{
|
|
return style switch
|
|
{
|
|
BootstrapperStyle.VistaDialog => new VistaDialog(),
|
|
BootstrapperStyle.LegacyDialog2008 => new LegacyDialog2008(),
|
|
BootstrapperStyle.LegacyDialog2011 => new LegacyDialog2011(),
|
|
BootstrapperStyle.ProgressDialog => new ProgressDialog(),
|
|
BootstrapperStyle.FluentDialog => new FluentDialog(),
|
|
BootstrapperStyle.ByfronDialog => new ByfronDialog(),
|
|
_ => new FluentDialog()
|
|
};
|
|
}
|
|
}
|
|
}
|