bloxstrap/Bloxstrap/UI/BootstrapperDialogs/IBootstrapperDialog.cs
pizzaboxer 5ef20a79c7
Add Fluent MessageBoxes
thats a lot of updated files huh
2023-06-29 17:54:05 +01:00

21 lines
549 B
C#

using System;
using System.Windows.Forms;
namespace Bloxstrap.UI.BootstrapperDialogs
{
public interface IBootstrapperDialog
{
public Bootstrapper? Bootstrapper { get; set; }
string Message { get; set; }
ProgressBarStyle ProgressStyle { get; set; }
int ProgressValue { get; set; }
bool CancelEnabled { get; set; }
void ShowBootstrapper();
void CloseBootstrapper();
void ShowSuccess(string message, Action? callback = null);
void ShowError(string message);
}
}