VitNX_MessageBox.ShowQuestion Method
public static DialogResult ShowQuestion(
string message,
string caption = "Question",
VitNX_DialogButton buttons = VitNX_DialogButton.YesNo
)
This language is not supported or no code example is available.
Parameters
- message
- string
The message.
- caption
- string
The caption.
- buttons
- VitNX_DialogButton
The buttons.
Return Value
DialogResultA DialogResult.
public static DialogResult ShowQuestion(string message, string caption = "Question", VitNX_DialogButton buttons = VitNX_DialogButton.YesNo) { return ShowDialog(message, caption, VitNX_MessageBoxIcon.Question, buttons); }
This language is not supported or no code example is available.