Return to package dfl. | www.dprogramming.com |
public DialogResult msgBox(char[] txt, char[] caption, MsgBoxButtons buttons); |
public DialogResult msgBox(IWin32Window owner, char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon, MsgBoxDefaultButton defaultButton, MsgBoxOptions options); |
public DialogResult msgBox(IWin32Window owner, char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon, MsgBoxDefaultButton defaultButton); |
public DialogResult msgBox(char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon, MsgBoxDefaultButton defaultButton); |
public DialogResult msgBox(IWin32Window owner, char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon); |
public DialogResult msgBox(char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon); |
public DialogResult msgBox(IWin32Window owner, char[] txt, char[] caption, MsgBoxButtons buttons); |
public DialogResult msgBox(IWin32Window owner, char[] txt, char[] caption); |
public DialogResult msgBox(char[] txt, char[] caption); |
public DialogResult msgBox(IWin32Window owner, char[] txt); |
public DialogResult msgBox(char[] txt); |
public enum MsgBoxButtons { ABORT_RETRY_IGNORE, OK, OK_CANCEL, RETRY_CANCEL, YES_NO, YES_NO_CANCEL, } |
public enum MsgBoxDefaultButton { BUTTON1, BUTTON2, BUTTON3, BUTTON4, } |
public enum MsgBoxIcon { NONE, ASTERISK, ERROR, EXCLAMATION, HAND, INFORMATION, QUESTION, STOP, WARNING, } |
public enum MsgBoxOptions { DEFAULT_DESKTOP_ONLY, RIGHT_ALIGN, LEFT_ALIGN, SERVICE_NOTIFICATION, } |