Hi,
I'm using OpenFileDialog in a Silverlight 3 application (sample code below).
OpenFileDialog dialog = new OpenFileDialog();
dialog.Multiselect = false;
dialog.Filter = "XML Schemas (*.xsd)|*.xsd";
dialog.ShowDialog();
It was a surprise to me that there's no such property like 'Title' to define Title of the dialog. So I wonder if there's a workaround allowing to set custom title for this dialog.
Thanks in advance.