Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

MVVM Foundation vs MVVM Toolkit

Can someone explain the differences between the MVVM Foundation and the MVVM Toolkit? They seem to have a lot in common.
4
votes
2answers
247 views

C#: Extending from more than 1 class

Suppose I have a ViewModel TabViewModel that Extends ObservableObject the class for ViewModels in the MVVM Foundation Framework. Then I also have a EditorTabViewModel that extends TabViewModel, Now I ...
4
votes
2answers
2k views

Using MVVM Foundation Messenger to Show Dialog

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 ...
3
votes
3answers
2k views

MVVM Light Toolkit - RelayCommands, DelegateCommands, and ObservableObjects

I just started experimenting with Laurent Bugnion's MVVM Light Toolkit. I think I'm going to really like it, but I have a couple questions. Before I get to them, let me explain where I'm coming from. ...
3
votes
3answers
878 views

MVVM ViewModel to View Messaging

MVVM question. Messaging between ViewModel and View, how is it best implemented? The application has some points of “user communication” such as: “You have entered comments for this selection. Do ...
2
votes
2answers
327 views

MVVM toolkits - which one do you recommend? [closed]

Possible Duplicate: What framework for MVVM should I use? I found several MVVM Light Toolkit WPF MVVM Toolkit MVVM Foundation Do you recommend using one of these toolkits? Why? Which ...
2
votes
1answer
225 views

MVVM Foundation: Why return ICommand when its defined as RelayCommand

i am using the SampleModel project from MVVM Foundation.Why is ICommand returned when _decrementCommand is declared as RelayCommand. I know RelayCommand inherits ICommand but won't is be clearer to ...
2
votes
3answers
2k views

Creating a clickable image in WPF

I want to make a user control that shows an image and can invoke a command when clicked. Later I want to bind a list of these controls to a list of products.
1
vote
2answers
375 views

Spring AOP + MVVM Foundation + PropertyChanged

I'm using Spring.Net 1.3.1 alongside MVVM Foundation to apply cross-cutting to my viewmodels. I've noticed that if I assign a property changed handler before the object is converted to a proxy for ...
1
vote
2answers
97 views

Can I have multiple ViewModel for a View in WPF

Can I have multiple ViewModel for a View in WPF? Because some times we need to show the view only in simple view format and sometimes the same view has to shown in editable format. Hence we can create ...
1
vote
1answer
267 views

Double click event in MVVM Foundation

I've seen several methods for handling this across several libraries but I want to know the best way to do this, specifically with MVVM Foundation. I'm trying to capture double click for list item. ...
1
vote
2answers
617 views

Showing Dialogs in MVVM & Setting dialog options

I am just wondering is this the way to show dialogs in MVVM? public ICommand OpenFileCommand { get { if (_openFileCommand == null) { _openFileCommand = new ...
0
votes
3answers
211 views

Opening save file dialog in MVVM using OnPropertyChange is Ok or Not

I am developing painting application in which i need to save my painting. To save i need to show save file dialog , As i am implementing MVVM pattern i can't directly use event handler. But while ...
0
votes
1answer
93 views

Need to build a WPF application with good architecture

I am trying to start a WPF application towards self learning curve, i have explored quite about WPF and now its time for me to start an application for myself. Many thanks to them who contributed ...
0
votes
2answers
364 views

What MVVM framework is Good For?

i know some Mvvm Frameworks that introduced in this thread please describe or give me link for that what are them useful for? not information about MVVM about MVVM Framework. thanks :) i want to know ...
0
votes
1answer
208 views

Using MVVM Foundation Messenger to Show Dialog

i have read the other question here on StackOverflow. I understand how to create messages between ViewModels/Objects. But I dont get how can i actually display a dialog. Can I see some code samples ...
0
votes
1answer
104 views

MVVM Foundation: Assertion Failed Error: Invalid Property Name

i am just getting started with MVVM Foundation. I am getting my codes below: StartViewModel class StartViewModel : ObservableObject { public StartViewModel() { _counter = 0; } ...
0
votes
2answers
1k views

MVVM Foundation: How to close Application Window from ViewModel

I am using MVVM Foundation but I think its quite straight-forward and not really framework specific. My setup is as follows: StartViewModel - has a ExitCommand that returns a RelayCommand/ICommand ...
0
votes
1answer
37 views

How can I make the Visual Studio debugger more useful when using the MVVM Foundation Messenger?

I've been generally very pleased with the MVVM Foundation Messenger, but I've noticed that when a messenger call causes an exception, the Visual Studio debugger doesn't ever seem to take me to the ...
0
votes
1answer
505 views

How to pass EventArgument information from view to view model in WPF?

I have ListView control in my application which is binded to the collection of CustomObject List<CustomObject>. The CustomObject has seperate view. This ListView has seperate view model. The ...
0
votes
2answers
188 views

Please suggest me the ( Interaction model of view model) MVVM design in the simple scenario discussed in the subject/

Data Layer I have an Order class as an entity. This Order entity is my model object. Order can be different types, let it be A B C D Also Order class may have common properties like Name, Time ...
0
votes
2answers
426 views

Query on MVVM pattern in WPF?

I am implementing a MVVM pattern in my WPF application. My application main window is divided into four parts: Main Menu On the Top Outlook Navigation Control on the Left. A List View on the ...