WPF C# Tutorial

  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="WpfApplication1.SecondaryUiThreadWindow"
  Height="200" Width="400" Closed="SecondaryUiThreadWindow_Closed">
  Raise an Exception on the Secondary UI Thread

//File:Window.xaml.cs
using System; 
using System.Threading;
using System.Windows; 
using System.Windows.Threading;
namespace WpfApplication1
{
    public partial class SecondaryUiThreadWindow : Window
    {
        public SecondaryUiThreadWindow()
        {
            InitializeComponent();
            this.Title = Thread.CurrentThread.ManagedThreadId+"";
        }
        void r(object sender, RoutedEventArgs e)
        {
            throw new Exception(Dispatcher.CurrentDispatcher.Thread.ManagedThreadId+"");
        }
        void SecondaryUiThreadWindow_Closed(object sender, EventArgs e)
        {
            Dispatcher.CurrentDispatcher.InvokeShutdown();
        }
    }
}