Scrollbar in UserControl

  • Thread starter Thread starter Sonnich Jensen
  • Start date Start date
S

Sonnich Jensen

Hi

I was trying to add a scrollbar to a usercontrol, but I havent found a way yet.

I found the scrollaablecontrol, but that does no leave me a static header and/or a footer etc.

So, I need a manual scrollbar - any ideas?

WBR
Sonnich
 
Hi,
System.Windows.Forms.ScrollableControl will be base class for Panels and ContainerControls. If UserControl has to be scroll complete an easy way will be to use a Panel as Container.
If Scrollbar has to be independ there can be used System.Windows.Forms.HScrollBar or VScrollBar.

regards, Hubert Hermanutz
 
Back
Top