Windows 7 progress bar in taskbar in C#?

前端 未结 6 1534
一生所求
一生所求 2020-11-30 18:48

If you\'ve noticed in the Windows 7 beta, if you copy files or other system actions, the windows explorer icon in the taskbar will fill up with a green progress bar equivale

6条回答
  •  借酒劲吻你
    2020-11-30 19:01

    I found a beautiful article (Link) that provides a simple solution to the taskbar progress bar problem. In summary, it instructs you to download the Windows API pack from the MSDN website, adding a reference to the Microsoft.WindowsAPICodePack.Shell.dll that it contains, and finally add three lines of code to your application:

    Imports Microsoft.WindowsAPICodePack
    Imports Microsoft.WindowsAPICodePack.Taskbar
    // ...
    TaskbarManager.Instance.SetProgressValue(X, 100)
    

    where X is the progress you want to display.

提交回复
热议问题