DialogResult result = MessageBox.Show("Do you want to delete?", string.Empty, MessageBoxButtons.YesNo, MessageBoxIcon.None, MessageBoxDefaultButton.Button1);
if (result == DialogResult.No)
{
return;
}
And then i get popup Message with "Yes" and "No". Can i translate this two buttons and if yes how?
EDIT:
if anyone has similar problem look here: