WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="ListBox_Index.Window1">
  
    
      
    

    
      
    

    
      
        
          
            
              
            
          

        
      
      
        
          
            
                                        VerticalAlignment="Center"
                          HorizontalAlignment="Center"/>
            

          

        
      
      
    

    
      Item 1
      
      Item 2
      
      Item 3
      
      Item 4
      
      Item 5
      
      Item 6
      
      Item 7
      
      Item 8
      
      Item 9
      
      Item 10
    
    
  


//File:Window.xaml.vb
Imports System
Imports System.ComponentModel
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Documents
Imports System.Windows.Navigation
Imports System.Windows.Shapes
Imports System.Windows.Data
Namespace ListBox_Index
  Public Partial Class Window1
    Inherits Window
    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub PrintText(sender As Object, args As SelectionChangedEventArgs)
      Dim lbi As ListBoxItem = TryCast(TryCast(sender, ListBox).SelectedItem, ListBoxItem)
      If lbi Is Nothing Then
        Return
      End If
      label1.Content = "You chose " & lbi.Content.ToString() & "."
    End Sub
  End Class
End Namespace