silverlight.fx

Does anyone use Silverlight.FX with Silverlight 3?

I started looking at Silverlight.FX by Nikhil Kothari to replace Prism/Unity with our Silverlight 3 project. So far I like the code layout and structure. It looks well thought out. But I can't get a lot of the samples working due to a System.Reflection.AmbiguousMatchException. Anyone else seeing this? Should I not be using this framewo...

What's the difference between Start Debugging and Start Without Debugging in Silverlight Application?

I have a problem wherein I get an AmbiguousMatchException in some of the samples from the Silverlight.FX samples. The TaskList.aspx sample for example demonstrates this problem when I run Start Debugging the exception gets hit on line 202 in ListView.cs FrameworkElement uiItem = itemTemplate.LoadContent() as FrameworkElement; Except...

A Silverlight application with .net Ria services and SilverlightFX

Hi, I am starting to write an application in Silverlight with RIA services and SilverlightFx. Now this application is a pretty big one has has lot of interaction between controls. As an estimate it will have around 60-70 user controls. Now my questions are.. Is it good to choose .Net Ria and SilverlightFx? (My view is..It is not goin...

Using Silverlight.FX Window for MVVM as a Silverlight 3.0 Page?

I'm creating a Silverlight 3.0 MVVM application using Silverlight.FX but my View is actually using the Silverlight navigation system, a Page. Following Nikhil's example, my View should derive from the Silverlight.FX Window class. What's the best approach to making a Window that also supports the Page functionality or is there something ...

Is there any kind of documentation available for Silverlight.FX ?

Silverlight FX looks like it will cover my MVVM needs, however I'm struggling to find good documentation on the behaviors system (or any good doco) beyond some blog posts which are from previously released versions. Specifically, I am trying to figure out how I can capture a RowCommit event from my view and have it invoke a method/even...