■ GridView 클래스에서 RTF 데이터를 표시하는 그리드 컬럼에 대해 필터를 처리하는 방법을 보여준다.
▶ MainForm.cs
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
using System; using System.Data; using DevExpress.XtraEditors; using DevExpress.XtraGrid.Views.Base; using DevExpress.XtraGrid.Views.Grid; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : XtraForm { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); Load += Form_Load; this.gridView.CustomUnboundColumnData += gridView_CustomUnboundColumnData; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 폼 로드시 처리하기 - Form_Load(sender, e) /// <summary> /// 폼 로드시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Form_Load(object sender, EventArgs e) { DataTable dataTable = new DataTable(); dataTable.Columns.Add("ID" , typeof(int )); dataTable.Columns.Add("Name" , typeof(string)); dataTable.Columns.Add("Description", typeof(string)); for(int i = 1; i < 10; i++) { dataTable.Rows.Add(i, string.Format("Item{0}", i), DataProvider.DescriptionArray[i % 4]); } this.gridControl.DataSource = dataTable; } #endregion #region 그리드 뷰 언바운드 컬럼 데이터 커스텀 설정하기 - gridView_CustomUnboundColumnData(sender, e) /// <summary> /// 그리드 뷰 언바운드 컬럼 데이터 커스텀 설정하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridView_CustomUnboundColumnData(object sender, CustomColumnDataEventArgs e) { GridView gridView = sender as GridView; if(e.Column.FieldName == "SimpleText" && e.IsGetData) { object value = gridView.GetListSourceRowCellValue(e.ListSourceRowIndex, descriptionColumn); e.Value = this.descriptionRepositoryItemRichTextEdit.ConvertEditValueToPlainText(value); } } #endregion } } |