Не могу использовать IsKeyboardFocusWithinChanged в EventTrigger
Мне интересно, если кто-нибудь может объяснить, почему я не могу использовать IsKeyboardFocusWithinChanged
с EventTrigger
:
<StackPanel>
<TextBox >
<i:Interaction.Triggers>
<i:EventTrigger EventName="IsKeyboardFocusWithinChanged">
<i:InvokeCommandAction Command="{Binding Path=SomeCommand}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</TextBox>
<Button Content="Click Me" />
</StackPanel>
public partial class MainWindow : Window
{
public ICommand SomeCommand { get; set; }
public MainWindow()
{
InitializeComponent();
SomeCommand = new SampleCommand();
DataContext = this;
}
}
public class SampleCommand : ICommand
{
public void Execute(object parameter) { MessageBox.Show("Bingo"); }
public bool CanExecute(object parameter) { return true; }
public event EventHandler CanExecuteChanged;
}
Подключение других событий в вышеприведенном коде работает так же, как и ожидалось. IsKeyboardFocusWithinChanged
в коде позади.