2
votes
1answer
33 views

Correct way to set ScrollViewer (for vertical scrolling) on a WPF Frame?

does anyone know the difference between defining a vertical scrollbar on a frame like this: <ScrollViewer Grid.Row="2" VerticalScrollBarVisibility="Auto"> <Frame ...
0
votes
0answers
62 views

Window tablet resize effect WPF

i'm running my desktop application WPF on tablet ASUS ME400 Intel Atom Z2760. All working properly, but when i use scrollviewer scroll moviment with finger (abilitate panningmode horizontalOnly) at ...
0
votes
1answer
331 views

WPF Scrollviewer DesiredSize does not increase when ScrollBar gets Visible

I have a WPF UserControl (inside an ElementHost) with a ScrollViewer that contains an ItemsControl . The HorizontalScrollbarVisibility is set to Auto, so if no scrolling is necessary, the ...
0
votes
1answer
188 views

Adding a Scroll Bar to a Frame WPF

One of the pages I load into my frame is considerably larger than the frame itself. I have tried the instructions found at Frame on a resizable Window should show Scrollbar and my resulting xaml ...
1
vote
2answers
541 views

Windows Phone 7 - ScrollViewer value changed

I am searching all the time for solution and cant get correct one. I have grid that have width 960 and have ScrollViewer in it. Now i would like to know value (horizontal offset) of my scroll while ...
0
votes
1answer
77 views

Surface Librarybar with scrollbars

We have a library bar filled with items, which can be dragged from and dropped onto it. Now the client wishes to see something like a scrollbar or arrows on the side, to have an indication if items ...
0
votes
0answers
186 views

Scrolling the ScrollViewer with seperate scrollbar

I would like to scroll the content in a scrollviewer with a separate scrollbar. On scrollbar's scroll event I'm calling ScrollToVerticalOffset on ScrollViewer with new scrollbar value. Scrolling step ...
1
vote
2answers
546 views

Changing the width of a vertical scrollbar

in my Silverlight 4 application, I have a ScrollViewer. I want to change the width of the vertical Scrollbar of the Scrollviewer, to make it a bit thinner. I have searched for a simple solution, but I ...
0
votes
1answer
206 views

Silverlight scrollbar issues

Hello I'm having some issues in Silverlight to make sure the scrollbar resets every time the user is navigated to another page. There is another issue I'm having where the scroll down arrow is not ...
1
vote
1answer
559 views

Reset scrollbar on ItemsSource change

Whenever I change the ItemsSource (or it fires a collection reset), WPF doesn't reset the scrollbar position of ListView/DataGrid to the top. This is no big deal if there is a nice way of doing this ...
0
votes
1answer
483 views

Scrollbars on UserControls within LayoutPanels

I'm having an issue with scrollbars and LayoutPanels. My LayoutPanel Code looks like this: <dxdocking:LayoutPanel Width="450" > <local:MyUserControl ...
6
votes
1answer
3k views

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 the scrollbar. I went through One StackOverflow Post there ...
2
votes
3answers
2k views

Permanently Enabled Scrollbars Possible?

I am having a problem trying to come up with a way to keep ScrollBars/ScrollViewers permanently enabled. I am working on a Data Entry application where certain users might only have "read" rights. ...
1
vote
2answers
2k views

How to link scrollbar and scrollviewer

I currently have two ScrollViewer's containing alternate views of the same collection. I have bound the scrolling of the two scrollviewers together by handling the ScrollChanged event and using ...
0
votes
1answer
561 views

WPF ScrollBar: both horizontal and vertical from one template?

I have a requirement to retemplate the ScrollBar so that only one Template is required, instead of separate horizontal and vertical ones. The designer's assertion is that the ScrollBar can be rotated ...
0
votes
1answer
1k views

scrollbar management of a 'div' with javascript or jquery

Is there a way to control a scrollbar's life depending on the browser size and the 'div' size at the same time in javascript or jquery. For example, if the 'div' content is overflowing then add ...
0
votes
4answers
965 views

How to prevent ScrollViewer from using MouseWheel event

I'm building SL application for zooming and panning across the layout. Everything is working fine, except that when I zoom in using mouse wheel , after some zoom scrollbars start to use mouse wheel so ...
1
vote
1answer
1k views

WPF ScrollViewer - Align Horizontal Scrollbar to top?

I am wondering if it is possible to dock the horizontal Scrollbar in the ScrollViewer control to the top rather than have it on the bottom? If not, would it be possible to use a whole separate ...
2
votes
1answer
3k views

WPF/XAML Custom ScrollViewer ScrollBar w/o Custom ScrollBar in Inner Controls (like TextBox)

and thank you for looking into my question. I would like to customize the ScrollBar in my ScrollViewer. No problem. But wait. When I do that, it also changes the ScrollBar of the inner controls. I ...
0
votes
1answer
2k views

Wpf binding to a function

I've a created a simple scrollviewer (pnlDayScroller) and want to have a separate horizontal scrollbar (associated scroller) to do the horizontal scrolling. All works with the below code accept I ...
5
votes
1answer
1k views

How to put image “placemarkers” inside a scrollbar in WPF?

I have a long Scroll Viewer and I want to mark important spots with small images on the scroll bar. If the the image is clicked the scroll bar will jump to the corresponding content. I've seen this ...
0
votes
1answer
556 views

C# WPF - Global ScrollViewer Mode

I have made some custom attached properties that enable me to create a "pop out" effect on any control. It animates the width and/or height when a boolean DependencyProperty is toggled. Is there a ...
4
votes
2answers
2k views

Can't fully style a ListBox/Scrollviewer in WPF

I'm using custom Scrollbars we created using standard ControlTemplates, however when I apply them to a ListBox there is a corner in the bottom right which I am unable to find any way to override. ...
7
votes
3answers
3k views

Silverlight 3 missing ScrollViewer.ScrollChanged event workaround?

I want to be notified of changes to the VerticalOffset of the vertical scrollbar of a ScrollViewer. In WPF there is a ScrollViewer.ScrollChanged event, but in Silverlight 3 this is missing. Does ...
10
votes
2answers
5k views

How to increase scrollbar width in WPF ScrollViewer?

I am wokring on a touch screen on a small device and the custom width of the scroll-bar is no good as one of my requirements is that everything needs to be doable by finger gestures. How can I set ...
2
votes
3answers
7k views

How to place a ScrollViewer on top of the content it should scroll

I would like to put my ScrollViewer in such a way that it overlaps/sits on top of the content it scrolls. I would set the Opacity of the ScrollViewer so that the content is visible underneath. As far ...