bloxstrap/Bloxstrap/UI/Elements/Bootstrapper/Base/BaseFunctions.cs
2023-07-15 22:52:44 +01:00

18 lines
388 B
C#

using System.Windows;
namespace Bloxstrap.UI.Elements.Bootstrapper.Base
{
static class BaseFunctions
{
public static void ShowSuccess(string message, Action? callback)
{
Controls.ShowMessageBox(message, MessageBoxImage.Information);
if (callback is not null)
callback();
App.Terminate();
}
}
}