-1
votes
0answers
12 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.
1
vote
1answer
404 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 ...
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
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
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 ...
2
votes
1answer
125 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 ...
2
votes
1answer
186 views

Silverlight ScrollViewer, Find if vertical Scrolling is enable

I have a Scroll viewer <ScrollViewer x:Name="sViewer" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto"/> Now after load, how can I find if the scroll Viewer is ...
0
votes
1answer
52 views

WP7 Managing ScrollViewer within code

Within a WP7 app I am generating a Scrollviewer within the code. This Scrollviewer has a StackPanel as its content and within the Stackpanel I have a grid. I have not assigned any specific heights to ...
0
votes
1answer
82 views

Support for lower resolutions with ScrollViewer

I have a Silverlight application that is designed for a certain minimum resolution with layout growing gracefully if more space is available. What I want to do now is easily add some crude support for ...
0
votes
0answers
87 views

adjusting scrollviewer thumbs to transformed imgage - silverlight

I am trying to put an image control inside the scrollviewer control: <ScrollViewer Grid.Column="0" HorizontalScrollBarVisibility="Auto" ...
0
votes
0answers
113 views

Scroll two different scrollviewers at the same time

I have two scrollviewers in my application and when the first one of them is being scrolled vertically, I want the second scrollview to scroll horizontally (simultaneously). Are there any methods ...
0
votes
1answer
201 views

Silverlight ScrollViewer corrupts focus logic

My XAML: <Grid Background="White"> <Grid.ColumnDefinitions> <ColumnDefinition Width="1*"/> <ColumnDefinition Width="1*"/> </Grid.ColumnDefinitions> ...
0
votes
2answers
299 views

Silverlight Scrollviewer Mousewheel scrolls only when scrolled on datagrid. Page doesn't scroll when scrolled outside the datagrid

Page scrolls without any issue when the mouse is over data grid. If the mouse outside datagrid page doesn't scroll. <navigation:Page> <Grid x:Name="LayoutRoot" HorizontalAlignment="Stretch" ...
0
votes
0answers
180 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 ...
0
votes
1answer
275 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
514 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. ...
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
2answers
298 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
292 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" ...
2
votes
1answer
329 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?
1
vote
2answers
523 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 ...
1
vote
2answers
449 views

WP7/Silverlight: Inactive Buttons inside a ScrollViewer with IsHitTestVisible=False… inside a Pivot

I was making some good progress on my App, but ran into a problem that's stumped me. I was hoping someone could offer their expertise? My app is intended to be a "scoresheet"... one of the PivotItems ...
0
votes
1answer
510 views

LayoutTransformer in silverlight not working

I Have a ScrollViewer, with a LayoutTransformer inside, the XAMLS is <ScrollViewer x:Name="svFlowChart" ScrollViewer.VerticalScrollBarVisibility="Auto" ...
3
votes
2answers
763 views

WP7: ScrollViewer viewport size

Windows Phone 7. I have a ScrollViewer inside a StackPanel inside a PivotItem inside a Pivot. Above the ScrollViewer, there are some other controls. My intention is that the ScrollViewer takes the ...
0
votes
1answer
412 views

WrapPanel Embedded in a ScrollViewer via ContentControl

I have a view wrapped in a WrapPanel so I could use FluidMoveBehaviors to move elements around the screen when resized. I then pull that into a ScrollViewer on another view via a ContentControl. My ...
1
vote
2answers
2k views

Silverlight Listbox scrolling only works if i set the height

i have a listbox and i am trying to make the scrolling work without having to set the height, is this possible? Thanks. Below is the code. The scrolling does not work. <ListBox ...
0
votes
1answer
340 views

Silverlight Toolkit Accordion ScrollViewer

I am populating my Accordion with items from my database. I have also wrapped my Accordion in a ScrollViewer: <ScrollViewer Name="LayoutScrollViewer"> <toolkit:Accordion ...
0
votes
1answer
199 views

Silverlight scrollbar issues

Hello I'm having some issues in Silverlight to make sure the scrollbar resets every time the user is navigated to another page. There is another issue I'm having where the scroll down arrow is not ...
0
votes
2answers
273 views

ScrollViewer scrolls back when released

When I tap and hold and move my list around, it moves, but when I no longer hold, it smoothly scrolls back to beginning of the list. How do I prevent it? I also tried putting whole ItemsControl ...
1
vote
2answers
273 views

Make ScrollViewer not scroll unless necessary

I have a ScrollViewer in my WP7 app which contains the items from an ItemsControl inside a StackPanel. The ItemsControl can generate an arbitrary number of items. How can I make the ScrollViewer ...
0
votes
1answer
3k views

How to add a grid inside a Scroll viewer programmatically

My XAML looks like this <navigation:Page x:Class="SilverlightApplication1.Home"> <Grid x:Name="LayoutRoot"> <!-- <ScrollViewer> <Grid> ...
0
votes
2answers
787 views

Silverlight Canvas Sizing within a ScrollViewer

I am making a Silverlight 4 website with C#. In one of the pages, I want to have two panels beside each other. On the left is a map control and on the right is an image. That is easy enough, but I ...
2
votes
2answers
1k views

ScrollViewer - scroll does not work with images inside ScrollViewer

I have a ScrollViewer, inside of which is some content. The problem is that the scroll doesn't work properly. When you scroll the content with your finger and then release, the scrollable area always ...
3
votes
1answer
1k views

Silverlight Vertical only ScrollViewer?

Is there a way to create a ScrollViewer which only allows content to scroll vertically? The horizontal (width) must be constrained in the same manner as a StackPanel's width is constrained to its ...
4
votes
5answers
930 views

Silverlight RichTextBox/ListBox/ScrollViewer strange behaviour

I have a user control with the following XAML: <ScrollViewer> <ListBox ItemsSource="{Binding Items}"> <ListBox.ItemTemplate> <DataTemplate> ...
1
vote
1answer
249 views

Is there a way to ensure that a Silverlight ScrollViewer keeps the top item completely visible

In Silverlight 4, is there a way that whenever you page down a ScrollViewer (i.e click the scroll bar in the area adjacent to the thumb) whatever item is at the top is completely visible. I still ...
9
votes
1answer
4k views

Windows phone 7 scrollviewer problem

I am not able to scroll through the page in wp7 . eventhough i have added scrollview it still doesnt work. <phone:PhoneApplicationPage ...
2
votes
4answers
4k views

Scroll to bottom of listbox wp7

I have many items(0-100) end need to scroll to the bottom of Listbox which contains it.I tried: ScrollViewer.SetVerticalScrollBarVisibility(listmy, ScrollBarVisibility.Auto); ...
3
votes
1answer
3k views

Growing ScrollView (Height=“Auto” MaxHeight=“Stretch”)

What I want: I would like to have a ScrollView in my Silverlight 4 application which grows in Height together with the content, but does show a scrollbar if it would otherwise grow heigher than its ...
0
votes
1answer
326 views

silverlight scrollviewer and canvas with h/w set. Cant get vertical bar to hide even when lots of room

Silverlight project with tabcontrol hosting canvas objects. I want to wrap my entire tabcontrol with a scrollviewer so that on a short display you can scroll vertically to see the whole area on my ...
0
votes
3answers
858 views

Silverlight: GridSplitter inside ScrollViewer behaving unexpectedly

I'm trying to build a two-column layout where the width of the columns can be changed by using a splitter. The right column's width shouldn't change when the browser window is resized (it shouldn't be ...
0
votes
0answers
132 views

Scrollview is not displaying Canvas within when canvas width increases

Not sure if anyone has had any experience of this. I have a dispatcher timer which, when it ticks, adds another 50 pixels to the width of a canvas. I'm using a ScrollViewer to scroll through the ...
0
votes
1answer
256 views

Preserving a bound ListBox's scroll position when the underlying collection changes

I have a ScrollViewer and a ListBox inside it which is bound to an ObservableCollection in the view model. The ScrollViewer is maximized to take up all available space of the parent container. I'm ...
2
votes
2answers
785 views

Getting a ScrollViewers maximum scroll values?

I'm trying to get the maximum amount a scrollviewer can scroll in the vertical and horizontal direction but I need to be doing this in a layout updated callback. This is what I'm currently doing: ...
0
votes
0answers
273 views

scrollviewer and combobox

I Have a combobox in a datagrid row.The datagrid is rapped with a scrollviewer. When I open the combobox and then scroll with the scrollviewer the combobox stayes opened and dosen't lose it's focus ...
1
vote
1answer
91 views

Scrollviewbox is giving more space than I would like

I have a scroll viewbox defined as such: <ScrollViewer Width="150" Height="150" HorizontalScrollBarVisibility="Auto"> <Grid Name="RootElement"> </Grid> </ScrollViewer> ...
0
votes
1answer
1k views

How can I animate a ScrollIntoView action in Silverlight 4?

Um... that's pretty much it. How can I animate a ScrollIntoView action in Silverlight 4? Edits: I know how to animated the scrolling. I just create my own DependencyProperty and scroll the ...
1
vote
3answers
613 views

Issue with bing map inside a scrollviewer

I have a bing map which is located inside a scrollviewer along with a listbox. Now the problem is when the content of the scrollviewer is scrolled down, "Bing map is rendered on top of other elements ...
1
vote
1answer
538 views

Detect end of ScrollView programatically in Silverlight?

I am new to WPF and I am having some issues with this. I have a ScrollView and a RepeatButton. I want to disable the RepeatButton programatically when the ScrollView has moved all the way left or all ...
1
vote
0answers
462 views

Silverlight paneldragdroptarget scrollviewer

I need to drag a stackpanel from top to bottom of the page. The page has multiple stackpanels and so I used a ScrollViewer to fit in the page. I am using a PanelDragDropTarget to make the stackpanel ...

1 2