dhtmlxGrid 줄 번호 추가 상세 절차
616 단어 dhtmlxGrid줄 번호 추가
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.줄 번호 로 해결 할 수 있 습 니 다.물론 줄 번호 열 을 설정 하고 데이터 원본 으로 줄 번호 값 을 연결 할 수 있 습 니 다.