Managed Extensibility Framework (MEF) vs. Composite UI Application Block (CAB) - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T04:30:03Zhttp://stackoverflow.com/feeds/question/898641http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/898641/managed-extensibility-framework-mef-vs-composite-ui-application-block-cab3Managed Extensibility Framework (MEF) vs. Composite UI Application Block (CAB)blu2009-05-22T15:59:23Z2009-05-25T17:47:16Z
<p>We are currently looking at either using CAB or MEF for our next application. I didn't see any examples on codeplex of how event brokering is handled for sibling control communication, maybe I missed it. How does inter-control communication work in MEF? </p>
<p>Also, we are planning on using Infragistics which has provided additional components for the CAB framework. How well will Infragistics controls integrate into MEF? </p>
<p>Overall, is MEF worth pursuing for a decently large, 15,000 hours of strictly development, application?</p>
http://stackoverflow.com/questions/898641/managed-extensibility-framework-mef-vs-composite-ui-application-block-cab/898743#8987435Answer by Mehmet Aras for Managed Extensibility Framework (MEF) vs. Composite UI Application Block (CAB)Mehmet Aras2009-05-22T16:25:35Z2009-05-22T16:25:35Z<p>I may be wrong but I don't think that MEF has any event brokering. It is a general composition engine similar to ioc containers but intended for a more general plug-in and application extensibility solution. CAB and Prism on the other hand are UI frameworks that allow composite applications that're made up of UI components. Since UI components will most likely need to communicate with each other and respond to activities in other UI components, the underlying framework needs to provide a mechanism for eventing (pub/sub) between UI components. </p>
http://stackoverflow.com/questions/898641/managed-extensibility-framework-mef-vs-composite-ui-application-block-cab/906478#9064782Answer by Scott Whitlock for Managed Extensibility Framework (MEF) vs. Composite UI Application Block (CAB)Scott Whitlock2009-05-25T12:04:26Z2009-05-25T12:04:26Z<p>If you are using MEF with WPF and the MVVM pattern, then your parts typically export ViewModel classes and View classes (e.g. DataTemplates, etc.). Your View binds to the ViewModel and uses dependency properties and commands to communicate back and forth. Therefore, if Part A needs to communicate with Part B, then Part A can Import a reference to Part B's ViewModel and they can make method calls back and forth. Part A can also register event handlers for Part B's events, etc.</p>
http://stackoverflow.com/questions/898641/managed-extensibility-framework-mef-vs-composite-ui-application-block-cab/907524#9075243Answer by Glenn Block for Managed Extensibility Framework (MEF) vs. Composite UI Application Block (CAB)Glenn Block2009-05-25T17:47:16Z2009-05-25T17:47:16Z<p>MEF does not include an eventing mechanism, however you can use Prism's event aggregator with MEF. I did a post on this here.</p>
<p><a href="http://codebetter.com/blogs/glenn.block/archive/2009/02/23/event-aggregation-with-mef-with-and-without-eventaggregator.aspx" rel="nofollow">http://codebetter.com/blogs/glenn.block/archive/2009/02/23/event-aggregation-with-mef-with-and-without-eventaggregator.aspx</a></p>
<p>The way it works is you basically export Prism's composite event classes.</p>
<p>HTH
Glenn</p>