The itemscollection tag has no wiki summary.
4
votes
2answers
184 views
VB.NET to C# conversion with the TreeView in WPF
I'm working with a TreeView in a VB.NET to C# conversion project. I have this VB.NET WinForms code:
Dim Arguments1 As String = path & "\" & fs & " ls " & TreeView1.Nodes(ccc).Name
...
1
vote
1answer
306 views
how come in VB.NET a listcontrol has no Items collection but in ASP.NET it does?
I have a simple subroutine that loads a list from a database. I would like to be able to use the same code to load a ListBox and a ComboBox by defining the list type as the common abstract base class ...
1
vote
1answer
540 views
get ItemsControl in ItemCollection CollectionChanged event
my itemscontrol :
<ItemsControl x:Name="MyItemsControl" Style="{StaticResource ItemsControlStyle}" />
<Style TargetType="{x:Type ItemsControl}" x:Key="ItemsControlStyle">
...
0
votes
1answer
2k views
Stackpanel add item animation
I've been struggling a while with marquee-style image scrolling control.
At a moment, I stuck up with templated ItemsControl:
<Window.Resources>
<DataTemplate x:Key="itemsTemplate">
...
2
votes
1answer
130 views
How do I explicity call ItemsCollection.Filter?
How do I explicityl call something like 'DoFilter' on System.Windows.Controls.ItemCollection?
I set up it's Filter property to a Predicate. I placed a breakpoint in the predicate, it reaches there ...
