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
0answers
10 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
14 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
10 views
Telerik RadPanelBar 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
9 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
29 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
29 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
24 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
64 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
18 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
116 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
33 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
70 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
33 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
34 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
52 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
80 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
86 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
29 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
56 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
58 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
75 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
81 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
86 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
80 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
153 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
40 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
96 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
141 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
77 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
173 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
66 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
136 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
238 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
88 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
471 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
406 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
201 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
219 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
75 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
183 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
306 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
84 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
vote
1answer
112 views
How to access ScrollViewer in ItemsControl
I'm trying to access the ScrollViewer named 'ScrollViewerItems' in the XAML below and use it in code behind. The name doesn't seem to be recognized, likely because its embedded in the ItemsControl. I ...






