0
votes
0answers
63 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
2answers
464 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
167 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
1answer
202 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
114 views

Making a custom(/templated) ScrollViewer or ListBox that understands which item to bring to view

I am trying to make a panorama-like control in WPF c# that scrolls to/brings into view only one grid from a horizontal set of grids. I need to expose the command which allows me to scroll ...
0
votes
1answer
139 views

WPF ListBox of RadioButtons inside ScrollViewer - scrolls before selection changed

I have quite annoying problem. I have ListBox in a ScrollViewer. ListBox is filled with RadioButton controls. Following code shows it: <Grid> <Grid.RowDefinitions> ...
1
vote
1answer
213 views

Scroll first/last ListBox item to center of scrollview

Is there any way at all to ensure that if my user selects an item in my ListBox, that the item is ALWAYS scrolled to the center of my ListBox? Obviously I can use the ScrollToVerticalOffset but it the ...
1
vote
1answer
207 views

Changing the title text dynamically in Windows 8

In the app preview for the Bing Weather app in the Windows 8 release preview, the title text changes automatically when the "view" changes (i.e. when scrolling). My app currently has two ListBox ...
2
votes
3answers
309 views

ListBox knows it is in some distant ScrollViewer?

The code below is the complete representation of the problem. Essentially, when I have a ListBox inside a ScrollViewer the ListBox won't show its own scrollbar. Rather, it relies on the scrollbar of ...
0
votes
1answer
897 views

Windows Phone: how to disable touch scrolling in ScrollViewer (Listbox)?

i have a scrollviewer with a listbox inside: i need to disable the vertical scroll by touch, how can i? In other words, the user can't scroll with the touch (i have put buttons, but this is another ...
0
votes
0answers
380 views

WPF ListBox inside ScrollViewer - select last item

I have ListBox like this below: <ListBox Name="lbActiveProjects" Background="Transparent" Style="{StaticResource RadioButtonList}" SelectedValuePath="Value.IsMainProject" ...
0
votes
1answer
299 views

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 ...
0
votes
1answer
619 views

Controlling ListBox scrolling behaviour

Chapter 10 of "WPF 4 Unleashed" by Adam Nathan includes this XAML example of controlling ListBox scrolling behaviour: <Window x:Class="NathanControllingScrollingBehavior.MainWindow" ...
3
votes
3answers
2k views

Accessing the ScrollViewer of a ListBox from C#

I'd like to change the properties of a ScrollViewer of a ListBox from C#. I found this question here on Stackoverflow. I took the accepted answer's advice and exposed the ScrollViewer as a property ...
1
vote
2answers
895 views

How to always show scroll bar in a listbox in wp7

How to always show scroll bar in a listbox. If I delete Notscrolling visualstate of Scrollviewer. It always shows scrollbar only after scroll down happend. I want to show scrollbar when page loaded it ...
1
vote
1answer
958 views

Animated Listbox scrolling

I have a vertical WPF listbox, bound to a collection, with a custom ItemTemplate. I've noticed a few things: Unlike a standalone scrollviewer, the listbox does not scroll continuously, but jumps in ...
0
votes
0answers
158 views

How to scroll the listbox on button when used wrap panel

How to scroll the listbox on button when used wrap panel. I have tried the scrollIntoView it is not working. Also i have tried with the Scrollviewer.ScrollToHorizontalOffset(300). But is not working ...
1
vote
2answers
766 views

Listview inside of scrollviewer prevents scrollviewer scroll

I have a scrollviewer with a couple listboxes in it. The problem is if a user uses the middle mouse roller to scroll the scrollviewer while their mouse is over a listview. The listview scrolls its ...
0
votes
2answers
448 views

How to make the ListBox scrollbar appear when it's in a ScrollViewer?

I have a ScrollViewer, which contains a DockPanel, which contains a ListBox as its filled element. The problem I'm facing is that, when the ListBox contains many items, and the height of the window ...
4
votes
5answers
935 views

Silverlight RichTextBox/ListBox/ScrollViewer strange behaviour

I have a user control with the following XAML: <ScrollViewer> <ListBox ItemsSource="{Binding Items}"> <ListBox.ItemTemplate> <DataTemplate> ...
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); ...
0
votes
5answers
1k views

ListBox is contained in a ScrollViewer

I would like the ScrollViewer of the page to be displayed when all the information cannot be shown on the screen (i.e. resize the window) However, the ListBox here doesn't get a scroll and it gets ...
0
votes
2answers
2k views

horizontal listbox that could be infinite circle scrolling

I would like to make a horizontal listbox that could be infinite scrolling (looping listbox/scrollviewer, or circular listbox/scrollviewer), means that when I scroll to its end, its would scroll over ...
0
votes
1answer
257 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 ...
5
votes
3answers
6k 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 ...
1
vote
1answer
1k views

Listbox inside ScrollViewer height calculations

When I place a ListBox inside a ScrollViewer, if I do not define a Height attribute for the ListBox, it doesn't scroll (aside from bouncing up and down a bit), so elements off the screen are ...
0
votes
2answers
1k views

Pinch to Zoom on ListBox on windows phone 7

I am trying to add pinch to zoom feature to a data bound ListBox. What is the most efficient way to do this? I have placed the ListBox inside a Grid control and made it scrollable. This is my current ...
0
votes
1answer
797 views

How do I replace a ScrollViewer with a ContentPresenter on a ListBox?

According to a post at the very end of this thread you can replace the ScrollViewer of a ListBox with a ContentPresenter to disable scrolling in a nested scenario. However, I don't know how to ...
2
votes
2answers
823 views

ListBox or other Items Control in a ScrollViewer

We have a form that contains various elements and a datagrid. When the list box is contained in a scroll viewer, all is well when we increase the size of the window. When the window size is decreased ...
1
vote
2answers
419 views

How to get Listbox item from the listbox wpf

I want to scroll the listbox which is placed inside the srollviewer according to its selection. ListBoxItem item = ...
1
vote
1answer
444 views

Listbox and scrollviewer wpf

I want to display the list of songs in the listbox. Example. Song count 20. initially the listbox has to show 10 like song1 < song2 > song3 ... If we click the right arrow it has to ...
0
votes
1answer
2k views

How can make ScrollViewer scroll when mouse is over *any* content

The reason I stress 'any' is because CanContentScroll is not fully working in my ScollViewer. Let me explain the scenario: I have a ScrollViewer that has three Labels followed by a ListBox each. The ...
0
votes
2answers
1k views

ScrollViewer in a ListBox not working. WPF

I have the following defined in my control: <Style TargetType="primitives:CalendarDayButton" x:Key="EventCalendarDayButton"> <Setter Property="Background" Value="#FFBADDE9"/> ...
6
votes
5answers
5k views

WPF scrollview scrolled to the bottom default

I have a scrollview containing a ListBox. I would like the scrollview to scroll all the way to the bottom by default when the view has been loaded! This because the most recent element is always the ...
2
votes
2answers
1k views

WPF Listbox wont scroll Vertical

Within a Groupbox I have a Listbox, ListboxItems are defined in the XAML as well. The Listbox is defined: <ListBox Name="lvAvoidCountry" Margin="5,5,5,5" Background="Transparent" ...
18
votes
2answers
6k 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 ...
1
vote
1answer
768 views

How to stop a WPF Listbox from scrolling

I want my ListBox to never scroll. It's easy to just hide/disable the scrollbars, but mousewheel/arrow keys still cause a scroll when the items in the ListBox exceed its boundaries. There HAS to be ...
4
votes
2answers
2k 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. ...
4
votes
2answers
3k views

After rebinding Silverlight Listbox control how do you get it listbox to scroll to back to the top?

I have a silverlight listbox that is being used as a search result box. I'm using dynamic searching (keyups in the search box cause the events to fire to filter this list box's contents). The issue ...
0
votes
1answer
315 views

Listbox Scrollbar does not resize properly when delete item from the bottom of list

I have a standard listbox. I can add items using a input textbox. I can delete them using delete key or context menu. When i delete the items from top of the list, scrollbar resizes properly. If i ...
1
vote
2answers
2k views

How to disable ScrollViewer in ListBox?

I have a ListBox. It has internal ScrollViewer, so I can scroll ListBox content with mouse wheel. It works fine until I set item template that contains another ListBox (in fact, I have 4 nested ...
2
votes
1answer
4k views

Putting ListBox in ScrollViewer: mouse wheel does not work

My mouse wheel does not work when putting a ListBox in a ScrollViewer. Does the ListBox somehow "steal" this event? <ScrollViewer VerticalScrollBarVisibility="Auto" Style="{StaticResource ...
1
vote
3answers
5k views

Wrapping images in ListBox using WrapPanel and ScrollViewer, Selected Items disappear!

I'm using a ListBox to display a horizontal display of 800 thumbnails, but only 6 at a time (depending on screen resolution), I want to move through the images using buttons either side of the list. ...
6
votes
1answer
11k 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 ...
18
votes
4answers
26k 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 ...
9
votes
4answers
8k 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.