private void OnItemLongClicked(int posiion) { ItemLongClicked?.Invoke(this, new NotificationItemClickedEventArgs { Position = posiion } ); }
private void OnItemLongClicked(int position, OpenNotification sbn) { ItemLongClicked?.Invoke(this, new NotificationItemClickedEventArgs { Position = position, StatusBarNotification = sbn } ); }
void OnLongClick(TakenCarAdapterEventArgs args) { ItemLongClicked?.Invoke(this, args); }
void OnLongClick(MyOrderAdapterEventArgs args) { ItemLongClicked?.Invoke(this, args); }