Created
March 20, 2020 19:51
-
-
Save davecra/88897542e1748133de5e6ae6eb7593b7 to your computer and use it in GitHub Desktop.
Checkbox Example for an Extended Message Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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