OpenFileDialog/c# slow on any file. better solution?

前端 未结 4 642
栀梦
栀梦 2020-12-16 12:34

I am opening a file using the OpenFileDialog in c# and I am noticing it is taking between 20-40 seconds to load my file and clear the dialog.

Here is my sample code

相关标签:
4条回答
  • 2020-12-16 12:58

    You can use a free tool like ProcExp (SysInternals.com) to monitor what your application is doing during the lag. Is it scanning the file system? The registry? The network (maybe it is trying to connect to a network share that is slow to respond).

    BTW, you can run ProcExp.exe without installing it from http://live.sysinternals.com/!

    0 讨论(0)
  • 2020-12-16 13:10

    I also had this problem when I want to open a example.url file with file open dialog. It takes 0-10 seconds. Then I find out that this has something todo with the file type association (*.url) When I changed the association from default web browser to notepad++ the problem was gone. But I this was no solution for me, because when somebody clicked on a example.url, the default browser should open this file. To solve this I added DereferenceLinks = false.

    OpenFileDialog ofd = new OpenFileDialog
    {
    ...
       DereferenceLinks = false
    };
    

    For me this solution works perfect

    0 讨论(0)
  • 2020-12-16 13:17

    I had the same problem, openFileDialog1.ShowDialog() was slow, taking 10 seconds after closing it to execute the next line of my program. I noticed in the dialog that I had a couple old shortcuts under "Computer" pointing to webdav url's which were no longer valid. I deleted these shortcuts from windows explorer, and the program is fast now. Check if you have any network connection shortcuts tied to your computer, which also display in the dialog (on the left-hand panel in Windows 7). Try removing them and see if the dialog is faster.

    0 讨论(0)
  • 2020-12-16 13:25

    Another option which helped in my case:

    OpenFileDialog ofd = new OpenFileDialog
    {
    ...
       AutoUpgradeEnabled = false
    };
    

    With this option, OpenFileDialog renders simpler UI, "pre-Vista" style according to MSDN article.

    0 讨论(0)
提交回复
热议问题