WPF C# Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ControlDemos" Height="300" Width="300" >
    
                     VerticalAlignment="Stretch" 
               HorizontalAlignment="Stretch" 
               Grid.Column="0" Grid.ColumnSpan="1" 
               Grid.Row="0" Grid.RowSpan="1" 
               Name="listBox1" BorderBrush="Blue"
               SelectionMode="Single"
               SelectionChanged="listBox1_SelectionChanged">
        Item 1
        Item 2
        Item 3
        Item 4
        Item 5
        Item 6
        Item 7
        Item 8
        
      
    

//File:Window.xaml.cs
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace ControlDemos
{
    public partial class listbox : Window
    {
        public listbox()
        {
            InitializeComponent();
        }
        public void listBox1_SelectionChanged(object sender, SelectionChangedEventArgs args)
        {
            int nCount = listBox1.SelectedItems.Count;
            for (int lp = 0; lp < nCount; lp++)
                Console.WriteLine(listBox1.SelectedItems[lp].ToString());
        }
    }
}