89 lines
3.3 KiB
C#
89 lines
3.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using ScaBox30.Private;
|
|
|
|
namespace ScaBox30
|
|
{
|
|
public abstract class RJMessageBox
|
|
{
|
|
public static DialogResult Show(string text)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text))
|
|
result = msgForm.ShowDialog();
|
|
return result;
|
|
}
|
|
public static DialogResult Show(string text, string caption)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption))
|
|
result = msgForm.ShowDialog();
|
|
return result;
|
|
}
|
|
public static DialogResult Show(string text, string caption, MessageBoxButtons buttons)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption, buttons))
|
|
result = msgForm.ShowDialog();
|
|
return result;
|
|
}
|
|
public static DialogResult Show(string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption, buttons, icon))
|
|
result = msgForm.ShowDialog();
|
|
return result;
|
|
}
|
|
public static DialogResult Show(string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption, buttons, icon, defaultButton))
|
|
result = msgForm.ShowDialog();
|
|
return result;
|
|
}
|
|
|
|
/*-> IWin32Window Owner:
|
|
* Displays a message box in front of the specified object and with the other specified parameters.
|
|
* An implementation of IWin32Window that will own the modal dialog box.*/
|
|
public static DialogResult Show(IWin32Window owner, string text)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text))
|
|
result = msgForm.ShowDialog(owner);
|
|
return result;
|
|
}
|
|
public static DialogResult Show(IWin32Window owner, string text, string caption)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption))
|
|
result = msgForm.ShowDialog(owner);
|
|
return result;
|
|
}
|
|
public static DialogResult Show(IWin32Window owner, string text, string caption, MessageBoxButtons buttons)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption, buttons))
|
|
result = msgForm.ShowDialog(owner);
|
|
return result;
|
|
}
|
|
public static DialogResult Show(IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption, buttons, icon))
|
|
result = msgForm.ShowDialog(owner);
|
|
return result;
|
|
}
|
|
public static DialogResult Show(IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton)
|
|
{
|
|
DialogResult result;
|
|
using (var msgForm = new FormMessageBox(text, caption, buttons, icon, defaultButton))
|
|
result = msgForm.ShowDialog(owner);
|
|
return result;
|
|
}
|
|
}
|
|
}
|