Top "Delegatecommand" questions

WPF design pattern that provides a generic reusable implementation of ICommand.

How do I pass the information from View to ViewModel with DelegateCommand?

In my View, I have a button. When the user clicks this button, I want to have the ViewModel save …

wpf mvvm delegatecommand
WPF & MVVM: Get values from textboxes and send it to ViewModel

I'm trying to get the value of two Texboxes (I'm simulating a login window) when I press a button. The …

wpf mvvm icommand delegatecommand
Simplifying RelayCommand/DelegateCommand in WPF MVVM ViewModels

If you're doing MVVM and using commands, you'll often see ICommand properties on the ViewModel that are backed by private …

c# wpf mvvm relaycommand delegatecommand
How to fire a Command when a window is loaded in wpf

Is it possible to fire a command to notify the window is loaded. Also, I'm not using any MVVM frameworks (…

wpf mvvm commandbinding delegatecommand
In which namespace is the DelegateCommand in?

I am trying to work out an example from ".NET Domain Driven Design with C#", which contains a code example …

c# .net wpf vb.net delegatecommand
WPF CommandParameter binding and canExecute

I have a template for treeView item: <HierarchicalDataTemplate x:Key="RatesTemplate"> <StackPanel Orientation="Horizontal"> <TextBlock …

c# wpf delegatecommand
is there a uipickerview delegate method like scrollviewDidScroll?

I have a customized UIPickerview and I do not want to use a datepicker. I want to implement the feature …

iphone uipickerview delegatecommand
How to call RaiseCanExecuteChanged for all DelegateCommand and DelegateCommand<T> in base ViewModel Class

I am developing a WPF application using Prism and MVVM. One of the requirements of the application is ability to …

c# wpf reflection mvvm delegatecommand
Memory leak in WPF app due to DelegateCommand

I just finished desktop apps written in WPF and c# using MVVM pattern. In this app I used Delegate Command …

c# wpf mvvm delegatecommand