I want to change the text written on the button in the ShowDialog window from Open to somthing else.. How can I do that?
OpenFileDialog openFileDialog = new OpenFileDialog();
if (openFileDialog.ShowDialog() == true)
{
...
}
Thanks in advance!