Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/edwinvandriel/uwp-listviewextensions

UWP ListViewBase Extensions library
https://github.com/edwinvandriel/uwp-listviewextensions

csharp extension listview toolkit uwp xaml

Last synced: 5 days ago
JSON representation

UWP ListViewBase Extensions library

Awesome Lists containing this project

README

        

### UWP ListViewExtensions

This is a library with UWP ListViewBase extensions.

- Alternate row color (AlternateRowColor)
- Alternate row itemtemplate (AlternateRowTemplate)

![Sample](ListViewExtensions/EvD.ListViewExtensions.SampleApp/Assets/Screenshots/Screen1.PNG)

Just include a namespace on your page like

xmlns:extensions="using:EvD.ListViewExtensions"

And then extend your ListView with the alternate row color attached property

<ListView extensions:AlternateRowColor.Color="LightGray"></ListView>

Or extend it with a custom alternate itemtemplate attached property

<ListView extensions:AlternateRowTemplate.ItemTemplate="{StaticResource AlternateTemplate}"></ListView>

Or combine both. Super simple.

Download also available on [nuget](https://www.nuget.org/packages/EvD.ListViewExtensions).