You're using the wrong EventArgs class. You need TappedEventArgs
private void OnFrameClick(object sender, TappedEventArgs e) { if(e.Parameter is Shipment shipment) { //TODO } }