Link
http://www.html5gamedevs.com/topic/33982-whats-next/?do=findComment&comment=205681
Feature description
Dropdown/Selection, like a HTML select element.
Stackpanel overflow scrolling(..slider) when a predefined width or height is set and exceeded (depending on whether the panel is horizontal or vertical).
Being able to predefine height's & width's while the contents are dynamic and scrollable is a widely used feature when designing GUI's
Hi All, would love to work on this :)
Any suggestions on how to create the overflow effect ?
-Thanks
I suggest tackle the drop down first
The overflow requires scrolling support and we don't have it yet
I have been wondering about the overflow and how it can be done, i haven't had time to test it out.
I apologize if it doesn't make sense, it's quite complicated to explain, but works fine in my mind 馃槃
Theory,
1 container (fixed width & height),
1 stackPanel,
2 sliders, 1 normal slider for X-axis overflow, 1 rotated slider for Y-axis, size scaled to parent(container) width / height respectively.
If stackPanel width/height > container width/height = display slider(s) respectively, & Capture mouse wheel scrolling & mouse wheel click + move & mouse click + drag on slider -> affect slider -> slider value affects stackPanel top/left values (position/offset inside the container), thus displaying different areas of the stackPanel.
Of course this is just an untested idea, and i'm sure there are better ways of dealing with it by integrating it into the source code instead.
Awesome ! exactly what I was thinking except I thought of adding "max-width" and "max-height" attribute to containers.
Most helpful comment
I suggest tackle the drop down first
The overflow requires scrolling support and we don't have it yet