1

我有一个ResourceDictionary,其中包含一个DataTemplate. 在这个 DataTemplate 的资源中,我声明了一个CommandBindingCollection. 我的 ResourceDictionary 有一个代码隐藏文件,我在其中声明了 Executed/CanExecute 的处理程序。

我遇到的问题是,当我从 中检索我CommandBindingCollection的时ResourceDictionary,未分配 Executed/CanExecute 处理程序。使用调试器,我可以看到处理程序为空。为什么会这样,我该如何解决?

资源字典 XAML:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:local="Test"
                    x:Class="Test.MyResourceDictionary">

    <DataTemplate x:Key="Template"
                  x:Name="Template">
        <DataTemplate.Resources>
            <CommandBindingCollection x:Key="CommandBindings">
                <CommandBinding Command="local:TestCommands.Test"
                        Executed="testExecuted" 
                        CanExecute="testCanExecute" />
            </CommandBindingCollection>
        </DataTemplate.Resources>

        <!-- More stuff here -->

    </DataTemplate>
<ResourceDictionary/>

ResourceDictionary 代码隐藏:

public partial class MyResourceDictionary: ResourceDictionary
{
    public MyResourceDictionary() 
    { 
        InitializeComponent(); 
    } 

    private void testExecuted(object sender, ExecutedRoutedEventArgs e)
    {

    }

    private void testCanExecute(object sender, CanExecuteRoutedEventArgs e)
    {

    }
}

更新

我将它与DataTemplateSelector用于应用 DataTemplate 的 AvalonDock 一起使用。

这是我加载模板的方式:

public override DataTemplate SelectTemplate(object item, DependencyObject container)
{
    if (item is TestViewModel)
    {
        ResourceDictionary res = Application.LoadComponent(new Uri("/MyResourceDictionary.xaml", UriKind.Relative)) as ResourceDictionary;
        DataTemplate template = res["Template"] as DataTemplate;
        if(template != null)
        {
            CommandBindingCollection commandBindings = 
                template.Resources["CommandBindings"] as CommandBindingCollection;

            if(commandBindings != null)
            {
                foreach(var binding in commandBindings)
                {
                     // add commandbinding to the container control
                     // here, using the debugger i can see that the handlers for the commandbinding
                     // are always null (private variables that I can only see using debugger)
                }
            }
            return template;
        }
    }
    return base.SelectTemplate(item, container);
}

如果我CommandBindingCollection直接将其移入ResourceDictionary并以这种方式访问​​它:

CommandBindingCollection commandBindings = 
            res["CommandBindings"] as CommandBindingCollection;

然后正确设置处理程序。我想知道为什么当我在 DataTemplate 的资源中声明它时它不能设置事件处理程序的委托。

4

1 回答 1

1

我的问题与 .NET 框架中的错误有关,该错误似乎已在 4.5 中修复。

4.0 上有针对该问题的修补程序:http: //support.microsoft.com/kb/2464222

就我而言,应用修补程序解决了这个问题。我的猜测是,在 CommandBindingCollection XAML 解析器的某个地方,异常被静默处理。

于 2012-11-15T18:52:29.337 回答