我有一个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 的资源中声明它时它不能设置事件处理程序的委托。