Tagged Questions
The itemcollection tag has no wiki summary.
7
votes
2answers
2k views
Basic LINQ expression for an ItemCollection
I have an ItemCollection that I'd like to query using LINQ. I tried the following (contrived) example:
var lItem =
from item in lListBox.Items
where String.Compare(item.ToString(), "abc") == ...
3
votes
1answer
122 views
How do I list UIElements in ListView items?
I'm trying to access UIElements in the VisualTree of a ListView but the ItemCollection is empty even though the ListView IsLoaded, IsInitialized and has items in DataContext.
How can I access ...
1
vote
0answers
531 views
Porting from WPF to Silverlight - ItemsControl/ItemCollection
I'm porting an app (which someone else wrote) from WPF to Silverlight. I have a class which inherits from ItemsControl. In part of the code I access the ItemsControl.Items property (of type ...
0
votes
1answer
13 views
VS2008 c# custom combobox doesn't save Item Collection in Form1.designer.cs
I was trying to create a custom combobox that inherited from ComboBox, but I've experienced some difficulties with the DropDownBox style. I've found some code for a custom combo box on ...
0
votes
0answers
55 views
Animate all items of a ItemCollection inside datatemplate
Is there any way to animate all the items of an ItemCollection in WP7, right now the storyboard (which is called from the codebehind) seems to be happening to only the first Item.
Also, which is the ...