Questions tagged [scrollviewer]

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.

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. May refer specifically to the wpf/silverlight ScrollViewer.

1187 questions
0
votes
1 answer

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 frozen panes in excel). The horizontal scroll bar…
Kevin DiTraglia
  • 25,746
  • 19
  • 92
  • 138
0
votes
1 answer

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 facing problem with the scrollviewer layout which is…
0
votes
0 answers

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 0px, so the arrows end up touching. This happens…
user13070
  • 511
  • 1
  • 5
  • 14
0
votes
2 answers

ScrollViewer not showing up properly?

Does anyone know what's wrong with my code:
Joseph jun. Melettukunnel
  • 6,267
  • 20
  • 69
  • 90
0
votes
1 answer

ScrollViewer ContentScroll is missing

my ScrollViewer doesn't work. scrolling isn't possible. i have tried different possibilities with setting of…
Jeffrey
  • 1,392
  • 4
  • 11
  • 18
0
votes
1 answer

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 = new TextBlock(); tb.Text = "String #" + i.ToString(); …
user1523271
  • 1,005
  • 2
  • 13
  • 27
0
votes
1 answer

Any idea about WPF ScrollViewer to make it smooth scroolling like Android?

I have trying a simple ScrollViewer in xaml like below:
jimi
  • 5
  • 6
0
votes
1 answer

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
Senkwe
  • 2,256
  • 3
  • 24
  • 33
0
votes
2 answers

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 currently is. Take this XAML for example (you can put…
Peter
  • 13,733
  • 11
  • 75
  • 122
0
votes
1 answer

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
1 answer

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 the add and delete code using the sample above. But…
milo2011
  • 339
  • 1
  • 9
  • 25
0
votes
1 answer

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 DataGrid in every TabItem has an empty column in…
user1108069
  • 503
  • 2
  • 5
  • 16
0
votes
1 answer

TabControl width increases on adding tabs

My application UI is divided in 2 parts. Left side is Navigation Menu and Right is View Area where the selected Menu content is displayed. Now, one of the menu is reports. I am using Tabcontrol with Header and Content Template. Template has a…
Shakti Prakash Singh
  • 2,414
  • 5
  • 35
  • 59
0
votes
1 answer

Setting the contents of a ScrollViewer to that of another ScrollViewer (using C# on Windows Phone)

I'm stuck with a problem I can't seem to get around... I need to set the contents of a ScrollViewer to that of another (which contains a StackPanel, which contains images and text). I have tried the following approaches and I keep getting an error…