Click here to Skip to main content
15,891,372 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hai.... Can anybody suggest me how to scroll the
Text /label control horizontally in winforms using C#.Net.
I mean in asp.net we are using "Marquee control".
same functionality hw can we perform in winform.

Thanks in advance.....

Regards,
Sarath.
Posted

In windows also, it is 'Marquee control'!

Look this:
Easy to Use Marquee Control for Windows Form with Full Designer Support[^]
 
Share this answer
 
Comments
willempipi 21-Apr-11 6:24am    
Lolz...
XML
<ScrollBar Name="hscroll" Maximum="100"  Minimum="1" SmallChange="1" LargeChange="10" Orientation="Vertical"></ScrollBar>
               <Label x:Name="txtblockContent" Background="Red"  HorizontalAlignment="Left" DataContext="{Binding ElementName=hscroll, Mode=OneWay}"
                        Content="{Binding Path=Value}"  />



You can use this...
 
Share this answer
 
Thank Q Sandeep Mewara, I have gone through the link to finish the task.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900