Test.WPFContextMenuTestControl.Executed C# (CSharp) Méthode

Executed() private méthode

private Executed ( object sender, System.Windows.Input.ExecutedRoutedEventArgs e ) : void
sender object
e System.Windows.Input.ExecutedRoutedEventArgs
Résultat void
        private void Executed(object sender, ExecutedRoutedEventArgs e)
        {
            var c = e.Command as RoutedUICommand;
            _commands.Add(c.Name);
            if (_isModal) 
            {
                MessageBox.Show("");
            }
        }