Reputation: 2856
I have one panel "imageHolder" I have from 4 to 20 pictureboxes (each pictureBox is 256x256px so they increase the panel's size to more than the cellphone's workarea) I have set the panel's autoscroll = true, so that a V and H scrollbar is shown.
Is it possible to make these scrollbars not visible?
The reason i want them to be not visible: - I want to be able to use touch to move around in the panel, and thought that i can do this by just increasing/decreasing the scrollbar's position.
Is there a way to do this? (I have searched, but can't seem to find anything useful. Looks like the scrollbars are a bit limited)
Do you recommend me to do it some other way?
Upvotes: 0
Views: 1187
Reputation: 3014
A bit of a hack, but you could just make the panel bigger than the viewable area so that the scroll bars are off the screen...
Upvotes: 2