■ DataGrid 클래스에서 대용량 데이터를 바인딩하는 방법을 보여준다.
▶ ItemCountEventArgs.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 |
using System; namespace TestProject { /// <summary> /// 항목 카운트 이벤트 인자 /// </summary> public class ItemCountEventArgs : EventArgs { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 뷰 /// </summary> private DataGridCollectionView view; /// <summary> /// 카운트 /// </summary> private int count = 0; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 카운트 - Count /// <summary> /// 카운트 /// </summary> public int Count { get => this.count; set => this.count = value; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - ItemCountEventArgs(view) /// <summary> /// 생성자 /// </summary> /// <param name="view">데이터 그리드 컬렉션 뷰</param> public ItemCountEventArgs(DataGridCollectionView view) { this.view = view; } #endregion } } |
▶ ItemListEventArgs.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 |
using System; using System.Collections.Generic; namespace TestProject { /// <summary> /// 항목 리스트 이벤트 인자 /// </summary> public class ItemListEventArgs : EventArgs { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Internal #region Field /// <summary> /// 뷰 /// </summary> private DataGridCollectionView view; /// <summary> /// 시작 인덱스 /// </summary> private int startIndex; /// <summary> /// 요청 항목 수 /// </summary> private int requestedItemCount; /// <summary> /// 항목 리스트 /// </summary> private IList<object> itemList; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Internal #region 항목 리스트 - ItemList /// <summary> /// 항목 리스트 /// </summary> internal IList<object> ItemList => this.itemList; #endregion ////////////////////////////////////////////////////////////////////////////////////////// Public #region 요청 항목 수 - RequestedItemCount /// <summary> /// 요청 항목 수 /// </summary> public int RequestedItemCount => this.requestedItemCount; #endregion #region 시작 인덱스 - StartIndex /// <summary> /// 시작 인덱스 /// </summary> public int StartIndex => this.startIndex; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - ItemListEventArgs(view, startIndex, requestedItemCount) /// <summary> /// 생성자 /// </summary> /// <param name="view">뷰</param> /// <param name="startIndex">시작 인덱스</param> /// <param name="requestedItemCount">요청 항목 수</param> public ItemListEventArgs(DataGridCollectionView view, int startIndex, int requestedItemCount) { this.view = view; this.startIndex = startIndex; this.requestedItemCount = requestedItemCount; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 항목 리스트 설정하기 - SetItemList(itemList) /// <summary> /// 항목 리스트 설정하기 /// </summary> /// <param name="itemList">항목 리스트</param> public void SetItemList(IList<object> itemList) { this.itemList = itemList; } #endregion } } |
▶ DataGridCollectionView.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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; using System.Windows.Data; namespace TestProject { /// <summary> /// 데이터 그리드 컬렉션 뷰 /// </summary> public class DataGridCollectionView : ListCollectionView { //////////////////////////////////////////////////////////////////////////////////////////////////// Event ////////////////////////////////////////////////////////////////////////////////////////// Public #region 항목 수 요청시 이벤트 - ItemCountRequest /// <summary> /// 항목 수 요청시 이벤트 /// </summary> public event Action<DataGridCollectionView, ItemCountEventArgs> ItemCountRequest = delegate { }; #endregion #region 항목 리스트 요청시 이벤트 - ItemListRequest /// <summary> /// 항목 리스트 요청시 이벤트 /// </summary> public event Action<DataGridCollectionView, ItemListEventArgs> ItemListRequest = delegate { }; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 페이지 크기 /// </summary> private const int PageSize = 20; /// <summary> /// 데이터 테이블 /// </summary> private DataTable dataTable; /// <summary> /// 데이터 행 딕셔너리 /// </summary> Dictionary<int, DataRow> dataRowDictionary = new Dictionary<int, DataRow>(); /// <summary> /// 잠금 여부 /// </summary> private bool isLocked = false; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 카운트 - Count /// <summary> /// 카운트 /// </summary> public override int Count { get { ItemCountEventArgs eventArgs = new ItemCountEventArgs(this); ItemCountRequest(this, eventArgs); return eventArgs.Count; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - DataGridCollectionView(list) /// <summary> /// 생성자 /// </summary> /// <param name="list">리스트</param> private DataGridCollectionView(IList list) : base(list) { } #endregion #region 생성자 - DataGridCollectionView(dataTable) /// <summary> /// 생성자 /// </summary> /// <param name="dataTable">데이터 테이블</param> public DataGridCollectionView(DataTable dataTable) : this(dataTable.DefaultView) { this.dataTable = dataTable; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 항목 구하기 - GetItemAt(index) /// <summary> /// 항목 구하기 /// </summary> /// <param name="index">인덱스</param> /// <returns>항목</returns> public override object GetItemAt(int index) { if(!this.dataRowDictionary.ContainsKey(index)) { if(this.isLocked) { return this.dataTable.NewRow(); } this.isLocked = true; Task.Factory.StartNew ( () => { try { int startIndex = index; ItemListEventArgs eventArgs = new ItemListEventArgs(this, startIndex, PageSize); ItemListRequest(this, eventArgs); if(eventArgs.ItemList == null) { return; } int i = 0; foreach(DataRow row in eventArgs.ItemList.OfType<DataRow>()) { int newIndex = startIndex + i; this.dataRowDictionary[newIndex] = row; i++; } Action action = () => Refresh(); Application.Current.Dispatcher.BeginInvoke(action); } catch(Exception) { } this.isLocked = false; } ); return this.dataTable.NewRow(); } return this.dataRowDictionary[index]; } #endregion } } |
▶ MainWindowViewModel.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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; namespace TestProject { /// <summary> /// 메인 윈도우 뷰 모델 /// </summary> public class MainWindowViewModel : INotifyPropertyChanged { //////////////////////////////////////////////////////////////////////////////////////////////////// Event ////////////////////////////////////////////////////////////////////////////////////////// Public #region 속성 변경시 이벤트 - PropertyChanged /// <summary> /// 속성 변경시 이벤트 /// </summary> public event PropertyChangedEventHandler PropertyChanged = delegate { }; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 카운트 /// </summary> private int count = 10000000; /// <summary> /// 데이터 테이블 /// </summary> private DataTable dataTable; /// <summary> /// 난수기 /// </summary> private Random random = new Random(); /// <summary> /// 컬렉션 뷰 /// </summary> private DataGridCollectionView collectionView; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 컬렉션 뷰 - CollectionView /// <summary> /// 컬렉션 뷰 /// </summary> public DataGridCollectionView CollectionView { get { return this.collectionView; } set { if(this.collectionView != value) { this.collectionView = value; FirePropertyChangedEvent(nameof(CollectionView)); } } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindowViewModel() /// <summary> /// 생성자 /// </summary> public MainWindowViewModel() { this.dataTable = new DataTable(); this.dataTable.Columns.Add("Column 1"); this.dataTable.Columns.Add("Column 2"); this.dataTable.Columns.Add("Column 3"); DataGridCollectionView collectionView = new DataGridCollectionView(dataTable); collectionView.ItemCountRequest += collectionView_ItemCountRequest; collectionView.ItemListRequest += collectionView_ItemListRequest; CollectionView = collectionView; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 컬렉션 뷰 항목 카운트 요청시 처리하기 - collectionView_ItemCountRequest(sender, e) /// <summary> /// 컬렉션 뷰 항목 카운트 요청시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void collectionView_ItemCountRequest(DataGridCollectionView sender, ItemCountEventArgs e) { e.Count = this.count; } #endregion #region 컬렉션 뷰 항목 리스트 요청시 처리하기 - collectionView_ItemListRequest(sender, e) /// <summary> /// 컬렉션 뷰 항목 리스트 요청시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void collectionView_ItemListRequest(DataGridCollectionView sender, ItemListEventArgs e) { int startIndex = e.StartIndex; int requestItemCount = e.RequestedItemCount; List<object> itemList = new List<object>(); for(int i = startIndex; i < startIndex + requestItemCount; i++) { DataRow row = dataTable.NewRow(); row[0] = i.ToString(); row[1] = random.Next(1000).ToString(); row[2] = random.Next(1000).ToString(); itemList.Add(row); } e.SetItemList(itemList); } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 속성 변경시 이벤트 발생시키기 - FirePropertyChangedEvent(propertyName) /// <summary> /// 속성 변경시 이벤트 발생시키기 /// </summary> /// <param name="propertyName">속성명</param> private void FirePropertyChangedEvent(string propertyName) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } #endregion } } |
▶ 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 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:TestProject" Width="800" Height="600" Title="DataGrid 클래스 : 대용량 데이터 바인딩하기" FontFamily="나눔고딕코딩" FontSize="16"> <Window.DataContext> <local:MainWindowViewModel /> </Window.DataContext> <Grid> <DataGrid AutoGenerateColumns="False" ItemsSource="{Binding CollectionView, Mode=OneWay}"> <DataGrid.Columns> <DataGridTextColumn Binding="{Binding Path=[0]}" Header="컬럼 1" /> <DataGridTextColumn Binding="{Binding Path=[1]}" Header="컬럼 2" /> <DataGridTextColumn Binding="{Binding Path=[2]}" Header="컬럼 3" /> </DataGrid.Columns> </DataGrid> </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 |
using System.Windows; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); } #endregion } } |