MainPage.xaml
<Page
x:Class="UniversalAppTutorials.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UniversalAppTutorials"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<StackPanel
x:Name="stack_panel1"
Margin="50"
Orientation="Vertical"
Background="AliceBlue"
Padding="50"
>
<ListView
x:Name="ListView1"
Height="75"
SelectionChanged="ListView1_SelectionChanged"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.HorizontalScrollMode="Enabled"
ScrollViewer.IsHorizontalRailEnabled="True"
Background="PaleGoldenrod"
>
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListView.ItemsPanel>
</ListView>
</StackPanel>
</Page>
MainPage.xaml.cs
using Windows.UI.Xaml.Controls;
using Windows.UI.Popups;
namespace UniversalAppTutorials
{
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
// Initialize a new string array
string[] colors = {
"Red",
"Green",
"Yellow",
"Blue",
"Black",
"White",
"Brown",
"Orange",
"Gray",
"Cornsilk",
"Cyan",
"Bisque",
"Beige",
"Coral"
};
// Data bind the list view with array items
ListView1.ItemsSource = colors;
}
private void ListView1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
// Get the instance of ListView
ListView listView = sender as ListView;
// Get the list view selected item text
string selectedText = ListView1.SelectedItem.ToString();
// Initialize a new message dialog
MessageDialog dialog = new MessageDialog("Selected : " + selectedText);
// Finally, display the selected item text on dialog
dialog.ShowAsync();
}
}
}



- UWP - ListView item style example
- UWP - How to change ListView item height
- UWP - How to add item separator to ListView
- UWP - How to use ListView item click event
- UWP - ListView complex ItemsSource example
- UWP - ListView Array ItemsSource example
- UWP - How to use ListView
- UWP - How to use RadioButton
- UWP - ToggleSwitch example
- UWP - Hyperlink text element example
- UWP - Slider example
- UWP - Create Button programmatically
- UWP - RepeatButton example
- UWP - CheckBox group example
- UWP - Button click event