dhtmlxGrid 줄 번호 추가 상세 절차

1.줄 번 호 를 추가 하면 효 과 는 다음 과 같 습 니 다2.속성 설정 gridView 속성:gridView 1.IndicatorWidth=30;속성 창 에 값 을 설정 합 니 다.(실제 크기 에 따라 Indicator Width 크기 를 설정 할 수 있 습 니 다)3.이벤트 추가
 
private void gridView1_CustomDrawRowIndicator(object sender, DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventArgs e)
{
if (e.Info.IsRowIndicator && e.RowHandle >= 0)
{
e.Info.DisplayText =( e.RowHandle+1).ToString();
}
}
4.줄 번호 로 해결 할 수 있 습 니 다.물론 줄 번호 열 을 설정 하고 데이터 원본 으로 줄 번호 값 을 연결 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기