VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > c#编程 >
  • C#教程之DevExpress实现GridControl同步列头checkbox与列

这篇文章主要介绍了DevExpress实现GridControl同步列头checkbox与列中checkbox状态,需要的朋友可以参考下

本文实例展示了DevExpress实现GridControl同步列头checkbox与列中checkbox状态的方法,有一定的实用价值,具体方法如下:

主要功能代码如下:

?
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
/// <summary>
/// 同步列头checkbox与列中checkbox状态
/// </summary>
/// <param name="view">GridView</param>
/// <param name="fieldeName">需要绘制Checkbox的列名</param>
/// <param name="e">MouseEventArgs</param>
public static void SyncCheckStatus(this GridView view, string fieldeName, MouseEventArgs e)
{
  /*说明:
   *在MouseDown事件中使用
   *参考:https://www.devexpress.com/Support/Center/Question/Details/Q354489
   *eg:
   *private void gvLampConfig_MouseDown(object sender, MouseEventArgs e)
   *{
   *GridView _view = sender as GridView;
   *_view.SyncCheckStatus(gcCheckFieldName, e);
   *}
   */
  if (e.Clicks == 1 && e.Button == MouseButtons.Left)
  {
 view.ClearSorting();
 view.PostEditor();
 GridHitInfo _info;
 Point _pt = view.GridControl.PointToClient(Control.MousePosition);
 _info = view.CalcHitInfo(_pt);
 if (_info.InColumn && _info.Column.FieldName.Equals(fieldeName))
 {
   if (getCheckedCount(view, fieldeName) == view.DataRowCount)
 UnChekAll(view, fieldeName);
   else
 CheckAll(view, fieldeName);
 }
  }
}
private static int getCheckedCount(GridView view, string filedName)
{
  int count = 0;
  for (int i = 0; i < view.DataRowCount; i++)
  {
 object _cellValue = view.GetRowCellValue(i, view.Columns[filedName]);
 //if (_cellValue != null && !(_cellValue is DBNull))
 if (_cellValue == null) continue;
 if (string.IsNullOrEmpty(_cellValue.ToString().Trim())) continue;
 bool _checkStatus = false;
 if (bool.TryParse(_cellValue.ToString(), out _checkStatus))
 {
   //if ((bool)_cellValue)
   if (_checkStatus)
 count++;
 }
  }
  return count;
}
private static void CheckAll(GridView view, string fieldName)
{
  for (int i = 0; i < view.DataRowCount; i++)
  {
 view.SetRowCellValue(i, view.Columns[fieldName], true);
  }
}
private static void UnChekAll(GridView view, string fieldName)
{
  for (int i = 0; i < view.DataRowCount; i++)
  {
 view.SetRowCellValue(i, view.Columns[fieldName], false);
  }
}

代码使用方法如下:

?
1
2
3
4
5
private void gvLampConfig_MouseDown(object sender, MouseEventArgs e)
{
  GridView _view = sender as GridView;
  _view.SyncCheckStatus(gcCheckFieldName, e);
}

代码运行效果如下:



相关教程