mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
21 lines
532 B
C#
21 lines
532 B
C#
using System.Windows.Forms;
|
|
|
|
namespace Bloxstrap.Dialogs.BootstrapperDialogs
|
|
{
|
|
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();
|
|
}
|
|
}
|