tagged [scrollbar]

Panel for drawing graphics and scrolling

Panel for drawing graphics and scrolling I want to be able to use a `Panel` or similar to draw graphics onto a Winform. I cannot seem to see anything regarding adding scrollbars if the graphics become...

2 Mar at 14:46

CSS scrollbar style cross browser

CSS scrollbar style cross browser How can I define a CSS scrollbar style cross browser? I tested this code, it only works in IE and opera, but failed in Chrome, Safari and Firefox. ```

22 Sep at 02:23

How to disable horizontal scrollbar for table panel in winforms

How to disable horizontal scrollbar for table panel in winforms Hi I've a tablelayoutpanel and I'm binding controls to it dynamically. When the item count exceeds the height of panel obviously vertica...

4 Feb at 05:15

How can I check if a scrollbar is visible?

How can I check if a scrollbar is visible? Is it possible to check the `overflow:auto` of a div? ``` $('.my_class').live('hover', function (event) { if (event.type == 'mouseenter') { if( ... i...

26 Oct at 17:34

Horizontal Scrollbar is not visible on DataGridView

Horizontal Scrollbar is not visible on DataGridView I have a `DataGridView` on Window form which is populated with 30 columns and thousands of rows. `ScrollBars` property is set to `Both`, but still h...

Custom CSS Scrollbar for Firefox

Custom CSS Scrollbar for Firefox I want to customize a scrollbar with CSS. I use this WebKit CSS code, which works well for Safari and Chrome: How can I do the same thing in Firefox?

18 Nov at 06:27

CSS3 scrollbar styling on a div

CSS3 scrollbar styling on a div How can I style webkit scrollbars with CSS3? I mean these properties: ``` ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { -webkit-box-sha...

18 Aug at 06:35

Hide html horizontal but not vertical scrollbar

Hide html horizontal but not vertical scrollbar I have an HTML textarea that is of fixed width, but variable height. I would like to set `overflow:scroll` and be able to show a vertical scrollbar, but...

11 Jun at 14:7

Remove scrollbars from textarea

Remove scrollbars from textarea Following up to my previous question ([Add a scrollbar to a ](https://stackoverflow.com/questions/19420923/add-a-scrollbar-to-a-textarea)) on how to always see the scro...

How do I make the scrollbar on a div only visible when necessary?

How do I make the scrollbar on a div only visible when necessary? I have this div: The scrollbars are always visible, even though the text does not overflow. I want to make the scrollbars only be visi...

6 Feb at 15:18

Automatic vertical scroll bar in WPF TextBlock?

Automatic vertical scroll bar in WPF TextBlock? I have a `TextBlock` in WPF. I write many lines to it, far exceeding its vertical height. I expected a vertical scroll bar to appear automatically when ...

28 Oct at 18:27

How to find Vertical Scrollbar width of a Scrollviewer in C#

How to find Vertical Scrollbar width of a Scrollviewer in C# I have a ScrollViewer and in that I am showing the Vertical Scrollbar, Now on changing resolution of the system I want to get the width of ...

23 May at 12:30

still Not able to Hide Horizontal Scrollbar of FlowLayoutPanel in WinForms Apps

still Not able to Hide Horizontal Scrollbar of FlowLayoutPanel in WinForms Apps I am not able to hide the Horizontal Scroll-bar of my FlowLayout panel. I am adding this panel dynamically. I have read ...

How to add Scrollbars to Grid

How to add Scrollbars to Grid How does one add scrollbars to a grid? ```

8 Jul at 14:56

TableLayoutPanel displays vertical scroll

TableLayoutPanel displays vertical scroll I have TableLayoutPanel for dynamic creation of controls with AutoScroll = true. It's work fine when I add new controls. But when I remove and all controls ar...

WPF Datagrid - Not showing any Scrollbar

WPF Datagrid - Not showing any Scrollbar My Datagrid has a binding on an ObservableCollection and gets filled after grouping some values fetched by EF. My Problem is, that the datagrid-height grows be...

3 Jun at 13:0

Prevent scroll-bar from adding-up to the Width of page on Chrome

Prevent scroll-bar from adding-up to the Width of page on Chrome I have a small issue trying to keep my .html pages at a consistent width on Chrome. For example, I have a page (1) with lots of content...

28 Dec at 03:21

Cannot use geometry manager pack inside

Cannot use geometry manager pack inside So I'm making an rss reader using the tkinter library, and in one of my methods I create a text widget. It displays fine until I try to add scrollbars to it. He...

17 Sep at 19:10

MouseWheel event doesn't fire when using any control with scrolbars (in C# Windows Forms)

MouseWheel event doesn't fire when using any control with scrolbars (in C# Windows Forms) MouseWheel event doesn't fire when I' am using any control (ListBox, Panel, TextBox) with scrollbars. To repro...

WPF ScrollBar styles

WPF ScrollBar styles Is it possible to create scrollbars like in this picture? [](https://i.stack.imgur.com/bVL61.png) This picture was taken from this link: [http://codesdirectory.blogspot.be/2013/01...

8 May at 01:50

WPF Grid not showing scroll bars

WPF Grid not showing scroll bars In .NET 3.5 I have a Grid in a Window. I am populating this Grid with Buttons. When the buttons fill the grid and go out of view the Grid does not show the scroll bar....

4 Nov at 14:6

Tkinter scrollbar for frame

Tkinter scrollbar for frame My objective is to add a vertical scroll bar to a frame which has several labels in it. The scroll bar should automatically enabled as soon as the labels inside the frame e...

2 Mar at 17:52

How do I get a Unity Scroll Rect to scroll to the bottom after the content's Rect Transform is updated by a Content Size Fitter?

How do I get a Unity Scroll Rect to scroll to the bottom after the content's Rect Transform is updated by a Content Size Fitter? I have a vertical scroll view that I want to add content to dynamically...

2 Dec at 23:26