private void NotifyDataSetThreadSafe() { var handler = new Handler(Context.MainLooper); handler.Post(() => { NotifyDataSetChanged(); DataSetChanged?.Invoke(this, EventArgs.Empty); }); }
protected virtual void RaiseDataSetChanged() { DataSetChanged?.Invoke(this, EventArgs.Empty); }
public void ReloadData() { DataSetChanged?.Invoke(this, EventArgs.Empty); CheckIfHaveTable(); TableView.InvokeOnMainThread(TableView.ReloadData); }
private void RaiseDataSetChanged() { DataSetChanged?.Invoke(this, EventArgs.Empty); }
public void ReloadData() { AppTools.InvokeOnMainThread(() => DataSetChanged?.Invoke(this, EventArgs.Empty)); }
public override void NotifyDataSetChanged(NotifyCollectionChangedEventArgs e) { base.NotifyDataSetChanged(e); DataSetChanged?.Invoke(this, e); }
public void ReloadData() { DataSetChanged?.Invoke(this, EventArgs.Empty); CheckIfHaveTable(); CollectionView.ReloadData(); }
private void TicketReposAdapter_DataSetChanged(object sender) { DataSetChanged.Invoke(sender); }