This is a library with UWP UI extensions for Windows 10 Anniversary Edition (Build 14393 and higher) with Visual Studio 2017.
Start using the library with including the namespace on your page like
xmlns:extend="using:EvD.Uwp.UI.Extensions"
Extend with a controltemplate when your bound items are count zero
<ListView
extend:ItemsControlExtensions.EmptyDataControlTemplate="{StaticResource EmptyTemplate}">
</ListView>
Extend with an alternate row color brush
<ListView
extend:ListViewBaseExtensions.AlternateRowColor="LightGray">
</ListView>
Extend with a custom alternate itemtemplate
<ListView
extend:ListViewBaseExtensions.AlternateRowItemTemplate="{StaticResource AlternateTemplate}">
</ListView>
Extend a UIElement with the accesskey hint. When you've set the AccessKey on a control you get a hint when pressing the ALT key. For more information on the AccessHint property you can go to Microsoft docs. Most of the sample code for the hint is used in this extension.
<Button
AccessKey="AR"
extend:UIElementExtensions.ShowAccessKeyHint="True">
</Button>