How do I scroll over controls added to a dynamic panel?
I am adding dynamic controls to a panel but when the form loads I cannot scroll down unless I hover my mouse cursor over the panel. If its over a control then it will not scroll. How do I modify this, so that if I am hovering above any of the controls I can still scroll down using the mouse wheel?
Re: How do I scroll over controls added to a dynamic panel?
Re: How do I scroll over controls added to a dynamic panel?
me thinks a panel isn't what you should be using. Try taking a look at a LayoutFlowPanel or a FlowLayoutTable ... one or both of thosse should better suit what you're doing and preserve your scrolling w/o needing extra code.
-tg
Re: How do I scroll over controls added to a dynamic panel?
Quote:
Originally Posted by
techgnome
me thinks a panel isn't what you should be using. Try taking a look at a LayoutFlowPanel or a FlowLayoutTable ... one or both of thosse should better suit what you're doing and preserve your scrolling w/o needing extra code.
-tg
FlowLayoutPanel and TableLayoutPanel, to be precise.