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="OrangeRed"
Padding="50"
>
</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 = {
"Crimson",
"Green",
"Blue",
"Yellow",
"Black",
"Olive",
"Magenta"
};
// Initalize a new ListView instance
ListView listView = new ListView();
// Data bind the list view with array items
listView.ItemsSource = colors;
// Add a selection changed event to list view
listView.SelectionChanged += ListView1_SelectionChanged;
// Add ListView to the StackPanel
stack_panel1.Children.Add(listView);
}
private void ListView1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
// Get the instance of ListView
ListView listView = sender as ListView;
// Get the ListView selected item text
string selectedText = listView.SelectedItem.ToString();
// Initialize a new message dialog
MessageDialog dialog = new MessageDialog("Selected : " + selectedText);
// Finally, display the selected item text on dialog
dialog.ShowAsync();
}
}
}



- UWP - Get ComboBox selected item
- UWP - ListView multi select example
- UWP - ListView ItemTemplate example
- UWP - ListView item style example
- UWP - How to change ListView item height
- UWP - ListView alternate item style
- UWP - ListView complex ItemsSource example
- UWP - ListView Array ItemsSource example
- UWP - How to use ListView
- UWP - How to use RadioButton
- UWP - HyperlinkButton example
- UWP - Hyperlink text element example
- UWP - Remove control programmatically
- UWP - Create Button programmatically
- UWP - Button click event