控件中的 RelayCommand 属性(SL、MVVM)
是否可以创建一个 Silverlight 控件,该控件具有可绑定的 RelayCommand
如果是,请给我举个例子!
is it possible to create a Silverlight control, which one has a bindable RelayCommand<MyType> property?
If yes, please show me an example!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用
RelayCommand
类型的DependencyProperty
。请参阅 http://msdn.microsoft.com/en-us/library/ms752914。有关依赖属性的更多信息。
Yes it is, use a
DependencyProperty
of typeRelayCommand
.See http://msdn.microsoft.com/en-us/library/ms752914.aspx fore more info on dependency properties.