Any 'ScrollBox' control?

  • Thread starter Thread starter MuZZY
  • Start date Start date
M

MuZZY

Hi,

When i am using Borland Delphi for Windows programming, it has a
TScrollBox component, which acts like a panel with optional scrollbars,
which appear if nested components don't fit into panel's area.
Is there such a component in .NET?

PS. I am not talking about HScrollBar and VScrollBar - those are
independent components needed to be specifically handled by programmer.

Thank you in advance,
Andrey
 
* MuZZY said:
When i am using Borland Delphi for Windows programming, it has a
TScrollBox component, which acts like a panel with optional
scrollbars, which appear if nested components don't fit into panel's
area.

Some container controls provide an 'AutoScroll' property. Forms have
this property, and Panel controls provide this property too. Simply set
it to 'True' to enable scrolling when the content don't fit into the
control's/form's area.
 
MuZZY said:
Hi,

When i am using Borland Delphi for Windows programming, it has a
TScrollBox component, which acts like a panel with optional scrollbars,
which appear if nested components don't fit into panel's area.
Is there such a component in .NET?

PS. I am not talking about HScrollBar and VScrollBar - those are
independent components needed to be specifically handled by programmer.

Thank you in advance,
Andrey

THANKS A LOT GUYS!!!
 
Back
Top