Checkbox Example for an Extended Message Box
ExtendedDialogResult LobjResult = ExtendedMessageBox.Show("Hello World - Are you ok?", | |
"The Office Context", | |
MessageBoxButtons.OKCancel, | |
MessageBoxIcon.Information, | |
"Do not show this message again."); | |
if(LobjResult.Result == DialogResult.OK && LobjResult.IsChecked) | |
{ | |
// do something | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment