private void _songsTableView_DidSelectRowEvent(TableView sender, int row)
 {
     _lastSelectedRow = row;
     DidSelectRowEvent?.Invoke(_customListTableView, row);
     _downloadButton.interactable = true;
 }
Ejemplo n.º 2
0
 private void _customListTableView_didSelectRowEvent(TableView arg1, int arg2)
 {
     DidSelectRowEvent?.Invoke(arg1, arg2);
 }