2021-05-15 22:29:11 +00:00
|
|
|
using System.Windows.Forms;
|
|
|
|
|
2021-06-15 23:25:48 +00:00
|
|
|
namespace TBMM
|
2021-05-15 22:29:11 +00:00
|
|
|
{
|
|
|
|
public static class DialogUtils
|
|
|
|
{
|
|
|
|
public static void ShowInfo(string message, string title) =>
|
|
|
|
MessageBox.Show(message, title, MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
|
|
|
public static void ShowError(string message, string title) =>
|
|
|
|
MessageBox.Show(message, title, MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
|
|
|
public static void ShowWarning(string message, string title) =>
|
|
|
|
MessageBox.Show(message, title, MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
|
|
|
|
|
|
|
public static bool ShowYesNoQuestion(string message, string title) =>
|
|
|
|
MessageBox.Show(message, title, MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes;
|
|
|
|
}
|
|
|
|
}
|