1

我是 wpf 和交互性的新手。我正在尝试基于某些事件触发器执行命令。在下面的代码中,当触发双击事件时,会调用 CanExecute 并返回 false,但仍会调用执行函数。这是 invokecommandaction 的默认行为吗?我认为当可以执行返回false时,将不会调用执行。

<UserControl x:Class="..."
         xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity">
<i:Interaction.Triggers>
    <i:EventTrigger EventName="MouseDoubleClick">
        <i:InvokeCommandAction Command="{Binding Path=DisplayReportCommand}"/>
    </i:EventTrigger>
</i:Interaction.Triggers>
...

4

1 回答 1

1

是的,它将使用 canexecute,如果返回 false,则不会执行命令。我已经发布了一个代码示例。

这是您的 ViewModel 类中的命令

RelayCommand _showMessageCommand;
public ICommand ShowMessageCommand
{
    get
    {
        if (_showMessageCommand == null)
        {
            _showMessageCommand = new RelayCommand(param => this.ShowMessage(), param => this.CanShowMessage);
        }
        return _showMessageCommand;
    }
}

public void ShowMessage()
{
    MessageBox.Show("Nitesh");
}

private bool CanShowMessage
{
    get
    {
        return false;    // Set to true to execute the command
    }
 }

这就是您在 XAML 中使用它的方式

<Button Content="Nitesh">
    <i:Interaction.Triggers>
        <i:EventTrigger EventName="MouseDoubleClick">
            <i:InvokeCommandAction Command="{Binding ShowMessageCommand}" ></i:InvokeCommandAction>
        </i:EventTrigger>
    </i:Interaction.Triggers>
</Button>
于 2013-07-18T03:41:03.387 回答