WPF 和大视图的 MEF UserControl 部分(在设计模式下)
我希望通过 MEF 创建此用户控件,但也希望在 Blend 中定位用户控件并在其上设置属性...当我对用户控件有“具体”引用时,如何强制组合用户控件所需的导入?
PartsInitializer.Satisfy 发生了什么?
导出用户控件
[Export(typeof(IWOFlyOutFilterMenuView))]
public partial class FlyoutTab_WOsViewFilter : UserControl,IWOFlyOutFilterMenuView,IPartImportsSatisfiedNotification
在包含视图中不导入,因为它是一个具体实例。
谢谢 格雷格
I want this usercontrol to be Created via MEF but also to have the usercontrol positioned and properties set on it in Blend... How can I force the composition of the imports that the usercontrol requires when I have a 'Concrete' reference to the usercontrol ?
What happended to PartsInitializer.Satisfy ?
Export for the UserControl
[Export(typeof(IWOFlyOutFilterMenuView))]
public partial class FlyoutTab_WOsViewFilter : UserControl,IWOFlyOutFilterMenuView,IPartImportsSatisfiedNotification
No Imports in the Containing view as it is a concrete instance.
Thanks
Greg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您拥有如下实例时,您可以强制组合:
注意,
马丁
You can force the composition when you have an instance like this:
Take care,
Martin