Display Windows File Copy Dialog when copying from a Memorystream?

前端 未结 1 1673
旧巷少年郎
旧巷少年郎 2021-01-24 01:18

My application will be writing files to the disk from a MemoryStream. Instead of creating my own progress dialogs, I would love to use existing windows functionality e.g. SHFile

相关标签:
1条回答
  • 2021-01-24 02:07

    You can use Shell Progress Dialogs for this; this API exposes the dialog only, allowing you to use it to show the progress of any type of operation in your own application.

    I wrote a managed wrapper for this a while ago, which you may find useful: Using Shell Progress Dialogs in Windows Forms Applications

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