Exemplo n.º 1
0
 public void SendClicked()
 {
     if (IsEnabled == true)
     {
         Command?.Execute(CommandParameter);
         Clicked?.Invoke(this, EventArgs.Empty);
     }
 }
Exemplo n.º 2
0
        protected internal override void OnTapped()
        {
            base.OnTapped();

            if (!IsEnabled)
            {
                return;
            }

            Command?.Execute(CommandParameter);
        }
Exemplo n.º 3
0
 void IButtonController.SendClicked()
 {
     Command?.Execute(CommandParameter);
     Clicked?.Invoke(this, EventArgs.Empty);
 }