Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/edwinvandriel/uwp-listviewextensions
- Owner: edwinvandriel
- Created: 2017-01-30T19:59:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-03T09:27:06.000Z (about 8 years ago)
- Last Synced: 2024-12-03T20:11:45.068Z (2 months ago)
- Topics: csharp, extension, listview, toolkit, uwp, xaml
- Language: C#
- Homepage:
- Size: 136 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).