A scroll viewer is a user interface construct that provides a scrolling area to any control(or hierarchy of controls) that is placed within it.
0
votes
1answer
810 views
Disable zooming in and out of scrollviewer in Windows 8 metro app
I am using RichTextBlock to show some text, and the RichTextBlock is in a scrollviewer, the code is shown as below:
<ScrollViewer Grid.Column="0">
<Grid>
...
1
vote
1answer
171 views
Fill with Measure/ArrangeOverride inside a scrollviewer
I have a custom drawn control containing some plots.
I've put it inside a scrollviewer since later I want to be able to zoom the control's contents.
I want this control to have a specific minimum ...
0
votes
1answer
232 views
ScrollViewer with multiple datagrids in silverlight
I have 3 datagrid that in a stackpanel and grid that I need to add in a scroll viewer too. When I try to add the scroll viewer to grid or stack panel nothing happens. When I surround the entire ...
2
votes
0answers
266 views
Setting DataGrid ScrollViewer.IsDeferredScrollingEnabled=“True” creates issues with DataGridComboBoxColumn Scrolling
I have an application that uses a WPF DataGrid that has thousands of rows. I was having performance issues with scrolling using the Vertical ScrollBar so I did some research and found out I can defer ...
0
votes
1answer
126 views
ScrollViewer doesn't snap to window
So I'm trying to make a window that can have a horizontal or vertical scroll bar, the catch is the top row of the grid should be frozen and place and not able to be scrolled vertically (much like ...
0
votes
1answer
2k views
Windows 8 Metro ListView - can't disable ScrollViewer (C#/XAML)
I have a ScrollViewer that contains a Horizontal StackPanel that contains 2 ListViews.
My goal is to get the 2 ListViews to scroll together. The problem I'm having is that I can't get the built-in ...
1
vote
1answer
2k views
Problems with scrolling ListView on Windows 8
I make some sort of chat application for Windows 8 using C# and XAML.
For chat list I am using ListView binded with ObservableCollection. For message items I am using custom controls, contains ...
0
votes
0answers
149 views
ScrollViewer + Wrap Panel + Mousewheel
I cannot get all three to work at the same time. It seems I can only get two of the three goals below to work at a time.
1) The Image to Fill based on resolution of screen
2) The Wrap Panel to wrap ...
0
votes
0answers
54 views
To Display Scrollbar inside a ListBoxItem
I want to display a scroll bar inside every individual listbox item if the window height is short enough.
Below code shows the scroll bar always dimmed.
I think the reason is because the listbox item ...
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 ...
4
votes
4answers
3k views
ScrollViewer GridView XAML
I am currently building a Windows 8 XAML C# application. In a page I have a scrollviewer for horizontal swiping and scrolling. I have several controls in it which work really well with the ...
3
votes
3answers
936 views
How can I detect reaching the end of a ScrollViewer item (Windows 8)?
I need to do some work when the user scrolls to the end of a ScrollViewer in a Windows 8 'Metro UI' app that uses .xaml with C# behind-code. Alternatively, the ScrollViewer has snap-points enabled, so ...
0
votes
1answer
169 views
silverlight 4.0 scrollviewer not updating
I am new to Silverlight. I am trying to provide a zoom in functionality along with inkpresenter. I am using Silverlight 4, c#, asp.net. I can bind the slider to canvas and it does zoom in but i am ...
1
vote
1answer
208 views
Changing the title text dynamically in Windows 8
In the app preview for the Bing Weather app in the Windows 8 release preview, the title text changes automatically when the "view" changes (i.e. when scrolling).
My app currently has two ListBox ...
0
votes
0answers
163 views
Odd quirk with ScrollViewer and TextBox in WPF Application
I have two textboxes in my app generated using the following code. I have one set to TextWrapping="Wrap" and the other with TextWrapping="WrapWithOverflow" for example purposes.
<TextBox ...
0
votes
1answer
393 views
Display User Control in ScrollViewer
I have a scroll viewer that I want to display all of my user controls. I have two types of user controls which are education and work. They are just text boxes and a button. I dynamically create ...
2
votes
3answers
317 views
ListBox knows it is in some distant ScrollViewer?
The code below is the complete representation of the problem. Essentially, when I have a ListBox inside a ScrollViewer the ListBox won't show its own scrollbar. Rather, it relies on the scrollbar of ...
0
votes
0answers
278 views
ScrollViewer does not display “bar”
I have an ItemsControl wrapped in a ScrollViewer. The ScrollViewer behaves correctly but does not display correctly:
I have no Styling for ScrollViewer anywhere in my app.
The bar size looks like ...
0
votes
1answer
285 views
Can't do scrolling inside scrollviewer
When I added titlepanel I've lost ability to scroll. Please help me to recover it.
<StackPanel>
<Grid HorizontalAlignment="Left">
...
1
vote
1answer
538 views
Detecting end of scrolling using a ScrollViewer control in Silverlight with WP7
I've got a page with a ScrollViewer control. I'm trying to implement an endless-scrolling method which lazy loads content from a webservice when the user has scrolled down to the end of the content.
...
1
vote
2answers
143 views
Determining the collection a user clicked on, on a scrollviewer canvas
I've hit a little road block with a timeline I am working on developing in a MVVM based WPF application.
My desire is to be able to tell what "bin" the user wishes to view as there are generally more ...
0
votes
1answer
996 views
Windows Phone: how to disable touch scrolling in ScrollViewer (Listbox)?
i have a scrollviewer with a listbox inside: i need to disable the vertical scroll by touch, how can i?
In other words, the user can't scroll with the touch (i have put buttons, but this is another ...
3
votes
1answer
196 views
Resizing a ScrollViewer containing many items is very slow
I have a ScrollViewer containing a StackPanel that is filled with over 1000 items that each contain a bunch of other items. It performs like a champ at idle or when I actually scroll it. However, when ...
0
votes
1answer
543 views
Windows Phone ScrollViewer.ScrollToVerticalOffset
WinPhone 7.1
In a ScrollViewer I have a stack panel with about 500 strings. I want to scroll the stack panel from code to a certain offset. I tried this:
for (int i = 0; i < 500; i++)
{
tb = ...
0
votes
1answer
241 views
Where to put Scrollviewer visual studio phone
I was trying to put scollviewer into this page before Grid, then all textboxes disappearded. Where should I put scrollviewer? It says Warning 1 The 'Grid' start tag on line 17 position 6 does not ...
3
votes
1answer
1k views
Sticky header in ListView and GridView WinRT xaml
How could one accomplish behavior in which a header of a ListView or GridView group doesn't scroll with the content, but stays fixed until the content comes to an end and the following header then ...
0
votes
1answer
304 views
Any idea about WPF ScrollViewer to make it smooth scroolling like Android?
I have trying a simple ScrollViewer in xaml like below:
<ScrollViewer Height="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type StackPanel}}, Path=Height}" ...
2
votes
4answers
1k views
List Items Vertically on a WrapPanel and take advantage of multiple columns
I need to list items (all of same size) vertically (with a ScrollViewer). I want the items to spread through x columns if the container is large enough to display x columns
I first tried that :
...
0
votes
1answer
293 views
Determining when a silverlight listbox has finished scrolling
Does anyone know of a simple way to determine when a silverlight listbox/scrollviewer has finished scrolling after a swipe?
Thanks
0
votes
1answer
160 views
Issue - Dragging a group of objects after applying RotateTransform with Adorners in a Canvas - Control suddenly jump to extreme value
I'm having a problem using Adorners to roate and drag objects within a Canvas.
Below are the steps I am following-
The Canvas is placed inside a ScrollViewer.
I drop an object on Canvas
Drag it ...
1
vote
1answer
452 views
Can the scrollviewer be used to stretch its contents horizontally between minwidth and maxwidth?
I have a control which contains a devexpress GridControl. I'd like to have a ScrollViewer set up so that when the viewing area is smaller than the minwidth of the GridControl, a horizontal scrollbar ...
1
vote
0answers
427 views
ScrollViewer does not react to ScrollToHorizontalOffset(0)
My ScrollViewer is auto scrolling to a middle offset, even when I try to force it back to a 0 offset it still aligns incorrectly
Here is part of the XAML:
<ScrollViewer x:Name="ScrollView" ...
0
votes
2answers
311 views
How to keep elements in ScrollViewer in sight, regardless of scrolling
In Silverlight, is it possible to let certain elements inside a ScrollViewer stay in view? By this I mean that certain elements should always be visible, regardless of where the scroll position ...
0
votes
1answer
541 views
Fixed background in a scrollviewer Windows Metro (not parallaxing)
I am trying to add a texture as a background to a scrollviewer. I want the background to move with the content, but I want it fiexd. Not using the parallax effect...
So far what I've got is:
...
0
votes
1answer
307 views
Mo' Silverlight, Mo' troubles… with placing a DataGrid inside a ScrollViewer inside a HeaderedContentControl
I'm using this XAML:
<Border x:Name="border1" Grid.Row="1">
<toolkit:HeaderedContentControl Header="HeaderedContentControl" HorizontalContentAlignment="Stretch" ...
0
votes
1answer
297 views
Image with stretch not displayed completely
I would like to use a Window to display one (or optionally two) image(s) in a grid row.
This image could be quite big, so I set the Stretch property to "UniformToFill" and embed the grid into a ...
1
vote
1answer
139 views
c# scrollviewer and dispatch timer firing problems
So I am having a problem with the firing of my dispatch timer when scrolling through a scrollviewer housing about 100 small rectangles in stackpanels.
My dispatch timer is firing every 400 ms, ...
2
votes
1answer
345 views
Synchronise 2 scrollviewers silverlight
I want to synchronize 2 scrollviewers. Please let me know how to get scroll event of both scrollviewers and then synchronize them both?
2
votes
1answer
991 views
How to find that ScrollViewer is scrolled to the end in WPF?
I have a ScrollViewer instance in my custom control... I need the requirement that whether scorollview is scrolled to the End? Is there any way?
2
votes
1answer
867 views
Scroll viewer in Windows phone 7 not working
I'm new in windows phone 7 development. I've started an app where i used scroll viewer. Here is my code :
...
1
vote
1answer
1k views
Reaching bottom of ScrollViewer - maximum VerticalOffset value is lower than ScrollableHeight
I have problem with detecting when user reached the bottom of a ScrollViewer.
My Code:
bool atBottom = scrollViewer.VerticalOffset >= scrollViewer.ScrollableHeight;
But sometimes when I ...
0
votes
1answer
304 views
Windows Phone ListBox/ScrollView control won't update
I'm new to Windows Phone 7.1 development. I work in VB.NET.
I'm working on an application similar with 'How to: Create a Basic Local Database Application for Windows Phone'.
I've managed to write ...
0
votes
1answer
473 views
WPF Nested Scrollviewers - giving control back to parent scollviewer
This is what my control tree looks like:
<window>
<scrollviewer>
<expander>
<scrollviewer>
<grid>
</grid>
</scrollviewer>
...
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
2answers
530 views
WPF - ScrollViewer with fixed header/row
What is the easiest way to create ScrollViewer with fixed header (control that always stays at the top ignoring the scroll), but which still scrolls horizontally.
Should I write my own ScrollViewer ...
0
votes
1answer
427 views
An empty column in DataGrid when using ScrollViewer
I have several tabitems, each of them have a DataGrid in it, and I set DataGrid's attribute "AutoGenerateColumns" to false. The TabControl is embraced by a ScrollViewer, Here is the question, every ...
0
votes
1answer
461 views
Scrollviewer logical scrolling with physical scrolling animation (touch)
I have a scrollviewer that contains an stackpanel. The stackpanel is filled with usercontrols that I created. I want to use the logical scrolling but with the physical scrolling way of panning to left ...
9
votes
3answers
723 views
Scrollviewer & SIP Issue (WP7.5 Mango)
I am working on an application which includes a registration form. The form contains multiple text entry boxes, and so a ScrollViewer is used to allow them all to be displayed on one page.
The ...
0
votes
1answer
997 views
Zooming To Mouse Point With ScrollView and ViewBox in Wpf
I have some paths drawn to the screen in wpf. The coordinates being used are quite small so they have been made to fill the screen with a view box. I am now trying to implement pan and zoom ...
1
vote
0answers
306 views
Calculate offset for ScrollToVerticalOffset from line number in a WPF RichTextBox
I want to move the content of a RichTextBox to a specific line of the content. The RichTextBox provides the method ScrollToVerticalOffset from the embedded ScrollViewer. The method is documented in ...

