I am testing using the Kanban control to show all of my tasks but when the task card is clicked I need it to pass the selected object to the navigation service and route to the edit page. Using a GridView I was using the ItemClick event (ItemClick="{x:Bind ViewModel.GotoDetailsPage}") to route to the edit page like this public void GotoDetailsPage(object sender, ItemClickEventArgs e) => NavigationService.Navigate(typeof(Views.TaskDetailPage), (UserTask)e.ClickedItem), how can I do the same with the Kanban control.