WPF VB.Net

  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Window1" Height="135" Width="300">
  
    
  


//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.ComponentModel
Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub btnThrowHandledException_Click(sender As Object, e As RoutedEventArgs)
      Try
        Throw New NotImplementedException()
      Catch ex As NotImplementedException
        MessageBox.Show(ex.Message)
      End Try
    End Sub
  End Class
End Namespace