bloxstrap/Bloxstrap/UI/IBootstrapperDialog.cs
2023-10-06 17:56:11 +01:00

20 lines
517 B
C#

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