This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows.Input; | |
/// <summary> | |
/// A command whose sole purpose is to relay its functionality to | |
/// other objects by invoking delegates. | |
/// The default return value for the CanExecute method is 'true'. | |
/// </summary> | |
public class RelayCommand : ICommand | |
{ |
NewerOlder