Used to configure the
DataNavigationControl to display buttons that correspond to alphabetical keys (A through Z).
The following XAML causes the DataNavigationControl to display buttons corresponding to the letters A through Z. Clicking on a button causes the listbox to browse to the first group whose first-level
GroupDescription corresponds to that letter.
<sllb:ListBox x:Name="myListBoxControl"
ItemsSource="{Binding Path=Customers}"
ItemTemplate="{StaticResource itemTemplate}">
<sllb:DataNavigationControl.DataNavigationConfiguration>
<sllb:AlphabeticalDataNavigationConfiguration />
</sllb:DataNavigationControl.DataNavigationConfiguration>
<sllb:ListBox.GroupDescriptions>
<PropertyGroupDescription PropertyName="Country"/>
<PropertyGroupDescription PropertyName="City"/>
</sllb:ListBox.GroupDescriptions>
</sllb:ListBox>
Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2