I am trying to use MVVM light messaging to send a value from one page to another during Navigation (for example, send the id of an item that was selected to an edit page). So the list 开发者_JAVA百科p
I\'d like to handle the Closing event (when a user clicks the upper right \'X\' button) of my window in order to eventually display a confirm message or/and cance开发者_开发问答l the closing.
I have created a dependency property of type Binary on a RichTextBox which allows me to bind to a FlowDocument which is in binary form (byte[]) within the ViewModel. This works well, the property conv
I am building a WP7 client app that talk to a web service (SOAP like) using Mvvm-Light. I have a ViewModel that both implements INotifyPropertyChanged and calls RaisePropertryChanged with the broadca
I am using MVVM Light and am using Messages to communicate between ViewModels to let a ViewModel know when it is ok to execute something.My problem is that I register for a message 开发者_如何学Cand t
I have a TreeView that the user navigates to select an item for display in a grid.Briefly the XAML looks like this:
I\'ve got a plugin that needs access to certain information in order to populate its GUI elements properly.However, this plugin should not know about all other plugins, so I want it to request this in
I want a class (called PremiseServer) in my Mvvm-Light solution (WP7) to subscribe to all property changes for classes that are derived from a base type (SysObject is the base class and it derives fro
Is it possible to Send a message i开发者_开发问答n the xaml via a trigger? thanks.I assume you\'re referring to MVVM Light Toolkit\'s messaging. If so, then No, this isn\'t possible.
As I am further digging into MVVM and MVVM-light I recognized, that there is no MVVM-light provided base class for models.