微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – RelayCommand CanExecute行为

我有以下命令:
<Button x:Name="bOpenConnection" Content="Start Production"
        Grid.Row="0" Grid.Column="0"
        Height="30" Width="120" Margin="10"
        HorizontalAlignment="Left" VerticalAlignment="Top" 
        Command="{Binding Path=StartProductionCommand}"/>
StartProductionCommand = new RelayCommand(OpenConnection,CanStartProduction);

private bool CanStartProduction()
{
   return LogContent != null && !_simulationObject.Connected;
}

仅当我重新调整UI大小并且未动态更新时才会检查CanStartProduction.
知道为什么每次更改值都没有更新?

解决方法

CommandManager无法知道该命令依赖于LogContent和_simulationObject.Connected,因此当这些属性发生更改时,它无法自动重新评估CanExecute.

您可以通过调用CommandManager.InvalidateRequerySuggested显式请求重新评估.请注意,它将为所有命令重新评估CanExecute;如果只想刷新一个,则需要通过调用StartProductionCommand.RaiseCanExecuteChanged在命令本身上引发CanExecuteChanged事件.

原文地址:https://www.jb51.cc/csharp/100848.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐