Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <Window x:Class="Test.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:scm="clr-namespace:System.ComponentModel;assembly=WindowsBase"
  5. Title="MainWindow" Height="350" Width="525">
  6. <Window.Resources>
  7. <CollectionViewSource x:Key="Subjects" Source="{Binding Subjects}">
  8. <CollectionViewSource.SortDescriptions>
  9. <scm:SortDescription PropertyName="IncludeKey" />
  10. </CollectionViewSource.SortDescriptions>
  11. </CollectionViewSource>
  12. </Window.Resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement