开发者

Scrolling text became a real pain..?

开发者 https://www.devze.com 2023-04-12 23:22 出处:网络
Hi I am working on c# 2005 with a scrolling application.At first I use some of these http://www.codeproject.com/KB/miscctrl/csmarquee.aspx

Hi I am working on c# 2005 with a scrolling application.At first I use some of these

http://www.codeproject.com/KB/miscctrl/csmarquee.aspx

http://www.codeproject.com/KB/miscctrl/ScrollingTextControlArtic.aspx

but all of them cannot help me much.My application contains 7timers.At the time of running it the scrolling panel looks so irritating(read not at all smooth). so I finally tried with a simple panel ,a label and a timer,this also not working (i mean not smooth).

Can there be any other way rather then using timer,开发者_如何学JAVAto scroll a text.


Hard to say what is wrong with your scrolling without any code but you will get much smotther scrolling by using Double Buffering. Read more here: https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.control.doublebuffered

But there is limitation how much "animation" you can do with windows forms and have it smooth. Using DirectX or Silverlight will be better for graphics.


Using a timer to control the rate of scroll should be OK. It sounds like you might not be double buffering your controls which is the usual cause of jerky animation. See this article, among many, on using double buffering for controls.

But first just try and set the DoubleBuffered property to true on your form. That setting alone may fix your animation.

0

精彩评论

暂无评论...
验证码 换一张
取 消