We had a request from a customer about the RadOpenFileDialog not showing the preview of the actual photo in the list.
Is this possible? With the default explorer version of OpenFileDialog, you can see image previews (second photo).
To reproduce:
private void radButton1_Click(object sender, EventArgs e)
Maybe I'm doing this wrong but it works with the standard .Net SaveFileDialog. No matter how many filters I add or which FilterIndex I set, the last filter is always activated.
With DF.RadSaveFileDialog1
.SaveFileDialogForm.StartPosition = FormStartPosition.CenterParent
.SaveFileDialogForm.Text = "Save File As - " & DF.OriginalTitle
.SaveFileDialogForm.ThemeName = "Fluent"
.CustomPlaces.Clear()
.ShowNetworkLocations = False
.InitialDirectory = My.Application.Info.DirectoryPath()
.Filter = "Word Document (*.docx)|*.docx|PDF Document (*.pdf)|*.pdf"
.RestoreDirectory = True
.FilterIndex = 1
.ShowDialog()
End With
Dear,
Since 1998 I design about 1000 ActiveX, FileDialogs were one of them.
Your is cool.
But my end-user complain that when they select details view, the column DateTime is not clickable to sort the files.
Please, fix it, or show me how to do.
Best,
Jeff
To reprduce:
RadOpenFileDialog dialog = new RadOpenFileDialog();
dialog.MultiSelect = true;
dialog.ShowDialog();
- Select one file only.