WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="100" Width="300">
    
        
            Enter Password:
        
                             VerticalAlignment="Center" Width="150" />
                        VerticalAlignment="Center" Click="button1_Click" />
    

//File:Window.xaml.vb
Imports System.Windows
Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub button1_Click(sender As Object, e As RoutedEventArgs)
      MessageBox.Show("Password entered: " + passwordBox.Password, Title)
    End Sub
  End Class
End Namespace