I have a OpenFileDialog and a SaveFileDialog in my C# program. However, they are always shown at English instead of Windows language.
I want them to be shown at Windows current language, like other programs do.
OpenFileDialog dialog = new OpenFileDialog();
if (dialog.ShowDialog() == DialogResult.OK)
{
string fileName = dialog.FileName;
//Process file...
}