bloxstrap/Bloxstrap/Dialogs/IBootstrapperDialog.cs
2023-02-03 17:45:46 +00:00

21 lines
512 B
C#

using System.Windows.Forms;
namespace Bloxstrap.Dialogs
{
public interface IBootstrapperDialog
{
Bootstrapper? Bootstrapper { get; set; }
string Message { get; set; }
ProgressBarStyle ProgressStyle { get; set; }
int ProgressValue { get; set; }
bool CancelEnabled { get; set; }
void RunBootstrapper();
void ShowSuccess(string message);
void ShowError(string message);
void CloseDialog();
void PromptShutdown();
}
}