I have a messageBox with yes/no buttons. I want the it's string text be right to left, but the buttons location be at left. and I want to change the buttons text also...
I used the below code:
MessageBox.Show("abc", MessageBoxButtons.YesNo, MessageBoxIcon.None,
MessageBoxDefaultButton.Button1, MessageBoxOptions.RightAlign);
but in this code, the buttons be on the left too. how can I set my personal change in it?