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