문제

I have a list items to show on XtraGridControl. I want first item of the grid controll, which is always chosen when I sort by any column. I tried to find and use FocusedRowHandle property, but there is not.

What properties I can use to focus the first item on XtraGridControl programly?

Thanks advance.

도움이 되었습니까?

해결책

I solve the problem myself by using ColumnView as code below:

ColumnView cv = m_wndGridCtrl.MainView as ColumnView;
cv.FocusedRowHandle = 0;

Thanks for your time supporting.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top