BindableApplicationBar.BindableApplicationBarButton.ApplicationBarIconButtonClick C# (CSharp) Method

ApplicationBarIconButtonClick() private method

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