Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
472 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 ...
4
votes
1answer
689 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" ...
0
votes
0answers
48 views

EventToCommand fails for the initial GotFocus event

I begin to apply the Mvvm design pattern in my current project and the framework I used is Mvvm Light toolkit. Now I encoutered a problem when using the EventToCommand to handle "GotFocus" event. The ...
0
votes
1answer
75 views

MVVM light EventToCommand: get selected item

I have a treeview where I can click on items. I am using MVVM light toolkit and the EventToCommand and would like to know which item was chosen. How can I pass this to my viewmodel? ...
0
votes
1answer
279 views

How do I pass an CommandParameter using MVVMlight EventToCommand and the Page Load event?

EventToCommand fails to pass Command Parameter on Load Event When attached to the Load event of the page or user control the EventToCommand successfully calls the handler in the ViewModel but does ...
0
votes
1answer
224 views

MVVM Light EventToCommand and Silverlight DataForm - I need the EventArgs and a custom CommandParameter. Possible?

I have a DataForm bound to a collection of RoleViewModel objects. I'm using MVVMLight's EventToCommand behaviour bound to the EditEnding event of the DataForm to inform my ViewModel when a Role has ...
0
votes
1answer
379 views

Finding the selected item in an ItemsControl when the PreviewMouseLeftButtonDownCommand RelayCommand\EventToCommand fires

My app is wpf mvvm, using RelayCommand\EventToCommand bindings for the events. My app does some typical drag & drop from a ListBox onto an ItemsControl (it is actually an image control with an ...
0
votes
0answers
55 views

EventTrigger occasionally fails to get hooked by Silverlight

While developing a small SL solution I have encountered the following issue: I have an EventTrigger of hooking the selected items inside the data grid. The problem is that the call to the ...
0
votes
2answers
354 views

mvvm-Light: Adding EventToCommand in XAML without Blend, easiery way or snippet?

Can anyone tell me what the actual syntax is for EventToCommand. From what i believe is that EventToCommand works with Silverlight / WPF and WP7 hence i think its a better choice to go down. From ...