Click here to Skip to main content
15,885,278 members
Articles / Desktop Programming / XAML

A WinRT CollectionView class with Filtering and Sorting

Rate me:
Please Sign up or sign in to vote.
5.00/5 (20 votes)
30 Sep 2014CPOL19 min read 115.8K   2.5K   23  
The article presents an ICollectionView class that supports filtering and sorting.

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyTunes", "MyTunes\MyTunes.csproj", "{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|ARM = Debug|ARM
		Debug|x64 = Debug|x64
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|ARM = Release|ARM
		Release|x64 = Release|x64
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|ARM.ActiveCfg = Debug|ARM
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|ARM.Build.0 = Debug|ARM
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|ARM.Deploy.0 = Debug|ARM
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|x64.ActiveCfg = Debug|x64
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|x64.Build.0 = Debug|x64
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|x64.Deploy.0 = Debug|x64
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|x86.ActiveCfg = Debug|x86
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|x86.Build.0 = Debug|x86
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Debug|x86.Deploy.0 = Debug|x86
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|Any CPU.Build.0 = Release|Any CPU
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|Any CPU.Deploy.0 = Release|Any CPU
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|ARM.ActiveCfg = Release|ARM
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|ARM.Build.0 = Release|ARM
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|ARM.Deploy.0 = Release|ARM
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|x64.ActiveCfg = Release|x64
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|x64.Build.0 = Release|x64
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|x64.Deploy.0 = Release|x64
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|x86.ActiveCfg = Release|x86
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|x86.Build.0 = Release|x86
		{4435D7FC-C4B5-4FE6-A682-84E1AF468A43}.Release|x86.Deploy.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Brazil Brazil
Software Architect/Developer with several years experience creating and delivering software.

Full-stack Web development (including React, Firebase, TypeScript, HTML, CSS), Entity Framework, C#, MS SQL Server.

Passionate about new technologies and always keen to learn new things as well as improve on existing skills.

Comments and Discussions