In my WPF app, I am using MVVM. I am reading from an XML file, deserialize it to an object model and keeping it in memory.
I have a WPF window and am using the MVVM pattern. I set the view model as a resource for the window as follows...
I often have to deal with lists in the user interface that translate to an enum value in the \'ViewModel\'. I know that I can directly bind ListView.ItemSource to an enum via ObjectDataProvider that p
Just an example. The CustomControl has a ViewModel with a property called \"Test\" How could I bind the textbox to that specific property?
I have the following action method (partial code): [HttpPost] public ActionResult Create(EditGrantApplicationViewModel editGrantApplicationViewModel)
Hi I\'m trying to make a Silverlight page with an event in the ViewModel but I don\'t understand how to do this on the page load event (I can\'t find the proper command).
I\'m trying to call an action in a separate controller with an actionlink. The problem is that both the [HttpGet] and the [HttpPost] action gets called, and since the post-method returns the view fro
I have a viewmodel which is returned from a insert call on a MVC page. It exposes properties according to the underlying model as well as some calculated properties.
I have 2 models: public class Person { public int PersonID { get; set; } public string PersonName { get; 开发者_开发问答set; }
I\'m making a timeregistration project in Silverlight. I 开发者_如何学Gohave 2 kinds of rights, an admin and a user. I need to send the Logged in user object from one viewmodel to another.