■ UltraGrid 클래스에서 행 프리뷰를 사용해 행 설명을 추가하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... #region UltraGrid 행 추가 후 처리하기 - ultraGrid_AfterRowInsert(sender, e) /// <summary> /// UltraGrid 행 추가 후 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void ultraGrid_AfterRowInsert(object sender, RowEventArgs e) { this.ultraGrid.DisplayLayout.ActiveRow.Description = "Data changed in this row will not be added to the database until you press the Update button."; } #endregion |