1
vote
1answer
32 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 …
0
votes
2answers
36 views
How to disable ScrollViewer in ListBox?
I have a ListBox. It has internal ScrollViewer, so I can scroll ListBox content with mouse wheel. It works fine until I set item template that contains another ListBox (in fact, I …
0
votes
1answer
116 views
XAML ScrollViewer scroll bar hidden issue (Silverlight)
I’ve got this strange problem whereby the content within a scroll viewer increases in size, the scroll viewer then shows is horizontal scroll bar. However the grid the ScrollViewer …
1
vote
1answer
41 views
Wpf ScrollViewer Scroll Amount
Is it possible to change the amount that the WPF ScrollViewer scrolls? I am simply wondering if it's possible to change the scrollviewer so that when using the mouse wheel or the s …
1
vote
1answer
101 views
ItemsControl, VirtualizingStackPanel and ScrollViewer height
I want to display a important list of items using an ItemsControl.
The reason why I'm using an ItemsControl is that the DataTemplate is much more complex in the application I'm wo …
0
votes
1answer
60 views
Triggering on a ScrollViewer’s scroll bar visibility (WPF)
Is it possible to create a Trigger that is triggered based on a ScrollViewer's scroll bar visibility? I have a ScrollViewer with its VerticalScrollBarVisibility set to Auto and I w …
0
votes
3answers
70 views
WPF ListView still reserving space when collapsed
I have a WPF ListView within a ScrollViewer.
I need to collapse the ListView and I am trying withthis code (pretty striaghtoforward):
this.myListView.Visibility = Visibility.Coll …
0
votes
0answers
35 views
Working with an AdornedElementPlaceholder in a ScrollViewer in WPF
Hi
If I put a large text box which has has a data binding validation error into a ScrollViewer, the red border which is shown around the text box only includes its visible parts a …
0
votes
1answer
80 views
Zoom/scroll to cursor
I have a problem when zooming in/out of an image within a scrollviewer.
When i use the zoom-in button i use a double animation for the image width/height to 1.25 of its original si …
0
votes
1answer
54 views
How to know when an ItemsControl has overflowed its ScrollViewer?
How would one swap a template by using a Trigger when the items within an ItemsControl overflow its container?
In my current implementation I would like to show a more brief form …
0
votes
1answer
72 views
wpf - how can I hit test the scrollbars in the scrollviewer?
Hi,
Can someone please tell me how to hit test the scrollbars of a scrollviewer in WPF?
Thanks,
Andy
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.micr …
1
vote
2answers
1k views
WPF: How to make canvas auto-resize?
I would like my canvas to automatically resize to the size of its items, so that the ScrollViewer scroll bars have the correct range. Can this be done in XAML?
<ScrollViewer Ho …
0
votes
0answers
232 views
C#/WPF: Scroll to last line in DataGrid/ListView etc. / Problem with ScrollViewer
Hello,
I'm trying to scroll to the last line in my DataGrid. This is what I'm using right now:
var border = VisualTreeHelper.GetChild(mainDataGrid, 0) as Decorator;
…
1
vote
1answer
315 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 gesture …
0
votes
0answers
18 views
Triggers on ScrollViewer child controls
I have a the following code for a ScrollViewer in my Silverlight app. The BasketSymbolsView control contains controls that have custom double click triggers applied to them. For …
