■ PivotGridControl 클래스의 CreateDrillDownDataSourceAsync 메소드를 사용해 비동기 기본 데이터 소스를 생성하는 방법을 보여준다.
▶ PopupForm.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 |
using System; using DevExpress.Data; using DevExpress.Utils; using DevExpress.XtraEditors; namespace TestProject { /// <summary> /// 팝업 폼 /// </summary> public partial class PopupForm : XtraForm { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 데이터 소스 - DataSource /// <summary> /// 데이터 소스 /// </summary> public object DataSource { get { return this.gridControl.DataSource; } set { this.gridControl.DataSource = value; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - PopupForm() /// <summary> /// 생성자 /// </summary> public PopupForm() { InitializeComponent(); this.gridControl.DataSourceChanged += gridControl_DataSourceChanged; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 그리드 컨트롤 데이터 소스 변경시 처리하기 - gridControl_DataSourceChanged(sender, e) /// <summary> /// 그리드 컨트롤 데이터 소스 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void gridControl_DataSourceChanged(object sender, EventArgs e) { this.gridView.Columns["OrderDate"].SummaryItem.SummaryType = SummaryItemType.Count; this.gridView.Columns["OrderDate"].DisplayFormat.FormatType = FormatType.DateTime; this.gridView.Columns["Country"].Group(); this.gridView.Columns["City"].Group(); this.gridView.Columns["ProductName"].Group(); this.gridView.ExpandAllGroups(); } #endregion } } |
▶ 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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
using System.Collections.Generic; using DevExpress.XtraEditors; using DevExpress.XtraPivotGrid; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : XtraForm { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 팝업 폼 /// </summary> private PopupForm popupForm; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.pivotGridControl.CellClick += pivotGridControl_CellClick; this.linqServerModeSource.QueryableSource = new DataClasses1DataContext().Invoices; SetPopupForm(); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 피벗 그리드 컨트롤 셀 클릭시 처리하기 - pivotGridControl_CellClick(sender, e) /// <summary> /// 피벗 그리드 컨트롤 셀 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void pivotGridControl_CellClick(object sender, PivotCellEventArgs e) { PivotGridControl pivotGridControl = sender as PivotGridControl; if(this.popupForm.IsDisposed) { SetPopupForm(); } if(!pivotGridControl.IsAsyncInProgress) { pivotGridControl.CreateDrillDownDataSourceAsync ( e.ColumnIndex, e.RowIndex, 25, new List<string> { "ProductName","Quantity" }, result => { this.popupForm.DataSource = (PivotDrillDownDataSource)result.Value; } ); } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 팝업 폼 설정하기 - SetPopupForm() /// <summary> /// 팝업 폼 설정하기 /// </summary> private void SetPopupForm() { this.popupForm = new PopupForm(); this.popupForm.Show(); } #endregion } } |