Tagged Questions
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
1answer
413 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 ...
0
votes
0answers
156 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 ...
3
votes
1answer
1k 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"
...
0
votes
1answer
2k views
WrapPanel within ItemsControl added ScrollViewer causes loosing wrapping behavior
I'm working with a WrapPanel within an ItemsPanel within an ItemsControl. This works perfect as long as the items added fit the size. To meet the situations where the content exceeds the size, I added ...
2
votes
1answer
1k views
Windows Phone 7 WrapPanel within a ScrollViewer
I've got a page with the following XAML in my application.
<ScrollViewer VerticalScrollBarVisibility="Auto">
<toolkit:WrapPanel x:Name="WrapPanelImages" />
</ScrollViewer>
In ...
0
votes
1answer
3k views
Wrappanel and scrollviewer issue
I need to display Buttons, which user can use to add controls. Buttons are categorized in groups. Here is the XAML I am having -
<ScrollViewer
VerticalScrollBarVisibility="Auto">
...
5
votes
1answer
3k views
WPF WrapPanel / ItemsControl not scrolling
I have a wrap panel displaying items but I cant get a scroll bar to work properly any idea's whats wrong ?
<ScrollViewer>
<ItemsControl Name="itemsControl">
...
1
vote
1answer
8k views
Silverlight ItemsControl vertical scrollbar, using a wrappanel as ControlTemplate
I have a collection of elements, each one with a name and a subcollection of image blobs.
I want to display an Accordion, with each item representing each of the MainElements. inside each element, I ...
1
vote
2answers
315 views
Multiple column scrolling, resizeable panel?
I have this:
Each list is its own WrapPanel and they are all on another WrapPanel which is in a ScrollViewer. If I don't set the height myself for the main WrapPanel it assumes I want the ...
2
votes
1answer
3k views
Silverlight: Cannot manage to get ScrollViewer and WrapPanel to work together
I'm using a WrapPanel to format some text. During runtime I add TextBlocks and StackPanels as Children. Obviously I need a scrollbar depending on the data size. Searching the web I found multiple ...
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.
...