【发布时间】:2014-08-06 07:27:36
【问题描述】:
我正在使用 mvvm,所以我试图在后面的代码中减少(或可能没有)代码。 我想将 TextBox 上的 KeyDown 事件转换为 Command。我正在使用 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 方法中,我正在获取 Command=null..我不明白为什么会这样? 并且我只想在 Enter 或选项卡中按下键时才在 ExecuteCommand 方法中执行逻辑。 在后面的代码中,我们可以使用 KeyEventArgs 来做到这一点。
KeyEventArgs e;
if (e.Key == Key.Enter || e.Key == Key.Tab)
//logic
如何在 ExecuteCommand 方法中实现这一点???
【问题讨论】:
-
愚蠢的问题,但是DataContext中肯定存在HighValueChangedCmd?没有错别字?
-
是的,它在数据上下文中。你有什么解决办法请贴
-
复制并粘贴,工作正常。命令不会为空,并且符合预期。能否请您出示您的命令代码
-
我认为问题不在 .cs 文件中。它在你的绑定中!! Den 在 Binding of Xaml 中给出的任何内容都尝试正确。