The longlistselector tag has no wiki summary.
14
votes
1answer
250 views
Why am I getting a “well-formedness constraint: unique attribute spec” (0xc00cee3c) error when I descend from LongListSelector
I'm trying to create a descendant class from the silverlight toolkit LongListSelector. Let's call it SimpleLonglistSelector. I started from the "Silverlight for Windows Phone Toolkit Source & ...
8
votes
2answers
109 views
How to group Japanese and other non-Latin names in LongListSelector?
If you put your Windows Phone Emulator or device into Japanese, Korean, or other non latin languages and use the people app, their implementation of the LongListSelector shows Japanese grouping ...
6
votes
2answers
380 views
WP7 Toolkit Update Removed GetItemsInView() from the LongListSelector
With the latest update to the Windows Phone Toolkit they have overhauled the internals of the LongListSelector for the Mango release. One of the changes was removing support for the GetItemsInView() ...
1
vote
2answers
60 views
+50
Event handling with LongListSelector and list item with checkbox
I've a LongListSelector with the following item template:
<DataTemplate x:Key="stopItemTemplate">
<Grid Margin="{StaticResource PhoneTouchTargetOverhang}">
...
1
vote
0answers
28 views
Binding LongListSelector to nested ObserverCollection that's updated asynchronously (using WebClient)
I have a LongListSelector in a Windows Phone Silverlight project, that is bound to a nested ObservableCollection.
In order to get the grouping working and updating automatically, I'm using a custom ...
1
vote
1answer
97 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 ...
1
vote
1answer
72 views
Adding LongListSelector via code not working
I have problems adding a LongListSelector via code in Silverlight. Here is the code:
PivotItem pi = new PivotItem();
pi.Header = r.Recipe_Title;
LongListSelector lls = new LongListSelector();
...
0
votes
1answer
73 views
how to get single string property of LongListSelector selectedItem
i have this LongListSelector bound to observerableCollection
<DataTemplate x:Key="ucItems" >
<Grid Margin="0,0,0,17">
<TextBlock Text="{Binding Title}" ...
0
votes
1answer
226 views
usage of observableCollection in longlistselector
I am using the _wordItems as the longlistselector's itemsource in order to dynamically delete items in longlistSelector
private ObservableCollection<Group<WordItem>> _wordItems = new ...
0
votes
2answers
137 views
longlistselector items not added correctly in groups
I'm trying to build a LongListSelector (toolkit) using an ObservableCollection. I followed this tutorial and everything works fine with sample data.
However, once I try to populate the list with data ...
0
votes
1answer
141 views
LongListSelector - Changing the colour of the current selected item
I have a weird situation.
I have a longlistselector with MVVM databinding. When one item get's selected, I change the colour of the text to the phone accent colour. But the item doesn't change its ...
0
votes
0answers
129 views
LongListSelector shows only 1 group
I have been trying to get the most basic example of grouping to work using LongListSelector, but am only seeing my first group.
Here is my xaml:
<toolkit:LongListSelector ...
0
votes
1answer
50 views
Make Longlistselector autoupdate itself automatically?
I have a class FriendsByFirstLetter derived from ObservableCollection<Group<Friend>>, where Group<T> is derived from ObservableCollection<T> too.
I've set FriendsByFirstLetter ...
0
votes
0answers
157 views
ExpanderView inside longlistselector
I am using the expanderview as the item in long list selector.
The issue which I faced is when we expand two or more items and then scroll till end/begin of list, and then back to that expanded ...
0
votes
0answers
189 views
add longlistselector items without blocking UI
I'm using longlistselector in my WP7 app.
In this app longlistselector can be populated with several items (more than 20) with a bit complex itemtemplate. In that case when the user click on a button ...
0
votes
1answer
86 views
Binding data to Header for LongListSelector (toolkit)
I would like to bind data to the a LongListSelector's header template. Here is the xaml code
<toolkit:LongListSelector x:Name="_List" Background="Transparent" IsFlatList="True" ...
0
votes
1answer
358 views
LongListSelector - How to MVVM bind the SelectedItem
I've managed to get the LongListSelector running through MVVM.
In other words the ItemSource is set through a property on my viewmodel.
But for some weird reason, I can't seem to be able to 'bind' ...
0
votes
2answers
317 views
Windows Phone Mango - ListBox or LongListSelector?
Say if I need to display a list with lots and lots of records, which control is better? Or shall I say, which control has a better scrolling experience?
I've seen a lot of people reporting issues on ...
0
votes
1answer
59 views
How to customize the TextBlock inside the LonglistSelector
<toolkit:LongListSelector>
<toolkit:LongListSelector.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" ...
0
votes
1answer
157 views
LongListSelector Link event
I want to dynamically add more groups to a LongListSelector that is bound to an ObservableCollection.
When the Link event for the last group is called, I load more groups (that contain items).
The ...
0
votes
1answer
91 views
Can't create a custom class ObservableCollection<ObservableCollection<T>>
Why I can't define the LLSGroupsWithItems in the following example (it won't compile):
public class LLSGroupsWithItems<Group<T>> : ObservableCollection<Group<T>>
{
}
...