■ GridControl 클래스의 CustomUnboundColumnData 이벤트를 사용해 언바운드 컬럼 데이터를 커스텀 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
using System; using DevExpress.Xpf.Grid; ... #region 그리드 컨트롤 언바운드 컬럼 데이터 커스텀 설정하기 - gridControl_CustomUnboundColumnData(sender, e) /// <summary> /// 그리드 컨트롤 언바운드 컬럼 데이터 커스텀 설정하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridControl_CustomUnboundColumnData(object sender, GridColumnDataEventArgs e) { if(e.Column.FieldName == "Total") { int unitPrice = Convert.ToInt32 (this.gridControl.GetCellValueByListIndex(e.ListSourceRowIndex, "UnitPrice")); double orderUnit = Convert.ToDouble(this.gridControl.GetCellValueByListIndex(e.ListSourceRowIndex, "OrderUnit")); e.Value = unitPrice * orderUnit; } } #endregion |