Tagged Questions
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.
18
votes
2answers
9k views
WPF: ItemsControl with scrollbar (ScrollViewer)
I followed this small "tutorial" on how to add a scrollbar to an ItemsControl, and it works in Designer view, but not when I compile and execute the program (only the first few items show up, and no ...
10
votes
1answer
3k views
How to control the scroll position of a ListBox in a MVVM WPF app
I have got a big ListBox with vertical scrolling enabled, my MVVM has New and Edit ICommands.
I am adding new item to the end of the collection but I want the scrollbar also to auto position to the ...
10
votes
3answers
9k views
How can I get ScrollViewer to work inside a StackPanel?
In the following WPF XAML the ScrollViewer does not work (it displays a scroll bar but you cannot scroll and the contents go off the window to the bottom).
I can change the outer StackPanel to a Grid ...
9
votes
5answers
15k views
WPF: How to make canvas auto-resize?
I would like my canvas to automatically resize to the size of its items, so that the ScrollViewer scroll bars have the correct range. Can this be done in XAML?
<ScrollViewer ...
8
votes
2answers
3k views
C# WPF - ScrollViewer + TextBlock troubles
I have a TextBlock within a ScrollViewer that aligns with stretch to its window. I need the TextBlock to behave as the following:
Resizes with window, no scrollbars
When resized below a certain ...
7
votes
1answer
3k views
ItemsControl, VirtualizingStackPanel and ScrollViewer height
I want to display a important list of items using an ItemsControl.
The reason why I'm using an ItemsControl is that the DataTemplate is much more complex in the application I'm working on: The sample ...
7
votes
3answers
4k views
ScrollViewer not scrolling in WPF
I am using a scrollviewer control around my stack panel which contains an ItemsControl. When there are many items in the ItemsControl it is suppose to scroll but for some reason it just cuts of the ...
7
votes
3answers
5k views
Setting the scrollbar position of a ListBox
Can I programatically set the position of a WPF ListBox's scrollbar? By default, I want it to go in the center.
6
votes
1answer
160 views
Stop WPF ScrollViewer automatically scrolling to perceived content
The Application
I am building an application which includes a range selector. This consists of two custom drawn Slider controls contained within one UserControl derived class. The range selector ...
6
votes
1answer
490 views
WPF - centering content in a scrollviewer?
I have a scrollviewer that contains a stackpanel of textblock items (actually, these are probably tabitems, I'm using a stackpanel inside a scrollviewer to override the default tabpanel in a ...
6
votes
5answers
15k views
How can I make the Silverlight ScrollViewer scroll to show a child control with focus?
I have a ScrollViewer which contains a Grid with multiple controls in it. The user can tab through the controls, but eventually they tab to a control that isn't in view - so they have to manully ...
5
votes
2answers
549 views
How can I make WPF ScrollViewer middle-click-scroll?
Clicking the middle mouse button (aka: mouse wheel) and then moving the mouse down slightly lets users scroll in IE, and most Windows apps. This behavior appears to be missing in WPF controls by ...
5
votes
1answer
2k views
WPF: ScrollViewer in grid
I have a grid:
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
The second row is with scrollviewer:
...
5
votes
1answer
3k views
XAML: make a ScrollViewer show scrollbars when the ScaleTransform of a child object gets big
I am making a sort of "print preview" control for some documents in my Silverlight 3 application. I have a Canvas (for showing the document) inside of a ScrollViewer, and I have zoom in / zoom out ...
5
votes
3answers
2k views
Silverlight 3 missing ScrollViewer.ScrollChanged event workaround?
I want to be notified of changes to the VerticalOffset of the vertical scrollbar of a ScrollViewer. In WPF there is a ScrollViewer.ScrollChanged event, but in Silverlight 3 this is missing. Does ...
5
votes
2answers
8k views
WPF - Animate ListBox.ScrollViewer.HorizontalOffset?
I have a collection of Visuals in a ListBox. I need to find the XPosition of an element inside it and then animate the HorizontalOffset of the ListBox's ScrollViewer. Essentially I want to created an ...
4
votes
4answers
341 views
Silverlight RichTextBox/ListBox/ScrollViewer strange behaviour
I have a user control with the following XAML:
<ScrollViewer>
<ListBox ItemsSource="{Binding Items}">
<ListBox.ItemTemplate>
<DataTemplate>
...
4
votes
1answer
530 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
...
4
votes
2answers
1k views
Silverlight - DataGrid in Scrollviewer, Column.Width=“*” makes datagrid take several screen-widths
When I have the following setup, the last column having a width of * causes the datagrid to create huge horizontal scrollbars (extends grid to several widths of the screen). I'm not really sure why ...
4
votes
2answers
1k views
Scroll AND Stretch the content of an Expander
This is what I want:
1.) When I click my Expander button and it expands it should stretch down to the end of the Grid
see sample image =>
2.) When I write more Text than space is available in the ...
4
votes
1answer
306 views
WPF ListView Always show complete items
I've got an app with multiple ListView controls where there's a requirement that the item's in the ListView must be fully visible. There should never be partial ListViewItem's showing in the list. If ...
4
votes
2answers
273 views
Help needed on ScrollViewer styles
Can any body please provide me, how can we made custom template for the ScrollViewer.
Pointers to any simple tutorials will be greatly appreciated.
Thanks,
-Narendra
4
votes
2answers
826 views
WPF detect scrolling parent Control
Imagine the situation you open a WPF Popup(e.g. through ButtonClick).
You have a ListBox directly in the Popup with some items, so you have to be able to scroll.
Imagine that this is your Custom ...
4
votes
1answer
710 views
How to put image “placemarkers” inside a scrollbar in WPF?
I have a long Scroll Viewer and I want to mark important spots with small images on the scroll bar. If the the image is clicked the scroll bar will jump to the corresponding content.
I've seen this ...
4
votes
1answer
1k views
Triggering on a ScrollViewer's scroll bar visibility (WPF)
Is it possible to create a Trigger that is triggered based on a ScrollViewer's scroll bar visibility? I have a ScrollViewer with its VerticalScrollBarVisibility set to Auto and I want to change some ...
4
votes
1answer
2k views
How to increase scrollbar width in WPF ScrollViewer?
I am wokring on a touch screen on a small device and the custom width of the scroll-bar is no good as one of my requirements is that everything needs to be doable by finger gestures.
How can I set ...
4
votes
3answers
10k views
How can I get a vertical scrollbar in my ListBox?
In the example below I have a ListBox with dozens of font names in it.
I would have thought it would automatically have a vertical scrollbar on it so that you can select ANY font, not just the first ...
4
votes
3answers
6k views
Silverlight Scrollviewer With Only Buttons
I am using a ScrollViewer as part of my Silverlight application. It has a horizontal orientation, and I would like it to appear such that only the scroll buttons appear, but not the scroll bar ...
3
votes
2answers
176 views
Need to create a context menu having header and scroll bar support
I need a global context menu style/template having a header and then verious menu items; as the number of menu items in my context menu can be large it needs to support the scrolling.
The problem ...
3
votes
1answer
356 views
How to make WPF DataGrid VerticalScrollBar Always Visible?
Anyone knows how to make the WPF DataGrid VerticalScrollBar always visible, even if there is no data to display without putting DataGrid object instid a ScrollViewer?
3
votes
3answers
1k views
ScrollViewer's Viewport Height VS Actual Height
Both are quite general terms but i'm curious to know when these height will be different apart from the case we're using Virtualization ???
One more question:
I read on MSDN :
If CanContentScroll is ...
3
votes
3answers
208 views
I want to make array of checkbox in scrollviewer control in WPF
I have a list of strings and I want to convert it to checkboxes control in scrollviewer control how ? any ideas ? list consist of courses and I want to make it as checkboxes so student can choose some ...
3
votes
1answer
266 views
WPF - Scroll without Focus
i want to scroll a ScrollViewer without the application has the focus. I find some solutions for Forms but i get no one running in WPF, because some thing i need are not available.
Maybe someone can ...
3
votes
4answers
3k views
Scrolling a TextBlock
Hey everyone,
I have a TextBlock and a Textbox in the same location. Depending on what mode the user is in, I make one visible and the other collapsed. This is working fine, but how can I make the ...
3
votes
3answers
1k views
WPF ListView ScrollViewer Double-Click Event
Doing the below will reproduce my problem:
New WPF Project
Add ListView
Name the listview: x:Name="lvList"
Add enough ListViewItems to the ListView to fill the list completely so a vertical ...
3
votes
2answers
947 views
Can't fully style a ListBox/Scrollviewer in WPF
I'm using custom Scrollbars we created using standard ControlTemplates, however when I apply them to a ListBox there is a corner in the bottom right which I am unable to find any way to override.
...
3
votes
2answers
1k views
Scrolling to selected Treeviewitem within a scrollview
I have a scrollviewer wrapping a treeview.
I populate the treeview programmatically (it is not bound), and expand the treeview to a predetermined treeviewitem. That all works fine.
My problem ...
3
votes
1answer
1k views
How can I get my ScrollViewer to scroll the view area?
I have a Grid inside a ScrollViewer inside a Border inside a StackPanel inside a Window.
The ScrollViewer puts a scrollbar on the right, but it is not scrollable.
How can I get the ScrollViewer to ...
2
votes
1answer
51 views
How to control the scroll-position of a scrollviewer in windows phone
I am using a scrollviewer to show contents, and added a "DoubleTap" event to the scrollviewer. In the doubleTap event I want to make the scrollviewer automatically scroll up to the top of the ...
2
votes
1answer
60 views
WPF ScrollViewer/Canvas mouse event handler
I've created the following control:
<UserControl x:Class="FooBar.AnnotationControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
2
votes
2answers
199 views
scroll viewer text block scrolling in WP7
I have an text block bound to an scroll viewer to scroll the text. I want the text to scroll automatically with out any user input when some event like button click is fired. I tried using ...
2
votes
1answer
94 views
Slider \ ScrollViewer in a touch interface not working properly
In WPF I've got the following XAML:
<ScrollViewer Canvas.Left="2266" Canvas.Top="428" Height="378" Name="scrollViewer1" Width="728" PanningMode="VerticalOnly" PanningRatio="2">
<Canvas ...
2
votes
2answers
177 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 ...
2
votes
2answers
64 views
Sharing HorizontalOffset between two ScrollViewers created in different DataTemplates
I've got two ItemsControls, which use the same collection as an ItemsSource. ItemTemplates for both ItemsControls are very similar: there is a ScrollViewer inside both DataTemplates.
Question:
If I ...
2
votes
2answers
66 views
How to use the IsEnabled to disable the parts of an Expander, but not the whole thing?
I have an expander with a custom template:
<ControlTemplate TargetType="{x:Type Expander}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" ...
2
votes
3answers
483 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);
...
2
votes
1answer
98 views
When using ScrollViewer as part of template for some control, the left click is handled
Consider first version of code (MainWindow.xaml):
<ScrollViewer>
<local:CustomControl1 Width="1000" Height="1000" Background="Red"/>
</ScrollViewer>
where CustomControl1 ...
2
votes
2answers
648 views
Windows Phone 7 ScrollViewer.HorizontalOffset not updating
I created a quick example that places in image in a ScrollViewer, starts a DispatcherTimer and then prints out the ScrollViewer.HorizontalOffset every 200 ms. From the example I noticed some strange ...
2
votes
1answer
178 views
Making a WrapPanel respect his parent's width
Ok here's my code. Note that the StackPanel is directly in a UserControl.
<StackPanel Orientation="Horizontal">
<ScrollViewer
Width="450"
VerticalScrollBarVisibility="Auto"
...
2
votes
2answers
203 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:
...