WPF DataTemplate不会抛出异常

时间:2010-03-01 15:56:13

标签: wpf exception datatemplate

在设计新的WPF应用程序时,我注意到在使用DataTemplates的控件的数据绑定期间没有抛出异常。为了测试,我用尽可能少的逻辑编写了以下简单的用户控件。我正在使用在WIN7上运行的.NET 3.5 SP1,VS2008 SP1。

设置DataContext时,会调用TestMethod并在代码隐藏中抛出异常,但应用程序不会中断。

有人会介意在创建DataTemplate时解释发生了什么吗?具体来说,我对异常的去向感兴趣。

以下是XAML代码:

<UserControl x:Class="WPF2008.DataTemplateQuestion"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="300" Width="300">
    <UserControl.Resources>
        <DataTemplate x:Key="TESTKey">
            <Border BorderBrush="Black" BorderThickness="10">
                <Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition></RowDefinition>
                        <RowDefinition></RowDefinition>
                        <RowDefinition></RowDefinition>
                        <RowDefinition></RowDefinition>
                    </Grid.RowDefinitions>
                    <TextBox Grid.Row="0" Text="{Binding Path=Txt}" />
                    <TextBox Grid.Row="1" Text="{Binding Path=Lbl}" />
                    <TextBox Grid.Row="2" Text="Am I disabled?" />
                    <TextBox Grid.Row="3" Text="I am disabled." IsEnabled="False" />
                </Grid>
            </Border>
        </DataTemplate>
    </UserControl.Resources>
    <Grid>
        <Label x:Name="lblTest" Content="{Binding Path=TestMethod}" ContentTemplate="{StaticResource TESTKey}" />
    </Grid>
</UserControl>

以下是代码隐藏:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WPF2008
{
    public partial class DataTemplateQuestion : UserControl
    {
        public DataTemplateQuestion()
        {
            try
            {
                InitializeComponent();
                lblTest.DataContext = new TestClass();
            }
            catch (Exception e)
            {
                // ADDING A BREAKPOINT HERE DOESN'T CATCH THE EXCEPTION
                throw e; 
            }
        }
    }

    public class TestClass
    {
        public TestValue TestMethod
        {
            get
            {
                // BREAKPOINT WILL BE HIT WHEN DEBUGGING BUT THE EXCEPTION DISAPPEARS
                throw new Exception("WATCH ME DISAPPEAR");
                return new TestValue { Lbl = "Label", Txt = "Text" };
            }
        }

        public class TestValue
        {
            public string Lbl { get; set; }
            public string Txt { get; set; }
        }
    }
}

2 个答案:

答案 0 :(得分:1)

异常被数据绑定吃掉,导致数据绑定被禁用(我不是100%肯定这是这种情况,我懒得把它放到VS中)。

另一种可能性是,如果您运行的是64位操作系统,则可能会遇到http://support.microsoft.com/kb/976038

答案 1 :(得分:1)

数据绑定抛出的异常会被转换为trace,这些异常会传递给DataBindingSource TraceSource,其源名称为“System.Windows.Data”。

您可以通过创建在跟踪上引发异常的TraceListner子类将其转换为异常,并将其添加到Listeners的{​​{1}}集合中。这可以在代码中或在TraceSourceSource文件中完成。

以下是您在代码中执行此操作的方法:

App.config

有关详细信息,请参阅TraceSource和TraceListener文档和示例。