I put a Yes/No/Cancel Messagebox in FormClosing Method of my form. and now this is Message box text: Do You Want to Save Data?
I am not a profesional and not know how to handle if user clicked Cancel Button?
Exactly the result of clicking on Cancel Button must be The form remain open.
How to prevent Closing my form in FormClosing method?
I wrote So far: ;)
...
DialogResult dr =MessageBoxFarsi.Show("Do You Want to Save Data?","",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Warning);
.
.
else if (dr == DialogResult.Cancel)
{
?;
}
.
.
Please Help me to complete my code!
Thanks