Put this to the resource section:
xmlns:controls="clr-namespace:Microsoft.EnterpriseManagement.UI.WpfControls;assembly=Microsoft.EnterpriseManagement.UI.Controls"
and here is the control definition:
<controls:SortableListView Grid.Row="2" Grid.Column="0" Name="Lesen" MouseDoubleClick="RBV_MouseDoubleClick" Width="Auto" HorizontalAlignment="Stretch" Height="150" ItemsSource="{Binding Path=Lesen, UpdateSourceTrigger=PropertyChanged}"> <ListView.View> <GridView> <controls:SortableGridViewColumn Header="Name" SortPropertyName="DisplayName" DisplayMemberBinding="{Binding DisplayName}" Width="Auto"/> <controls:SortableGridViewColumn Header="Mobil" SortPropertyName="Mobile" DisplayMemberBinding="{Binding Mobile}" Width="Auto"/> <controls:SortableGridViewColumn Header="Telefon" SortPropertyName="BusinessPhone" DisplayMemberBinding="{Binding BusinessPhone}" Width="Auto"/> </GridView> </ListView.View> </controls:SortableListView>
Be aware, if you have a german system, you could get an error
Severity Code Description Project File Line Suppression State
Error The satellite assembly named "Microsoft.EnterpriseManagement.UI.Controls.resources.dll, PublicKeyToken=31bf3856ad364e35" for fallback culture "en" either could not be found or could not be loaded.
This is generally a setup problem. Please consider reinstalling or repairing the application. xxx.Form xxx.Form.Control.xaml 60
but, the code will compile and run in the scsm console.