BindableApplicationBar.BindableApplicationBarMenuItem.ApplicationBarMenuItemClick C# (CSharp) Method

ApplicationBarMenuItemClick() private method

private ApplicationBarMenuItemClick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void ApplicationBarMenuItemClick(object sender, EventArgs e)
        {
            if (this.Command != null &&
                this.Command.CanExecute(this.CommandParameter))
            {
                this.Command.Execute(this.CommandParameter);
            }
        }
    }