All Questions
Tagged with wrappanel windows-phone-7
21 questions
0
votes
3
answers
459
views
Windows Phone 8 more Items in column - row as template
I'm new in Windows Phone 8 development and I want to create a page with any number of items sorted in first row-four columns and second row- one column as this great image shows.
Thanks!!
1
vote
2
answers
2k
views
wrappanel listbox item select event
I have used wrappanel and listbox to display my items on wp7. but item click event does not working. my code is as follow
<Grid x:Name="ContentPanel" Grid.Row="1" Height="Auto">
<...
0
votes
1
answer
159
views
Keeping one Tile Constant in a Wrap Panel
Is their anyway of keeping one tile at a constant position in a wrap panel and having all the added items (currently implementing through a listbox, so listboxitems) wrap around this item.
For ...
0
votes
1
answer
91
views
Check if the WrapPanel is overflowed?
I'm currently doing some pagination things. I would like to know if I can check whether the TextBlock inside of the wrappanel is overflowed or not? By the way I would like to ask if you know something ...
0
votes
1
answer
414
views
Wrappanel in ItemsControl.ItemsPanel throws XamlParseException
In my wp8 app I show some content (images for example). I use LongListSelector, and in each LLS's item have ItemsControl with collection of images. I want to show two images in one line, so I use a ...
1
vote
2
answers
194
views
How do I animate adding an item to a Silverlight Toolkit WrapPanel
I'm building eyecandy to a WP7 application.
I have a WrapPanel and I'm adding items to it in code.
Instead of just popping up, I'd like these items to slide in to the WrapPanel one by one.
How ...
12
votes
2
answers
3k
views
How to wrap ItemsPanel in LongListSelector?
I am using listbox and wrappanel for displaying data.
For example:
<ListBox ItemTemplate="{StaticResource ItemTemplateListBoxAnimation}">
<ListBox.ItemsPanel>
<...
1
vote
0
answers
65
views
WP7 toolkit wrappanel virtualization [duplicate]
Possible Duplicate:
WP7 Virtualizing WrapPanel
I am using wrappanel control in Silverlight Toolkit for Windows Phone to display 100+ images. But the wrappanel does not support UI virtualization (...
4
votes
1
answer
555
views
Wrap-Panel reording items using drag and drops
I need to change position of items in WrapPanel (or stack-panel with horizontal orientation) using dragging when user touches with it.
I tried MouseDragElementBehavior, but it changes position for ...
0
votes
2
answers
3k
views
how to change in panorama horizontal width in windows phone 7
I would like to create a page in panorama in WP7, using wrap panel in the content.
I would like to create something like the People Hub, a few hubtile (i.e. 5) and spend across the width larger than ...
1
vote
1
answer
365
views
Windows Phone 7 Wrappanel visibility
I have a list that displays a bunch of images in gridview style, the following is my code:
<controls:PanoramaItem x:Name="Pano_Photos" Header="photos">
<ListBox x:Name="...
0
votes
1
answer
718
views
Wrap panel in windows-phone 7
I want to use wrap panel in my silverlight phone application.
I downloaded and installed the Silverlight for Windows Phone Toolkit - Aug 2011.msi, but I can't still use wrap panel.
Is there any other ...
3
votes
1
answer
743
views
Use Wrappanel in LongListSelector
I am currently using the LongListSelector from the latest release of the Silverlight Toolkit. What I now want to do, is to arrange several items in one line, just like in the Wrappanel, but I don't ...
16
votes
3
answers
18k
views
How to set WrapPanel itemsource to list?
I want to show in WrapPanel a list of images. How can I do that or maybe I shall use other control ?
0
votes
1
answer
2k
views
How to adjust control to fit to the screen inside a listbox?
I am trying to create listbox with images wrapped in a wrappanel. I want to show the items fit to screen. like if the items width is less than the available screen width then the items should be ...
1
vote
2
answers
1k
views
Virtualizing WrapPanel for WP7
I need to create a wrap panel with my facebook friends, meaning the itemcount is over 400, and it takes 5-10 seconds for all the items to load.
<ListBox.ItemsPanel>
<...
3
votes
1
answer
634
views
WrapPanel Content Alignment
I have a toolkit:WrapPanel showing in my WP7 app, I have 5 items and the first row only has enough space for 3 items, I would like the wrap panel to place 3 items on the first row, followed by the 2 ...
1
vote
1
answer
846
views
Wrap Panel is not wrapping DataItems
I have WrapPanel where I want the control inside of it to go horizontally and centered, but when I have a listbox or a ItemsControl those elements just go downwards.
<toolkit:WrapPanel>
&...
0
votes
1
answer
4k
views
Wrap Panel in ListBox
I have the following XAML code:
<DataTemplate x:Key="FriendsDataTemplate">
<toolkit:WrapPanel Orientation="Horizontal" ItemWidth="173" ItemHeight="233">
<Grid ...
1
vote
1
answer
299
views
DataList equivelant for WP7?
I'm trying to databind a list of image thumbnails in a grid fashion. In asp.net, I would use something like the DataList and set my repeat columns to 4 or 5. Simple.
I'm going through different ...
2
votes
1
answer
2k
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 ...