Sorting Listbox in Silverlight (Sketchflow)
Posted
by gnitez
on Stack Overflow
See other posts from Stack Overflow
or by gnitez
Published on 2010-03-23T06:03:14Z
Indexed on
2010/03/23
12:23 UTC
Read the original article
Hit count: 369
I have a Listbox with multiple columns and bound to a data source (XML) as shown below.
<ListBox x:Name="lstBox1" Background="#FFC5EFFD" Margin="7,50,10,15" ItemTemplate="{StaticResource ItemsPanelTemplate1}" ItemsSource="{Binding BPICollection}" BorderThickness="0"/>
I'm trying to figure out how to sort a particular column in the listbox.
© Stack Overflow or respective owner