I have a marquee style progress bar开发者_运维技巧 at some point I want it to stop well marqueeing I guess How do I ? this is on win7 .NET 3.5
Set the Style
property to a value other than Marquee
:
progressBar.Style = ProgressBarStyle.Marquee; // marquee animation starts
progressBar.Style = ProgressBarStyle.Continuous; // marquee animation stops
精彩评论