본문 바로가기
백엔드/C#

FarPoint Spread 오른쪽 클릭 시 Active Cell UI 변경

by 1005ptr 2021. 4. 6.
반응형

왠진 몰라도 오른쪽 클릭하면 액티브 셀이 되긴 하는데 UI가 안변한다.

그럴때는 CellClick 이벤트에서 ActiveSheet에 SetActiveCell(row, column) 해주면 된다.

this.grid.CellClick += new CellClickEventHandler(grid_CellClick);

void grid_CellClick(object sender, CellClickEventArgs e)
{
	this.grd_HeightSeparate.ActiveSheet.SetActiveCell(e.Row, e.Column);
}

 

www.grapecity.com/forums/spread-winforms/right-click-should-select-

 

Right click should select cell and show menu | Spread for WinForms | Spread Studio | GrapeCity Forums

Discussion of topic Right click should select cell and show menu in Spread for WinForms forum.

www.grapecity.com

 

반응형

댓글