ProgressBar没有值,只是加载

时间:2012-09-26 13:45:44

标签: c# winforms progress-bar

使用WinForms创建这样的进度条需要做什么?

Progressbar

3 个答案:

答案 0 :(得分:18)

它被称为选框进度条。只需使用常规ProgressBar并设置:

即可
myProgressBar.Style = ProgressBarStyle.Marquee;

myProgressBar.MarqueeAnimationSpeed = yourDesiredSpeed;

答案 1 :(得分:3)

只需使用经典的ProgressBar Control并指定:

myProgressBar.Style = ProgressBarStyle.Marquee;

答案 2 :(得分:1)

您正在寻找style property - 将其设为MarqueeMSDN link on styles