示例#1
0
        private void DidDoubleTap()
        {
            if (mGridView == null)
            {
                return;
            }

            mGridView.HandleOnSelectedRowChanged(RowIndex);
            mGridView.HandleOnCellDoubleTap(this);
            mGridView.HandleOnRowDoubleSelect(mRowView);
        }
示例#2
0
 /// <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);
 }