質問

I'm using an OpenFileDialog and I would like to only show files with NO extension,

I've tried this but doesn't seem to work:

    OpenFileDialog ofd = new OpenFileDialog();
    ofd.Filter = "DICOMDIR Files|" + null;
    ofd.FileName = string.Empty;
    ofd.Multiselect = false;

any ideas?

役に立ちましたか?

解決

Write your own custom dialog. No other way to do it.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top