标准 DelegateCommand CanExecuteChanged 事件是如何在 Silverlight 中触发的?

发布于 2024-11-15 06:52:09 字数 62 浏览 1 评论 0原文

我想在用户进行一些修改后从 DelegateCommand 重新触发 canExecute 功能。我该怎么做?

I want to re-trigger the canExecute functionality from a DelegateCommand after some modifications have been made by the user. How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤寂小茶 2024-11-22 06:52:09

必须引发接口 ICommand 的 CanExecuteChanged 事件才能重新触发 CanExecute 方法的调用。

在触发事件的 DelegateCommand 中创建一个公共方法“RaiseCanExecuteChanged”。

The event CanExecuteChanged of the interface ICommand must be raised to re-trigger call of the CanExecute method.

Create a public method "RaiseCanExecuteChanged" in the DelegateCommand which fires the event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文