private void DidDoubleTap() { if (mGridView == null) { return; } mGridView.HandleOnSelectedRowChanged(RowIndex); mGridView.HandleOnCellDoubleTap(this); mGridView.HandleOnRowDoubleSelect(mRowView); }
/// <summary> /// Handles the cell double tapped. /// </summary> /// <param name="sender">Sender.</param> void HandleCellDoubleTapped(DSGridCellView sender) { mGridView.HandleOnSelectedRowChanged(RowIndex); mGridView.HandleOnCellDoubleTap(sender); mGridView.HandleOnRowDoubleSelect(this); }