Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public override void OnApplyTemplate()

public void SelectAll()
{
var currentSelectedItems = new List<object>( this.SelectedItems as IEnumerable<object> );
var currentSelectedItems = new List<object>( this.SelectedItems.Cast<object>() );
var items = this.ItemsCollection.Cast<object>();

// Have a faster selection when there are more than 200 items.
Expand All @@ -195,7 +195,7 @@ public void SelectAll()

public void UnSelectAll()
{
var currentSelectedItems = new List<object>( this.SelectedItems as IEnumerable<object> );
var currentSelectedItems = new List<object>( this.SelectedItems.Cast<object>() );

this.SelectedItems.Clear();

Expand Down