mrxten/XamEffects

Use Methods in Codebehind, without Commands in ViewModel

bcaceiro opened this issue · 1 comments

Hi, is it possible to bind the commands into Codebehind functions?

Yes, of course.

Commands.SetTap(element, new Command(() => 
{
  //something...
}));

Possible only in this way.