void ChooseExceptionsClick(object sender, RoutedEventArgs e)
		{
			var dialog = new ChooseExceptionsDialog(exceptionFilterList);
			dialog.Owner = Window.GetWindow(this);
			if (dialog.ShowDialog() == true) {
				exceptionFilterList = dialog.ExceptionFilterList;
			}
		}
        void ChooseExceptionsClick(object sender, RoutedEventArgs e)
        {
            var dialog = new ChooseExceptionsDialog(exceptionFilterList);

            dialog.Owner = Window.GetWindow(this);
            if (dialog.ShowDialog() == true)
            {
                exceptionFilterList = dialog.ExceptionFilterList;
            }
        }