-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathDataTableGridModel.cs
75 lines (69 loc) · 2.11 KB
/
DataTableGridModel.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
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FastWpfGrid
{
public class DataTableGridModel : FastGridModelBase
{
private DataTable _dataSource;
public List<ExplicitColumnDefinition> ExplicitColumns;
public override int ColumnCount
{
get
{
if (ExplicitColumns != null) return ExplicitColumns.Count;
if (_dataSource != null) return _dataSource.Columns.Count;
return 0;
}
}
public override int RowCount
{
get { return _dataSource != null ? _dataSource.Rows.Count : 0; }
}
public override string GetCellText(int row, int column)
{
if (_dataSource != null && row < _dataSource.Rows.Count)
{
if (ExplicitColumns != null)
{
if (column < ExplicitColumns.Count)
{
object value = _dataSource.Rows[row][ExplicitColumns[column].DataField];
if (value != null) return value.ToString();
}
}
else
{
object value = _dataSource.Rows[row][column];
if (value != null) return value.ToString();
}
}
return "";
}
public override string GetColumnHeaderText(int column)
{
if (ExplicitColumns != null)
{
if (column < ExplicitColumns.Count) return ExplicitColumns[column].HeaderText;
return "";
}
if (_dataSource != null && column < _dataSource.Columns.Count)
{
return _dataSource.Columns[column].ColumnName;
}
return "";
}
public DataTable DataSource
{
get { return _dataSource; }
set
{
_dataSource = value;
NotifyRefresh();
}
}
}
}