■ GridControl 클래스에서 커스텀 데이터 그룹핑을 사용하는 방법을 보여준다.
▶ MainWindow.xaml
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 |
<Window x:Class="DS.Test.WPF.UI.Developer.Grid.CustomDataGrouping.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" Width="800" Height="600" Title="GridControl 클래스 : 커스텀 데이터 그룹핑 사용하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <dxg:GridControl Name="gridControl" CustomColumnDisplayText="gridControl_CustomColumnDisplayText" CustomColumnGroup="gridControl_CustomColumnGroup"> <dxg:GridControl.Columns> <dxg:GridColumn FieldName="ProductID" /> <dxg:GridColumn FieldName="ProductName" /> <dxg:GridColumn FieldName="QuantityPerUnit" /> <dxg:GridColumn FieldName="UnitPrice" SortMode="Custom" /> <dxg:GridColumn FieldName="UnitsInStock" /> </dxg:GridControl.Columns> <dxg:GridControl.View> <dxg:TableView Name="tableView" /> </dxg:GridControl.View> </dxg:GridControl> </Grid> </Window> |
▶ MainWindow.xaml.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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
using System; using System.Collections; using System.Windows; using DevExpress.Xpf.Grid; namespace DS.Test.WPF.UI.Developer.Grid.CustomDataGrouping { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); this.gridControl.ItemsSource = new nwindDataSetTableAdapters.ProductsTableAdapter().GetData(); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 그리드 컨트롤 커스텀 컬럼 디스플레이 텍스트 처리하기 - gridControl_CustomColumnDisplayText(sender, e) /// <summary> /// 그리드 컨트롤 커스텀 컬럼 디스플레이 텍스트 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridControl_CustomColumnDisplayText(object sender, CustomColumnDisplayTextEventArgs e) { if(e.Column == null) { return; } if(e.Column.FieldName == "UnitPrice") { string interval = GetInterval(this.gridControl.GetGroupRowValue(e.RowHandle)); e.DisplayText = interval; } } #endregion #region 그리드 컨트롤 커스텀 컬럼 그룹 처리하기 - gridControl_CustomColumnGroup(sender, e) /// <summary> /// 그리드 컨트롤 커스텀 컬럼 그룹 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridControl_CustomColumnGroup(object sender, CustomColumnSortEventArgs e) { if(e.Column != null & e.Column.FieldName == "UnitPrice") { double x = Math.Floor(Convert.ToDouble(e.Value1) / 10); double y = Math.Floor(Convert.ToDouble(e.Value2) / 10); int result = Comparer.Default.Compare(x, y); if(x > 9 && y > 9) { result = 0; } e.Result = result; e.Handled = true; } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 간격 구하기 - GetInterval(value) /// <summary> /// 간격 구하기 /// </summary> /// <param name="value">값</param> /// <returns>간격</returns> private static string GetInterval(object value) { double doubleValue = Math.Floor(Convert.ToDouble(value) / 10); string result; if(doubleValue > 9) { result = string.Format(">= {0:c} ", 100); } else { result = string.Format("{0:c} - {1:c}", doubleValue * 10, (doubleValue + 1) * 10); } return result; } #endregion } } |