문제

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