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.

learn more… | top users | synonyms

1
vote
0answers
20 views

WinRT Controls Over Scrollviewer Consuming Scrolling

My issue is that I have a few controls (buttons, combo-boxes, hit test visible controls, etc) that are on top of a scrollviewer. Now there is no reason for these controls to consume a pointer wheel ...
0
votes
1answer
28 views

Auto scroll banner images in a windows phone 8 app

I'm trying to implement autoscrolling and snapping to images in a windows phone 8 app I currently have couple of images in a stackpanel inside a scrollviewer, and I'd like them to auto scroll ...
-1
votes
0answers
17 views

In Silverlight ScrollViewer not working in touch [closed]

The Silverlight ScrollViewer not scrolling in touch monitor need to set any properties.There is no PanningMode in Silverlight.
0
votes
0answers
15 views

HorizontalAlignment Issue

I am using Silverlight 5 and Telerik library. I have set my RadPanelBar HorizontalAlignment to stretch. When my control is displayed the first time, it takes the size of its parent control, like in ...
-1
votes
1answer
12 views

WP scrolling issue with listbox and scrollviewer

Hi I am trying to get my UI have scrolling in partial page having a list. Here's my code - <Grid x:Name="ContentPanel" Grid.Row="1" Margin="10,0,14,10"> <StackPanel> ...
0
votes
0answers
30 views

WPF: Unable to access a style from App.xaml

I am facing very weird scenario while accessing a style from app.xaml and that too only for one style. app.xaml: <Style x:Key="CustomButtonStyle" TargetType="local:ButtonControl"> ...
-2
votes
0answers
30 views

Center ScrollViewer [closed]

I want to create a horizontal ScrollViewer. In this ScrollViewer when an item is selected I want that Item to go to the center position on my ScrollViewer. Any ideas? I'm still new to Visual Studio ...
0
votes
1answer
11 views

Is there a code-behind equivalent for TextBlock ScrollViewer.CanContentScroll=“True” for DataGridTemplateColumn?

For a TextBlock in XAML, you can do the following inside a DataTemplate: <TextBlock Text="myTextBlock Text" VerticalAlignment="Center" Margin="0,0,5,0" ScrollViewer.CanContentScroll="True" ...
0
votes
0answers
26 views

Prevent scrollview from snapping back to default position

I have a user control which is placed inside a pivot control, everything works fine except that when user scroll down the page then release his finger, the scroll viewer returns back to the initial ...
0
votes
1answer
72 views

WPF ScrollViewer - “Page Up/Down” keys goes all the way to the start/end?

In XAML, I have set up a Grid, containing a ScrollViewer, containing a TextBox: <Window x:Class="Test.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
0answers
21 views

Margin around FixedDocument in DocumentViewer

I am displaying a FixedDocument in a DocumentViewer, and by default the ScrollViewer shows the document with no margin above the top or below the bottom of the document. What I'd like is to change ...
2
votes
1answer
29 views

Detect when ListView is scrolled to the bottom

I have a fairly standard ListView with a GridView: <ListView x:Name="ListViewProducts" ItemsSource="{Binding Products}"> <ListView.View> <GridView> ...
3
votes
2answers
117 views

ScrollViewer mouse wheel not working

I am currently working on my first WPF project and trying to make a listview scrollable. At first I thought this could be easily done by simply limiting the listview's width and height and thus ...
0
votes
1answer
34 views

How to put textblock inside scrollviewer by coding behide ? (wpf)

I have a xaml code like this <... some grid row and column definations .../> <ScrollViewer Grid.Column="1" VerticalScrollBarVisibility="Auto"> <TextBlock "some attribute" /> ...
0
votes
0answers
25 views

Prevent WPF ScrollViewer from Arranging Content during scroll?

I noticed today that content of a ScrollViewer is constantly Arrange()ed while scrolling even if CanContentScroll=false. I guess it makes sense that it would be necessary if you were implementing a ...
1
vote
0answers
73 views

Tablet WPF Windows Desktop Application - Scrolling issue

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

Expanders in Scrollviewer: Scrollviewer not shrinking after collapsing the expanders

I have a grid. This grid holds a scrollviewer which holds a listbox whose items are expanders. When expanding the expanders until they exceed the vertically available height of the UserControl, the ...
1
vote
1answer
35 views

WPF: Canvas swallowing MouseDownEvent?

Can anybody please explain to me why theMouseDownevent is not reaching theScrollViewerin this easy example? <Window x:Class="MouseDownTest.MainWindow" ...
1
vote
1answer
56 views

WPF ScrollViewer set ScrollableHeight

I have a user control which paints content in OnRender. The Height of that control grows by and by. I added this control to a ScrollViewer. The control does only repaint the currently visible area ...
0
votes
1answer
81 views

Cross-slide with nested scrollviewers in WinRT Xaml

I am building an application which requires a horizontal list of vertical lists Simplified XAML layout: <ScrollViewer> <ItemsControl ItemsSource="{Binding Lists}"> ...
0
votes
0answers
88 views

ScrollViewer width in TreeView row not correct after node expand

I have a TreeView where each subnode has a grid with two columns. In the first column, there is a ScrollViewer (because the text can be very long). I want the right side of this ScrollViewer align ...
0
votes
0answers
31 views

Scroll to Run in FlowDocument

I just need to scroll to Run in FlowDocument but I cannot find the proper solution... C# // Get starting pointer TextPointer navigator = ...
0
votes
1answer
58 views

fire (call) method, when scrollviewer scrolled to its end

after being googled a lot, finally i am going to ask this to you guys. i'v created scrollviewer, which contains items(listboxItems) and these items fetching from the webservices. but at once only 5 ...
0
votes
2answers
59 views

Get ScrollViewer.ViewPortHeight in XAML

All, I'm sure this is easy to do, but I'm still trying to do this. I can get the ViewPortHeight of a scrollviewer in code-behind and plug into loaded and size-changed events to manage objects ...
0
votes
2answers
79 views

Animation for ScrollViewer vertical offset

I want to animate vertical scrolling of ScrollViewer. As I understand it the only way to get this event private void viewer_ScrollChanged (object sender, ScrollChangedEventArgs e) And within a ...
1
vote
1answer
89 views

Loading a large image to a WPF app - Scrolling and Drawing both needed

I have an idea of how to do only one of these req's, not both of them. For loading a large image and be able to scroll to see all its parts, I added the image inside a <ScrollViewer/> and got ...
0
votes
0answers
92 views

Scrollable inner and outer grid in WinRT (Excel sheet view)

I am trying to create a list of employees and their roles along with a timeline view (weeks of the year) of the projects they are working on. I am taking an existing excel sheet that contains this ...
1
vote
2answers
81 views

How to override Vertical Scroll behaviour in ListBox?

I am using a List box with wrappnael to hold a list of images in grid fashion. I am also using Mouse Drag Behaviors to drag and drop the items with in ListBox. But i am not able to drag an item ...
0
votes
1answer
154 views

WPF - determine which control is visible in Canvas in ScrollViewer

I have something like this in xaml page: <ScrollViewer x:Name="PreviewvideosScrollViewer" HorizontalScrollBarVisibility="Auto" Width="1366" Height="480" VerticalScrollBarVisibility="Disabled"> ...
0
votes
0answers
41 views

ScrollViewer prevent MouseWheel Handling on certain conditions

I have a Canvas inside a ScrollViewer. I am handling the Mousewheel on my Canvas, e.g. when Ctrl is pressed it will zoom in or out, when shift is pressed, the ScrollViewer will scroll horizontally, ...
0
votes
0answers
58 views

Add items to top of scrollviewer without “moving” content

I'm trying to add new items to the beginning of a scrollviewer, as the sample app shows: MainWindow.xaml <Window x:Class="BibVisualization.MainWindow" ...
0
votes
0answers
17 views

ScrollViewer state

If I run the following application, the scrollbar offset gets lost when I switch between tabs. How can I prevent this? I'd rather not use BringIntoView as a selection may not have been made. Is it ...
0
votes
0answers
53 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
97 views

Windows 8 C# Save ScrollerViewer state on Frame.Navigate

I need to save the position of my ScrollViewer so that when I navigate to a page and hit the back arrow, it will still be at the position it was. I'm using: protected override void LoadState(Object ...
0
votes
1answer
143 views

gridsplitter not behaving as excpected when coupled with scrollviewer and minWidth

I have a grid as background container this grid contains a scrollviewer so that when I resize the window Up, the content extends with it, but when I resize the window down, the scrollbar appears on ...
0
votes
0answers
78 views

Hooking into TextBox ScrollViewer located in TextBox VisualTree. ScrollChanged called on every keypress?

I have a textbox. I am grabbing the ScrollViewer in the visual tree of this textbox. Once I grab the ScrollViewer I'm hooking into it's ScrollChanged event. The reason I am doing this is I've ...
0
votes
1answer
178 views

ScrollViewer not working with StackPanel

Left side of my page I have a vertical StackPanel with the following elements: 1 TextBlock 1 vertical StackPanel with multiple elements that fills the available space I am trying to make the ...
0
votes
0answers
67 views

WPF: How to achieve visual print of UIElement into multiple pages?

I have several controls in a ScrollViewer which when printed should span multiple pages both horizontally and vertically. My current solution uses a series of scrolls (both in horizontal & ...
1
vote
1answer
137 views

Windows Phone Scroll Viewer not scrolling

My StackPanel which is inside a ScrollViewer isn't scrolling for some reason. Code: <ScrollViewer Height="478" Name="scrollerButtons" Width="Auto" Canvas.Left="668" Canvas.Top="2" ...
0
votes
2answers
240 views

ScrollViewer Border (Windows Phone 7)

I have a ScrollViewer on my Windows Phone page. I want to show expllicitly that there is a scrolling possibility. By default, the control itself doesn't show anything which can give a hint to the user ...
1
vote
1answer
89 views

Synchronized scrolling of two ScrollViewers whenever any one is scrolled in wpf

I have gone through the thread: binding two VerticalScrollBars one to another it has almost helped to achieve the goal but still there is something missing. It is that moving the scrollbars ...
0
votes
3answers
495 views

User control inside ScrollViewer doesn't scroll in WPF

I have the following code (abbreviated) in my main window: Although I set both scroll bar visibilities and CanContentScroll properties it doesn't scroll. I assume it has to do with my user control. ...
1
vote
1answer
431 views

How to use ScrollViewer.ScrollToVerticalOffset?

I hope this isn't a duplicate but I can't find any documentation or examples on how to actually use ScrollToVerticalOffset(). I'm using it in a Windows Phone 8 app, but I think it will still apply to ...
1
vote
0answers
204 views

Customizing the ScrollViewer in WPF

I am developing an application which has the customized ComboBox. The look and feel of the ComboBox should like this. I have modified the ComboBox's ControlTemplate to look as above. The problem ...
0
votes
1answer
226 views

Zoom Out Image to fit ScrollViewer Dimensions

I have a little issue with zooming accordingly an image. I have an Image in my XAML, with a ScrollViewer attached so it can be zoomed. Like this : <ScrollViewer x:Name="ImageScrollViewer"> ...
0
votes
1answer
77 views

How to add a buttom that is always visible after a scrollviewer?

I have a ScrollViewer which includes a lot of content (datagrids, stackpanels, textboxes, labels, etc...), and outside of it I want to add a button (PRINT), and it is important that the button is not ...
0
votes
1answer
188 views

How to prevent a ScrollViewer from handling MouseMove event of a descendant? (Silverlight for Windows Phone)

Consider this: <ScrollViewer> <!-- Several Controls /--> <MyControl MouseMove="myMouseMoveHandler" /> <!-- Several Controls /--> </ScrollViewer> MyControl is a ...
0
votes
0answers
46 views

scrollviewer scrolling freely

I have a stackpanel (stackPanel1) which is inside a scrollviewer.I have 2 textboxes at the top of stackPane1 then another stackpanel (stackPanel2) which have two buttons, then another ...
0
votes
1answer
308 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
0answers
86 views

dynamically switch a scrollviewer in wpf

I have an idea to dynamically attach a Scrollviewer in a TreeViewItem template. (TreeView is "symbol-like", by presenting sub-items inside a wpf Expander). The idea is to overlay both elements inside ...

1 2 3 4 5 11