..
This commit is contained in:
@@ -272,16 +272,19 @@ namespace FCOMMON
|
||||
|
||||
|
||||
#region "MessageBox"
|
||||
public static void MsgI(string m)
|
||||
public static void MsgI(string m, params string[] args)
|
||||
{
|
||||
m = string.Format(m, args);
|
||||
MessageBox.Show(m, "확인", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
public static void MsgE(string m)
|
||||
public static void MsgE(string m,params string[] args)
|
||||
{
|
||||
m = string.Format(m, args);
|
||||
MessageBox.Show(m, "오류", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
public static DialogResult MsgQ(string m)
|
||||
public static DialogResult MsgQ(string m,params string[] args)
|
||||
{
|
||||
m = string.Format(m, args);
|
||||
DialogResult dlg = MessageBox.Show(m, "확인", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
|
||||
return dlg;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user