bloxstrap/Bloxstrap/UI/BootstrapperDialogs/BaseFunctions.cs
2023-07-01 20:34:00 +01:00

19 lines
395 B
C#

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