条件键绑定

发布于 2024-12-06 15:39:02 字数 300 浏览 0 评论 0原文


我在想是否有人可以向我解释如何进行条件键绑定(使用 MVVM 模式),目前我已经做到了,

 <Window.InputBindings>
    <KeyBinding Command="{Binding Path=CMD_Login}" Gesture="Enter" />
</Window.InputBindings>

但我希望此键绑定仅在用户登录时才处于活动状态。他们登录窗口设置为可见/折叠,具体取决于用户是否登录,因此是否可以基于该条件进行徘徊?
谢谢

I was wandering if someone could explain to me how I could do a conditional key binding (using an MVVM pattern), at the moment I have

 <Window.InputBindings>
    <KeyBinding Command="{Binding Path=CMD_Login}" Gesture="Enter" />
</Window.InputBindings>

but I would like this key-binding to only be active if the user is logging in. They login window is set to visible/collapse depending if the user is logging in or not, so was wandering if the conditional can possibly be based on that?
Thank You

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

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

发布评论

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

评论(1

北城孤痞 2024-12-13 15:39:02

如果您有一个命令,CanExecute 部分不应该通过不总是返回 true 来处理该命令吗?

If you have a command, shouldn't the CanExecute part handle that by not always returning true?

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