Problem when trying to hide Scrollbar
See original GitHub issueHello,
Thank for your project. I got an issue. I tried to hide scrollbar (both vertical and horizontal bar) of ImageBox:
imageBox.AutoScroll = false;
imageBox.VerticalScroll.Visible = false;
imageBox.HorizontalScroll.Visible = false;
The problem occurred when I use zoom function. Zoomed image was run to above and disappear!
Issue Analytics
- State:
- Created 9 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Hide scroll bar, but while still being able to scroll
The good thing is that you are not forced to use padding or width differences to hide the scrollbar. This is also zoom...
Read more >Using CSS to hide scrollbars without impacting scrolling
Hiding the scrollbar will create a smoother scrolling experience and remove some distractions from your site's overall layout. Hiding a ...
Read more >How To Hide Scrollbars With CSS
It is not possible to scroll inside the page. Tip: To learn more about the overflow property, go to our CSS Overflow Tutorial...
Read more >Hide scroll bar, but while still being able to scroll using CSS
Preferably Hide scrollbars only when if all content is visible else user may skip the content · Avoid horizontal scrolling on Web pages...
Read more >SOLVED: Hide scrollbar but still scroll | by vigu - Medium
Okay, so what's the real problem is with this for coders? Any guesses? It's with the scrollbar. Can we scroll the contents without...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Wheesh, this bug has been open a long time. There’s a new branch which contains the source for a newer version of the
ImageBox
- it’s not really compatible with the old version, hence the branch. I’ve rewrote scrolling from the ground up, getting rid of the nested inheritance and relying on a custom scroll implementation. This means you can now completely hide the scrollbars (via theVerticalScrollBarStyle
andHorizontalScrollBarStyle
properties) and everything Just Works.Assuming you still use the
ImageBox
(or anyone else reading this issue I suppose!), it would be helpful to obtain some feedback before I start thinking about committing this to master. (I will move the existing 1.x code into a new branch so people can still use the older version if required).I’m pretty sure the last time I actually had time to work on this I spotted some issues so I still need to finalise the code… I’m still pretty busy with some other work right now, but I will make a concentrated effort to get this finished off once and for all as soon as I can.