mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-23 01:35:38 -05:00
29 lines
718 B
C#
29 lines
718 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
namespace NotifyIconWpf.Sample.ShowCases.Tutorials
|
|
{
|
|
/// <summary>
|
|
/// A simple command that displays the command parameter as
|
|
/// a dialog message.
|
|
/// </summary>
|
|
public class ShowMessageCommand : ICommand
|
|
{
|
|
public void Execute(object parameter)
|
|
{
|
|
MessageBox.Show(parameter.ToString());
|
|
}
|
|
|
|
public bool CanExecute(object parameter)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public event EventHandler CanExecuteChanged
|
|
{
|
|
add => CommandManager.RequerySuggested += value;
|
|
remove => CommandManager.RequerySuggested -= value;
|
|
}
|
|
}
|
|
} |