我正在使用mvvm,所以我试图在代码中使用更少(或可能没有)代码。 我想将TextBox上的KeyDown事件转换为Command.I我正在使用Interactivity dll 我的Xaml代码是:
<TextBox Background="White" Name="txtHigh" AcceptsReturn="False" Height="23" Width="98" Margin="3" Grid.Column="3" Text="{Binding SelectionHigh, Mode=TwoWay,Converter={StaticResource formatCell}}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="KeyDown">
<commands:EventToCommand Command="{Binding HighValueChangedCmd}" ></commands:EventToCommand>
</i:EventTrigger>
</i:Interaction.Triggers>
以及转换EventToCommand的代码是:
public class EventToCommand : TriggerAction<FrameworkElement>
{
public ICommand Command
{
get { return (ICommand)GetValue(CommandProperty); }
set { SetValue(CommandProperty, value); }
}
public static readonly DependencyProperty CommandProperty =
DependencyProperty.Register("Command", typeof(ICommand), typeof(EventToCommand), new UIPropertyMetadata(null));
public object CommandParameter
{
get { return (object)GetValue(CommandParameterProperty); }
set { SetValue(CommandParameterProperty, value); }
}
// Using a DependencyProperty as the backing store for CommandParameter. This enables animation, styling, binding, etc...
public static readonly DependencyProperty CommandParameterProperty =
DependencyProperty.Register("CommandParameter", typeof(object), typeof(EventToCommand), new UIPropertyMetadata(null));
protected override void Invoke(object parameter)
{
if (Command == null) return;
if (Command is RoutedCommand)
{
var rc = Command as RoutedCommand;
if (rc.CanExecute(CommandParameter, base.AssociatedObject))
{
rc.Execute(CommandParameter, base.AssociatedObject);
}
}
else
{
if (Command.CanExecute(CommandParameter))
Command.Execute(CommandParameter);
}
}
}
问题出现在我的Invoke方法中我正在获取命令= null ..我不明白为什么会这样? 我只想在输入或制表符中按下键时才能在ExecuteCommand方法中执行逻辑。 在后面的代码中,我们可以通过使用KeyEventArgs来实现。
KeyEventArgs e;
if (e.Key == Key.Enter || e.Key == Key.Tab)
//logic
如何在ExecuteCommand方法中实现这一点???
答案 0 :(得分:2)
也许你应该尝试另一种方法,而不是实现Interaction和EventToCommand。
<TextBox Background="White" Name="txtHigh" AcceptsReturn="False" Height="23" Width="98" Margin="3" Grid.Column="3" Text="{Binding SelectionHigh, Mode=TwoWay,Converter={StaticResource formatCell}}">
<TextBox.InputBindings>
<KeyBinding Key="Enter" Command="{Binding DataContext.HighValueChangedCmd, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Grid}}}" />
<KeyBinding Key="Tab" Command="{Binding DataContext.HighValueChangedCmd, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Grid}}}" />
</TextBox.InputBindings>
</TextBox>