Skip to content

Instantly share code, notes, and snippets.

View rmnblm's full-sized avatar
🍾
Uncorking

Roman Blum rmnblm

🍾
Uncorking
View GitHub Profile
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
{