Scrollable Label Control

  • Thread starter Thread starter Flynn Arrowstarr
  • Start date Start date
F

Flynn Arrowstarr

Hi, I was wondering if anyone has created a scrolling
Label control for .NET, or if someone here could point me
in the right direction to extend the existing label
control?

I would like a label control that can scroll vertically,
similar to a text box. Ideally, the scroll bars would
behave like the TextBox (Multiline property), only
showing if the amount of text is larger than the control
size, but that's not terribly important. I would also
like to limit the amount of text by implementing a
MaxLength property. So, any ideas? Thanks =)

Flynn
 
Hi,

You can implement the functionality of scrollable label control by using a
textbox control with readonly property set.

Hope this helps...

Girish.
 
Back
Top