OpenFileDialog.ShowReadOnly does not work · Issue #6346 · dotnet/wpf (original) (raw)

Problem description:

The OpenFileDialog ignores the ShowReadOnly property on the Vista code path.

Actual behavior:

No check box in the dialog.

Expected behavior:

A check box in the dialog as per documentation.

A dropdown option on the Open button would also be acceptable:

Minimal repro:

OpenFileDialog ofd = new OpenFileDialog(); ofd.ShowReadOnly = true; ofd.ShowDialog();