How To Make Moving News Bar in C# Desktop Application without Timer
- by Ehab Sutan
Hello,
I'm making a desktop application in C# which contains a moving News Bar labels.
I'm using a timer to move these labels but the problem is that when i make the interval of this timer low (1-10 for example) the application takes very high percentage of CPU Usage, And when i make it higher(200 -500 ) the movement of the labels becomes intermittent or not smooth movement even that the user may not be able to read the news in Comfortable way.
Question is :
Is there better way to make news Bar moving in a good manner without consuming high resources.
Thanks.