module dfl.messagebox;
public DialogResult msgBox(IWindow owner,char[] txt,char[] caption,MsgBoxButtons buttons,MsgBoxIcon icon,MsgBoxDefaultButton defaultButton,MsgBoxOptions options);
public DialogResult msgBox(IWindow owner,char[] txt,char[] caption,MsgBoxButtons buttons,MsgBoxIcon icon,MsgBoxDefaultButton defaultButton);
public DialogResult msgBox(char[] txt);
public DialogResult msgBox(IWindow owner,char[] txt);
public DialogResult msgBox(char[] txt,char[] caption);
public DialogResult msgBox(IWindow owner,char[] txt,char[] caption);
public DialogResult msgBox(char[] txt,char[] caption,MsgBoxButtons buttons);
public DialogResult msgBox(IWindow owner,char[] txt,char[] caption,MsgBoxButtons buttons);
public DialogResult msgBox(char[] txt,char[] caption,MsgBoxButtons buttons,MsgBoxIcon icon);
public DialogResult msgBox(IWindow owner,char[] txt,char[] caption,MsgBoxButtons buttons,MsgBoxIcon icon);
public DialogResult msgBox(char[] txt,char[] caption,MsgBoxButtons buttons,MsgBoxIcon icon,MsgBoxDefaultButton defaultButton);
|