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.
1
vote
1answer
100 views
Grid in ScrollViewer doesn't scroll horizontally
I think I'm missing something simple here... how do I get a Grid inside a ScrollViewer to scroll horizontally? I've enabled HorizontalScrollMode, and the content is definitely long enough that it runs ...
1
vote
1answer
110 views
Scrolling is disabled/limited when keyboard is popped up in Windows Phone 7.5
Based on the link scrollviewer to scroll to textbox position
I tried to resolve scrolling issue when keyboard is launched but there is a problem in landscape mode.
Problem in using (App.Current as ...
1
vote
1answer
308 views
Scrollviewer for Windows 8 does not pan correctly after a zoom
I am having trouble with a zoom in button on my scrollviewer.
Inside of the viewer is a grid. And inside of that grid is a bunch of images laid out in a specific ordering. Ideally I would like to go ...
0
votes
1answer
127 views
Click and drag scrolling using ScrollViewer
I would like to allow click and drag scrolling using a ScrollViewer (i.e. click anywhere in the ScrollViewer and drag up or down, and it will scroll accordingly)
I have a StackPanel nested inside a ...
0
votes
1answer
128 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 ...
0
votes
0answers
61 views
ListBox Control Styling
There are 3 things I would like to achieve in my ListBox style: (I am using all of the listbox templates in my style)
Only allow ListBox items that fit fully in the Listbox to be visible (ie no ...
1
vote
1answer
855 views
XAML WP8 - ScrollViewer doesnt take into account orientation
Im working on an app for Win Phone 8 and need to make a settings screen.
I created a user control for this.
...omitted the beginning stuff...
<Grid x:Name="LayoutRoot" Opacity="0.995" ...
0
votes
2answers
726 views
Winrt & Xaml: Grid with Scrollbar … tried Stackpanel, Scrollviewer, can't see to get it to work
I am trying to get a scrollbar on on a grid for WinRT app with Xaml. Basic page setup has an overal grid for the top and middle sections. Inside the middle section I put another grid with 2 rows and ...
0
votes
0answers
76 views
Autoscaling to parent object within a ScrollViewer?
I am having an autoscaling issue with my pages. The pages are displayed within a ScrollViewer, which usually contains a column on the ~33% right and a grid on the ~66% left.
I want to only autoscale ...
0
votes
1answer
174 views
How to Auto scroll scrollviewer to specefic position
I have a custom user control ExpanderListUC, it contains a list of expanders each expander has a stackpanel which contains a list of labels.
I've added a scrollviewer to scroll up and down through ...
0
votes
0answers
115 views
ScrollViewer could not scroll after one of the gridview's content is empty
The goal I'm trying to accomplish is that I have 2 GridView side by side, and one is out of the screen but can be scrolled in if user wants to swipe from right to left. Structure is like this:
...
1
vote
0answers
88 views
How to have a “border” around a image placed in a scrollviewer
I'm creating a windows store app and on a page I have a large image placed inside a ScrollViewer to enable the user to use touch gestures to pan and zoom around in the image. So far, so good, except ...
0
votes
1answer
134 views
How to make that a WPF visual item stretches in width, but shows the horizontal scrollbar at a minimum width?
I want this behavior:
Have an visual item (for example a Grid) inside a ScrollViewer
This item has a MinimunWidth and the scroll viewer has horizontal scroll bar enabled
I want the item to be ...
0
votes
0answers
75 views
Silverlight ScrollViewer with dynamic Image sizing
I would like to show an Image that has bounds on its width, and then beside the image a control of static size. When resizing the window, the image can grow and shrink based on its bounds. If the ...
0
votes
1answer
446 views
WinRT ScrollViewer inheritance
I have an issue with the Windows.UI.Xaml.Controls.ScrollViewer.
It does not work as I'd like it to (doh). If I put a Canvas inside and want to draw on it I can't as all the events from Canvas are ...
1
vote
2answers
439 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
175 views
How to access ScrollViewer in DevExpress GridControl?
I have to access to ScrollViewer in GridControl to do a synchronization with my other GridControls on scrolling.
Before I used vanilla DataGrid and it was quite easy to get ScrollViewer via ...
0
votes
0answers
490 views
WP8 XAML ScrollViewer staying at chosen position
I have a TextBox inside a ScrollViewer, as shown below
<ScrollViewer Name="scrollViewer1" Height="480" HorizontalAlignment="Left" Margin="0,480,8,82" VerticalAlignment="Bottom" Width="480" ...
0
votes
0answers
223 views
ScrollViewer ScrollToVerticalOffset(offset) not working
I know the same question has been posted.
I have tried thesee solutions:
double offset = page.Scroller.ScrollableHeight - cachedScrollHeight;
page.Scroller.ScrollToVerticalOffset(offset);
...
1
vote
2answers
454 views
Child elements of scrollviewer preventing scrolling with mouse wheel?
I'm having a problem getting mouse wheel scrolling to work in the following XAML, which I have simplified for clarity:
<ScrollViewer
HorizontalScrollBarVisibility="Visible"
...
1
vote
1answer
362 views
Programmatically adding content to scrollviewer, scrollbar stops working
Ok, so I am not that versed in the mighty WPF, but I attempted an interesting project to jump into it. I have made a simple RSS/ATOM feed viewer that pulls the HTML out of and RRS or ATOM feed and ...
0
votes
0answers
182 views
ScrollViewer not to scroll when content does not exceed parent's height
In this XAML I can scroll Contents grid up and down a bit even though it does not exceed the ScrollViewer height.
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="80" ...
0
votes
0answers
81 views
Textblock ScrollViewer
I'm building a simple code editor and I want to have a Line Number textblock that auto scrolls vertically as the user types beyond the bottom of the text area. For some reason its works until I get to ...
0
votes
1answer
134 views
WPF element outside a Scrollviewer ignores the ZIndex
If i have an element transformed outside the bounds of the WPF scrollviewer I can't seem to render it on top.
Consider the following example:
<Window ...
1
vote
1answer
459 views
Infinite Scrolling - Windows Phone 7/8
I'm trying to implement the "infinite scrolling" within a Windows Phone 7.1 project.
Most other posts point to this MSDN Blog link.
I'm struggling to implement this though, because it doesn't really ...
1
vote
1answer
303 views
Scrollviewer doesn't scroll with touch
So I have come to that point where I am saying to myself over and over again I am missing some basic stuff.
I have a ScrollViewer with a RichTextBlock that converts HTML to the content.
Everything ...
0
votes
0answers
144 views
WPF Virtualized ItemsControl ScrollChanged behavior changed in .Net 4.5?
One of our applications contains a UserControl where we have multiple layers of ItemsControls that are kept in sync when scrolling. The ItemsControl is virtualized. The application is targetting .Net ...
0
votes
0answers
101 views
Using Zoom in ScrollViewer causes the screen to show only the center
I am making my first Windows Store App and want to explore the zooming capabilities. The MainPage layout is contained in a Grid with Columns and Rows. I enveloped the outer Grid in a ScrollViewer, so ...
1
vote
1answer
123 views
How to hide what's outside a ScrollViewer?
I'm using a ScrollViewer in a WPF project and i'm struggling with its content.
The window this SV is contained in has many other UI items and I'd like to make the Image scrolled by the ScrollViewer ...
2
votes
1answer
126 views
How can I speed up a Silverlight scroll viewer?
I have a ScrollViewer in my Silverlight client that shows lists of items in a selected category. The items change size when selected. Under normal circumstances the ScrollViewer works fine, but one ...
0
votes
1answer
119 views
Scroll bar is not visible
I have a WPF user control. It contains several Expanders separated with GridSplitters. In the code below, you can see that the second Expander contains a TabControl Items. One of the tabs has a ...
4
votes
1answer
75 views
Big performance issue using TextWrapping and ScrollViewer
I have the following piece of XAML:
<ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled">
<TextBlock HorizontalAlignment="Stretch" Margin="10"
...
4
votes
1answer
84 views
Is it possible to have a non scrolling row within a ScrollViewer?
Since I need to have a portion (but not all) of my page in a Scroll Viewer, I've got a winrt-xaml layout like so:
<Page>
<StackPanel>
<Grid>
</Grid>
...
0
votes
2answers
412 views
ScrollViewer is not working in WPF WindowsFormHost
I have WindowsFormHost with a RichTextBox in my WPF form, i have given ScrollViewer for that WindowsFormHost but its not working, WindowsFormHost going outside of ScrollViewer...
My XAML is..
...
-1
votes
1answer
36 views
Center at the Top
Please have a look at the following code
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
1
vote
0answers
50 views
WP7 ScrollViewer content clipped
I add Canvas in ScrollViewer and Set Canvas Clip as below. But the content is clipped. I am confused. Please help me.
public MainPage()
{
InitializeComponent();
for (int i = ...
0
votes
0answers
191 views
ScrollViewer MouseWheel not working w/Trackpad, does with USB Mouse & in Simulator
So I've been fighting Mouse Wheel scrolling in a ScrollViewer all day... Turns out my trackpad on my laptop wasn't simulating Mouse Wheel events. Doesn't make any sense, considering it works on other ...
1
vote
1answer
160 views
How to keep Virtualizing when style ControlTemplate of ListBox?
I read that when styling incorrectly, ListBox will lose its virtualization. As notacat's answer in this question, his solution is OK.
I realize that whenever I put ItemsPresenter in another ...
0
votes
0answers
413 views
Override ScrollViewer ContentTemplate WPF
I have a custom ScrollViewer template that I use to customize DocumentViewer control.
<Style TargetType="{x:Type ScrollViewer}" x:Key="CustomScrollPresenter">
<Setter ...
3
votes
1answer
620 views
WPF Scrollviewer scroll to mouse position
I am working on an image viewer control that consists of an image inside of a scrollviewer.
To zoom, I use a scaletransform within the image's layouttransform.
Zoomin is happening on mouse click. If ...
1
vote
0answers
64 views
Changing the colours on a WPF ScrollViewer's ScrollBar without templating the entire control
I want to change the background colours on the ScrollBar of a ScrollViewer, but I really really don't want to re-template the entire ScrollViewer control along with all the associated logic of ...
0
votes
2answers
98 views
WPF: Inner content wont scroll
I have a Window with a Grid inside:
<Grid KeyboardNavigation.TabNavigation="Local">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" MinHeight="70" />
...
1
vote
1answer
882 views
Scrollviewer in Metro app - scroll by touch and handle other gesture
I have page with Grid and Scrollviewer:
<Grid x:name="mainGrid">
...
<ScrollViewer Name="mainScroller" ScrollViewer.HorizontalScrollBarVisibility="Visible" ...
2
votes
2answers
335 views
How does WPF DataGrid get frozen rows/columns working?
I created a user control based on Grid (not DataGrid), which is wrapped in a ScrollViewer. Now I would like to have frozen rows/columns capability just like in DataGrid, but couldn't figure out how.
...
0
votes
0answers
215 views
WPF Slider as Content of ScrollViewer
I have a number of sliders inside a ScrollViewer. When I use my mouse to click to the right or left of the thumb control, all is well and it functions as a repeatbutton. Outside a ScrollViewer, ...
1
vote
1answer
186 views
How can I see whether a scrollviewer child element is visible, and make it visible if it isn't?
In a scrollviewer I have a textblock with 1000 inlines e.g.
XAML
<Grid>
<ScrollViewer>
<TextBlock Name="textBlock1" TextWrapping="Wrap" />
</ScrollViewer> ...
0
votes
1answer
293 views
How do I make the WPF TextBox border inside the ScrollViewer not disappear
in a WPF window I have a TextBox inside a ScrollViewer:
<ScrollViewer ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto" ...
0
votes
1answer
146 views
ScrollViewer around zoom/pan window
ScrollViewer can automatically add horizontal/vertical scrollbars for a given element. Now, I have an image wrapped inside zooming/panning control. I want to add scrollbars to the view containing this ...
0
votes
1answer
195 views
How to bind a DataTrigger to the ComputedVerticalScrollBarVisibility property of a separate ListBox ScrollViewer?
I want to adjust the width or visibility of a Border or Margin that is placed above a separate ListBox if the vertical scroll bar of the ListBox is collapsed.
I am trying something like this, but ...
0
votes
1answer
203 views
ScrollViewer doesn't scroll ItemsControl when window isn't maximized
I'm using WPF and Prism.
Problem XAML-file:
<UserControl.Resources>
<ResourceDictionary>
<DataTemplate x:Key="GridItemTemplate">
<GridItemView ...
