如何在 wpf 中加载窗口时触发命令
是否可以触发命令来通知窗口已加载。 另外,我没有使用任何 MVVM 框架(某种意义上的框架,Caliburn、Onxy、MVVM Toolkit 等)
Is it possible to fire a command to notify the window is loaded.
Also, I'm not using any MVVM frameworks (Frameworks in the sense, Caliburn, Onxy, MVVM Toolkit etc.,)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为了避免视图上的代码隐藏,请使用交互库(System.Windows.Interactivity dll,您可以从 Microsoft 免费下载 - 也随 Expression Blend 一起提供)。
然后您可以创建一个执行命令的行为。这样,触发器调用行为,行为又调用命令。
CommandAction(也使用 System.Windows.Interactivity)可以如下所示:
To avoid code behind on your View, use the Interactivity library (System.Windows.Interactivity dll which you can download for free from Microsoft - also comes with Expression Blend).
Then you can create a behavior that executes a command. This way the Trigger calls the Behavior which calls the Command.
CommandAction (also uses System.Windows.Interactivity) can look like:
和 xaml
and xaml
AttachedCommandBehavior V2 aka ACB<提出了一种更通用的使用行为的方法< /a> 它甚至支持多个事件到命令的绑定,
这是一个非常基本的使用示例:
A more generic way using behaviors is proposed at AttachedCommandBehavior V2 aka ACB and it even supports multiple event-to-command bindings,
Here is a very basic example of use:
现在这更容易做到。只需包含以下命名空间:
并像这样利用它:
This is much easier to do now. Simply include the following namespace:
And leverage it like this: