WPF/Silverlight:如何在尚未拥有BehaviorCollection 的控件上创建BehaviorCollection?
如何在尚未拥有BehaviorCollection 的控件上创建BehaviorCollection?
How do I create a BehaviorCollection on a control that doesn't already have one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此 API 不是那么明显,要在代码中使用以下内容:
其中显然
controlToAddBehaviorTo
是“还没有一个控件”。对于 xaml 中的同一件事:
导入交互命名空间
xmlns:i="clr-namespace:System.Windows.Interactivity; assembly=System.Windows.Interactivity"
The API for this isn't so obvious, to do in code use the following:
where obviously
controlToAddBehaviorTo
is the "control that doesn't already have one".For the same thing in xaml:
with an import for the interactivity namespace
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"