をResourceDictionary
含む がありDataTemplate
ます。この DataTemplate の Resources 内で、CommandBindingCollection
. 私の ResourceDictionary には、Executed/CanExecute のハンドラーを宣言する分離コード ファイルがあります。
私が抱えている問題は、CommandBindingCollection
から取得するResourceDictionary
と、Executed/CanExecute ハンドラーが割り当てられないことです。デバッガーを使用すると、ハンドラーが null であることがわかります。それはなぜですか、どうすれば修正できますか?
ResourceDictionary 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)
{
}
}
アップデート
DataTemplate の適用に使用する AvalonDock でこれを使用DataTemplateSelector
しています。
テンプレートをロードする方法は次のとおりです。
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 のリソース内で宣言するときに、イベント ハンドラーのデリゲートを設定できないのはなぜでしょうか。