Click here to Skip to main content
Click here to Skip to main content

Scrolling Credits Control

By , 14 Jun 2005
 

Sample Image - ScrollingBox_Screenshot.gif

Introduction

This is my first submission to CodeProject as I've been keeping all my good controls to myself for years. I've had a change of heart recently and thought I should share my code.

I recently saw a Scrolling Box control on CodeProject and I thought I could improve on its performance, so here's my rendition of it.

Using the code

You can set the alignment of the scrolling text / images to Near/Center/Far. Padding can be applied on the left and right of the control (top and bottom not used).

Adding text or images is via the Items property by creating a new ScrollingBoxText or ScrollingBoxImage which inherits from the ScrollingBoxItem.

scrollingBox1.Alignment = StringAlignment.Center;
scrollingBox1.Padding = new Padding(10, 10, 0, 0);

scrollingBox1.Items.Add(new 
  ScrollingBox.ScrollingBoxText("Hello this is a test"));
scrollingBox1.Items.Add(new 
  ScrollingBox.ScrollingBoxText("Hello this also is a test"));
scrollingBox1.Items.Add(new 
  ScrollingBox.ScrollingBoxImage(Image.FromFile("C:\\image.gif")));
scrollingBox1.Items.Add(new 
  ScrollingBox.ScrollingBoxText("Try having a long string to test wrapping"));
scrollingBox1.Items.Add(new 
  ScrollingBox.ScrollingBoxText("You can use new line switch\nHello"));

The added extra on this control is the ability to scroll backwards or push forward with the mouse, although slightly clumsy in use.

You can also change the font, background color or even have a background image.

Points of Interest

First off, I have written this in Visual Studio 2005 Beta 2, and I guess I'm gonna get a low ranking and a serious flaming because of this. Well, downgrading to a lower version is pretty simple, so if you need an earlier version, post a comment and I'll have to convert it.

Because this control will be constantly updating on the interface we have to reduce flicker to a minimum. I do this in three ways.

  1. Ensure I set the correct styles for the control.
    SetStyle(ControlStyles.UserPaint
        | ControlStyles.OptimizedDoubleBuffer
        | ControlStyles.AllPaintingInWmPaint, true);
        //ControlStyles.DoubleBuffer if not using .NET v2.0
  2. Only update the area of the control that needs to be updated, by using clipping (I've not actually done this in this control) and checking where the control needs to be updated.
    if (clipRectF.IntersectsWith(item.rectF))
  3. Write the bare minimum amount of code in the OnPaint function that is needed to complete the job, ensuring that all calculations are done else where.

Known Issues

  • The mouse is not really in control of the up and down movements, I just call the function that calculates the text / images when the mouse moves.
  • No design support for adding text or images.

History

  • Uploaded as Visual Studio 2005 Beta 2 solution - 15 June 2005.
  • Uploaded as Visual Studio 2003 solution - 21 June 2005.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

DXNuk
Web Developer
United Kingdom United Kingdom
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberPepsibot20 Aug '11 - 10:15 
GeneralThanksmemberdooldots12 Nov '09 - 11:11 
QuestionLicense?memberkrisstep113 Nov '09 - 7:57 
AnswerRe: License?memberDXNuk3 Nov '09 - 12:18 
Your free to use it in a non commercial sense.
 
My company is about to release a whole new package of controls, of which one is based on this control.
 
Thanks for your interest, David.
 
www.Trustbridge.co.uk
GeneralUsing the code in our commercial productmemberPrakash Buddhiraja11 Mar '09 - 13:07 
GeneralAdd Remove TextmemberBen Harper3 Dec '06 - 20:32 
GeneralSome Queriesmemberyahyacis17 Nov '06 - 7:52 
GeneralText UpdatingmemberMr_Whippy4 Jul '06 - 15:39 
GeneralRe: Text UpdatingmemberBen Harper3 Dec '06 - 20:17 
GeneralEmbedded Imagemembersoloforce12 Nov '05 - 5:29 
GeneralRe: Embedded ImagememberLe_MuLoT8 Dec '05 - 5:08 
QuestionHow to move text Right or Left?memberOmarMallat19 Oct '05 - 18:31 
QuestionHow to delete item ?sussAnonymous5 Oct '05 - 8:45 
AnswerRe: How to delete item ?membersoloforce13 Nov '05 - 6:11 
QuestionLicence?memberhkulten26 Sep '05 - 23:22 
AnswerRe: Licence?memberDXNuk29 Sep '05 - 1:31 
Generalvs 2003memberpicazo19 Sep '05 - 9:49 
QuestionA simpler way?memberS. Senthil Kumar15 Jun '05 - 7:06 
AnswerRe: A simpler way?memberDXNuk15 Jun '05 - 21:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 15 Jun 2005
Article Copyright 2005 by DXNuk
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid