Tagged Questions

The MVVM Light Toolkit is a set of components helping people to get started in the Model - View - ViewModel pattern in Silverlight and WPF. It is a light and pragmatic framework that contains only the essential components needed.

learn more… | top users | synonyms

26
votes
3answers
2k views

MVVM Light: how to unregister Messenger

I love the MVVM Light's Messenger and its flexibility, however I'm experiencing memory leaks when I forget to explicitly unregister the recipients (in Silverlight 4). The cause is explained here, but ...
25
votes
8answers
12k views

MVVM Light Toolkit samples

Does anyone know opensource WPF applications created using MVVM Light Toolkit? Or any samples?
15
votes
1answer
3k views

MVVM-light + RIA Services best practices

I would like to start a collection of MVVM-light (w/ RIA Services) Best Practices. There are a number of items I have found to be helpful best practices or best approaches, but would like to hear ...
14
votes
2answers
385 views

When to use events over commands in WPF?

Hi i have recently looked into WPF and started learning about Events and Commands. I typically use Commands on Button clicks which causes a method to Run in my "view model". Is it possible to make ...
11
votes
1answer
1k views

What is a ViewModelLocator and what are its pros/cons compared to DataTemplates?

Can someone give me a quick summary of what a ViewModelLocator is, how it works, and what the pros/cons are for using it compared to DataTemplates? I have tried finding info on Google but there seems ...
11
votes
1answer
2k views

MVVM Light + Unity or Prism?

I am a little out-of-date in WPF right now and would be interested to hear peoples opinions on the latest version of Prism (which I used a couple of versions ago) vs an MVVM Light + Unity approach ...
11
votes
2answers
5k views

A super-simple MVVM-Light WP7 sample?

I am looking for a sample that demonstrates in the lightest way possible the following: A Model that invokes a SOAP based web service; regularly polling to get the latest value (assume the SOAP ...
10
votes
1answer
1k views

Need comparison of MVVM / WPF / Silverlight Toolkits

I'm looking for a good article that compares MVVM Light, Caliburn Micro, Prism, and any other Silverlight / WPF / WP7 frameworks out there. I've seen some good articles on them individually, but ...
10
votes
4answers
2k views

MVVM Light toolkit - maintained? Here today - gone tomorrow?

I have been taking a look at mvvm light toolkit, i must admit i haven't got a lot of experience with it but i live what i see.. I did use the mvvm toolkit (microsoft) but currently use vs 2010 and no ...
8
votes
1answer
633 views

How to focus textbox in WP7 using MVVM?

The question has been asked a couple of times, unfortunately the answers only apply to WPF. Anyone know how to accomplish this in silverlight? Basically I need to focus on a certain textbox from code. ...
8
votes
7answers
9k views

Handling the window closing event with WPF / MVVM Light Toolkit

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 cancel the closing. I know how to do this ...
8
votes
1answer
4k views

using MVVM light messenger with Silverlight 4 ChildWindow dialog class

Greetings! Am enjoying using MVVM light -great framework - has made my life much easier, and has removed a number of barriers that were proving difficult to overcome.... Question: I am attempting to ...
8
votes
3answers
5k views

How to run a function on a background thread for Windows Phone 7?

I'm using MVVM Light to build a WP7 (Windows Phone 7) application. I wish to have all the work performed by the Model to be run on a background thread. Then, when the work is done, raise an event so ...
8
votes
5answers
2k views

MVVM Light + Blend designer view error: Cannot find resource named 'Locator'

The application runs fine but i could not see my design in the designer view. It says Cannot find resource named 'Locator'. Obviously, i did not change anything in the code, i just did the data ...
8
votes
3answers
3k views

MVVM load data during or after ViewModel construction?

My generic question is as the title states, is it best to load data during ViewModel construction or afterward through some Loaded event handling? I'm guessing the answer is after construction via ...
7
votes
5answers
3k views

WPF MVVM Get Parent from VIEW MODEL

In a MVVM WPF application. How do you set a second windows parent from the ViewModel? example: view1 viewModel1 viewModel1's command calls: var view2 = new view2 view2.Owner = <----This is ...
7
votes
2answers
4k views

MVVM light - how to access property in other view model

I'm using mvvm light to build a Silverlight application. Is there a code snippet that shows how to access a view model's property or command from within another view model or user control's code ...
6
votes
3answers
473 views

Creating an MVVM friendly dialog strategy

I'm trying to create a strategy for handling popup forms for use throughout any part of my application. My understanding so far is that I will need a single UserControl in the root of my MainWindow. ...
6
votes
1answer
196 views

Will this coding style result in a memory leak

Following the MVVM pattern I'm trying to wire up the display of a child window by the View in response to a request from the View Model. Using the MVVM-Light Messenger the View will Register for the ...
6
votes
1answer
780 views

Silverlight Constructor Injection into View Model + Design Mode

Im trying to get to grips with writing testable ViewModels in Silverlight 4. Im currently using MVVM light. Im using AutoFac and the IoCContainer is doing its job fine. However to inject into the ...
6
votes
2answers
344 views

How should my model look like?

As I am further digging into MVVM and MVVM-light I recognized, that there is no MVVM-light provided base class for models. But from my understanding, messaging and raising notifications could also ...
6
votes
2answers
1k views

How to use MVVM-Light with tokens?

I see in the MVVM-Light package that I can send messages with tokens- what I need to do is send an object, with a message attached to that object- like Add, Edit, Delete whatever. What is the best ...
6
votes
2answers
3k views

MVVM-Light, firing events from a button inside a data grid column template

MVVM light has been a pleasure to learn, but here I am stuck. The problem is event firing. In the code below, one button the works and fires events. The other button doesnt. No binding errors are ...
6
votes
4answers
9k views

Missing System.Windows.Interactivity in Silverlight 4 - mvvm light tutorial

I'm trying to follow this MVVM Light Toolkit V3 Alpha 2: EventToCommand behavior tutorial. I'm using vs2010 with silverlight 4. I dont have expression blend. The tutorial states that In ...
6
votes
6answers
4k views

Unblocking a DLL on a company machine. How?

I am trying to test out MVVMLight but the DLLs that come with it are BLOCKED. I have read about it and I am told to click the UNBLOCK in the file property.. but that doesnt exist for me.. Then I found ...
6
votes
3answers
2k views

Cleanup vs Dispose(bool) in MVVM-light

In the latest version of MVVM-light (V3 SP1) both "Dispose()" and "Dispose(bool)" methods in ViewModel class are marked Do not use this method anymore, it will be removed in a future version. Use ...
6
votes
3answers
4k views

MVVM Light Messenger Class

Can anybody provide samples/links/simple-illustrations/videos/demos on how to use the messenger class in MVVM Light?
5
votes
1answer
158 views

MVVM light messaging broken after SL5 update?

I Just upgraded my SL4 application to SL5. I downloaded the MVVM light toolkit source for SL 5 and build it: http://mvvmlight.codeplex.com/SourceControl/changeset/changes/17256019ad97 Initially ...
5
votes
1answer
168 views

MVVM: Communication

I am working on a large MVVM application. I am using the MVVM light toolkit for this. The application is like a web browser with back and forward buttons. The main view is an user control. I laid the ...
5
votes
2answers
457 views

What is the best way to switch views/usercontrols in MVVM-light and WPF?

I'm relatively new to WPF and MVVM and the hardest thing I have found is how to simply switch a usercontrol or a view in an application. In winforms, to have a control remove itself you would simple ...
5
votes
1answer
344 views

Notifying that all properties have changed on a ViewModel

I am working on a Silverlight application using V3 SP1 of MVVM Light Toolkit. My application is fully French/English. All UI elements (buttons, labels, etc.) and all the data (models). I need ...
5
votes
5answers
1k views

How to close a ChildWindow with Cancel button using MVVM Light Toolkit

I'm new to MVVM and trying to figure out how to close a ChildWindow with the traditional Cancel button using MVVM Light Toolkit. In my ChildWindow (StoreDetail.xaml), I have : <Button ...
5
votes
2answers
4k views

MVVM Light RelayCommand Parameters

I'm having an issue with passing a parameter to a relaycommand using the GalaSoft MVVM Light framework. I know that mvvm light's implementation of relaycommand doesn't use lambda parameters, so I did ...
5
votes
1answer
2k views

Alternatives to Prism + MEF for modular MVVM apps

My team and I are beginning to plan the development of a modular application which will likely multi-target WPF & Silverlight. I personally have some experience using the older version of PRISM ...
5
votes
2answers
181 views

Is it possible to send just a token via the MVVM Light Messenger?

I've been refactoring some code that was originally using the Messenger in MVVM Foundation to now use the Messenger in MVVM Light Toolit. One thing that I can't seem to find an equivalent for is the ...
5
votes
1answer
1k views

Combining MVVM Light Toolkit and Unity 2.0

This is more of a commentary than a question, though feedback would be nice. I have been tasked to create the user interface for a new project we are doing. We want to use WPF and I wanted to learn ...
5
votes
2answers
861 views

Where does the navigation logic belong, View, ViewModel, or elsewhere?

I a button in a view, bound to an ICommand property of the ViewModel (actually it's RelayCommand from mvvv-light) If the user clicks on the button I want to navigate to a new view. Of course the ...
5
votes
5answers
4k views

How to open a new window using MVVM Light Toolkit

I am using MVVM light toolkit in my wpf application. I would like to know what is the best approach for opening a new window from an existing window. I have got this MainViewModel, which is respnsible ...
5
votes
5answers
1k views

Do I need a view controller for MVVM-light in Silverlight?

I have the following question regarding MVVM light: what "drives" the UI? I see I can have a ViewModel per View I am showing; the ViewLocator handles all the ViewModels (for caching as I understand). ...
4
votes
4answers
196 views

Struggling to understand MVVM architecture

I'm trying to learn MVVM and WPF and I'm using the MVVM Light Toolkit. Here's what I'm not fully understanding and maybe it's due to an incorrect architecture of my UI. What I'm trying to accomplish ...
4
votes
2answers
216 views

Does the MVVM Light SimpleIoC support singletons?

I'm using SterlingDB in my current Windows Phone project, and I would like to be able to resolve the Sterling database from various places in my application using the new SimpleIoC container in MVVM ...
4
votes
3answers
166 views

Is the 'Self' construct useful in Silverlight/MVVM?

I've inherited a Silverlight project with dubious code quality overall, and there is one construct that I'm not sure whether I should touch it: public SomeClass Self { get { return ...
4
votes
3answers
186 views

MVVM Light Listener not releasing / deterministic finalization for registered object?

I have a childwindow with an associated VM that gets created each time I ask the child window to open. when the childwindow opens, it registers a listener for an MVVM Light message. After I close ...
4
votes
5answers
434 views

How to detect Pivot View using MVVM in WP7?

basically I have a pivot control in my WP7 app that contains 3 views. On each view I'm calling 1 of my 3 different web services that I run. What I'm trying to do is call the service only when they ...
4
votes
1answer
226 views

Static ViewModels vs instanced ViewModels

I have two views that share one observable collection from certain viewmodel, but with different collection view parameters. What is the correct way of implementing it in MVVM Light? Is there any ...
4
votes
1answer
620 views

MvvmLight EventToCommand on a TreeView throwing NullReferenceException

First, the code: <UserControl x:Class="Engage.IWS.Modules.InteractionResults.Views.InteractionResultView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
4
votes
1answer
302 views

MVVM Light - Child Views and Dialogs

I'm experimenting with MVVMLight and Windows Phone 7, and so far find it relatively easy. The one thing I can't get my head around is spawning new child windows/views. For example: if I want to ...
4
votes
2answers
626 views

MVVM / User Controls & View = ViewModel convention

Laurent of MVVM Light fame introduced me to MVVM, and the convention of one view has one view model. So what is the rule of thumb for user controls? One ViewModel for each user control? When ...
4
votes
2answers
478 views

MVVMLight— Passing a parameter to a ViewModel constructor?

Suppose I have a ListBox which is bound to a collection of Foo objects, and the selected Foo is displayed in a contentcontrol with the content template being a FooView. Is there a way that I can ...
4
votes
2answers
164 views

Objection to MVVM pattern is lack of IDE support - do any of the frameworks help with that?

Some of our developers don't like the commanding in MVVM because there is no support in VS2010 IDE to help you navigate from the Command binding in xaml to the actual code implementing the behavior. ...

1 2 3 4 5 15