mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
19 lines
475 B
C#
19 lines
475 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; }
|
|
bool CancelEnabled { get; set; }
|
|
|
|
void ShowBootstrapper();
|
|
void CloseBootstrapper();
|
|
void ShowSuccess(string message, Action? callback = null);
|
|
}
|
|
}
|