I have been working through Josh Smith\'s article on MVVM at http://msdn.microsoft.com/en-us/magazine/dd419663.aspx. Each section makes sense to me but I am having a hard time putting it all together
It seems that others have had variations on this question, but from what I can tell it hasnt been addressed for folks using collections in a single view model.
I\'m building a WPF app and trying to conform to MVVM best practices. I\'m using the MVVM Foundation framework and noticed the Messenger class, which I\'ve read should be used for handling dialogs in
I\'m following the example here of binding a MenuItem to a data object. <Menu Grid.Row=\"0\" KeyboardNavigation.TabNavigation=\"Cycle\"
Is there a standard for case and naming conventions in wpf/mvvm that differs from C#? I am accustomed to camelCase with the first character being lower case for private and upper case开发者_开发知识库
I have got an Indexer property in aclass called X, suppose X[Y] gives me a another object of type Z: <ContentControl Content=\"{Binding X[Y]}\" ...???
I\'m in the process of moving my application from .NET 3.5 to .NET 4.0, and I get the following error message : \"Can\'t put a page in a Style\".I\'ve implemented the MVVM pattern for this application
I\'m building Silverlight applicaitions using Prism and MVVM. When calling WCF serv开发者_运维问答ices on your own server, or even external webservices like the Bing api, would this be done from the
This may be a no brainier but I just can\'t seem to get it to work.I have a开发者_StackOverflow view model that exposes a property called bool NotFound I would like to bind that to a trigger so that w
I\'ve got this Silverlight Prism application that is using MVVM. The model calls a WCF service and a list of data is returned.