Exemplo n.º 1
0
 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
     }
                             );
 }
Exemplo n.º 3
0
 void OnLongClick(TakenCarAdapterEventArgs args)
 {
     ItemLongClicked?.Invoke(this, args);
 }
Exemplo n.º 4
0
 void OnLongClick(MyOrderAdapterEventArgs args)
 {
     ItemLongClicked?.Invoke(this, args);
 }