-
Hello, This has been completed and we recently released our CSLA v3.0.0 templates . If you find any Silverlight issues, please log it as an issue on our dedicated template issue tracker ! Also we have a Silverlight MVVM sample located in the PetShop Sample Application download! Thanks -Blake Niemyjski
-
There are different async models in .NET in general - the old Begin/End method model, the event model and the callback model. Recently the callback model has become popular, but the event model is usually a parallel offering. The Begin/End model seems to have lost favor. In short, where a callback model...
-
I am trying to bind an ItemsControl to a view-model. My view-model exposes a collection of objects which have a Name property. That Name property is used as the content of a HyperlinkButton. This part works fine. Now I am trying to use SL4 Command or CSLA TriggerAction to call a handler in the view-model...
-
Guys, I have not used prism before, nor regions. I am using Bxf in A SL4 project and using CSLA4 and have created an application based similar to Visual Studio and similar to Outlook. Where I have a in my Outlook bars regions and I have a main window that has tabbed documents. I have got all this up...
-
The C# SL sample called CslaMvvmSl was created using the VS10 designer features, so it uses CVS resources. It also uses a version of Bxf (before I put it in CodePlex) to manage the view <-> viewmodel wire-ups, etc.
-
Mr Rockford: I have a question about loading different data aynchronously into several different ViewModels/Models on initialization. I have a Silverlight client using just a WCF Service getting data from various sources. My Silverlight client is using the BxF framework and using CSLA Business Objects...
-
I add a bussiness.server side project and business.client side project to my project working same as lhotka Silverlight 4 collective project. There is something wrong with my web.config file see http://forums.lhotka.net/forums/p/9101/43303.aspx#43303 what am i missing?
-
Rocky – General background: We are using CSLA4/ Silverlight4 I watched the MVVM video you posted on your blog. Thanks for that! It was very helpful. However, I am slightly confused now, having listened to it and also perused your ‘CslaMVVMSl’ project. You talk about the ‘Viewfactory’...
-
I am fairly new to mvvm + silverlight concepts and am running into a roadblock. I have a silverlight treecontrol bound to a viewmodel that is refreshed on the click event of a button. My problem is , if for any reason, there is a model binding error, i want to clear the treecontrol and not display anything...
-
I work with Larry and after much persistence and playing around with the MVVM Test Project (thanks to Rocky), we found a way to make it work for us conforming for the most part to the CSLA + MVVM structure. Our layout required that the tree be loaded on a button click event and since there was also the...