博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#使用Linq对DataGridView进行模糊查找
阅读量:6672 次
发布时间:2019-06-25

本文共 1634 字,大约阅读时间需要 5 分钟。

 针对DataGridView中已进行过数据绑定,即已向DataGridView中添加了一些数据,可以结合Linq查询,并让匹配查询的行高亮显示,如下图:

  

  具体实现如下:

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Windows.Forms;  
  5.   
  6. namespace Maxes_PC_Client 
  7. {  
  8.     public partial class frmWelcome : Form 
  9.    {  
  10.         private int beforeMatchedRowIndex = 0;  
  11.   
  12.         public frmWelcome()  
  13.         {  
  14.             InitializeComponent();  
  15.         }  
  16.   
  17.         private void frmWelcome_Load(object sender, EventArgs e)
  18.        {  
  19.             this.dataGridViewInit();  
  20.         }  
  21.   
  22.         /// <summary>  
  23.         /// DataGridView添加数据、初始化  
  24.         /// </summary>  
  25.         private void dataGridViewInit()
  26.        {  
  27.             Dictionary<String, String> map = new Dictionary<String, String>();  
  28.             map.Add("Lily", "22");  
  29.             map.Add("Andy", "25");  
  30.             map.Add("Peter", "24");  
  31.   
  32.             // 在这里必须创建一个BindIngSource对象,用该对象接收Dictionary<T, K>泛型集合的对象  
  33.             BindingSource bindingSource = new BindingSource();  
  34.             // 将泛型集合对象的值赋给BindingSourc对象的数据源  
  35.             bindingSource.DataSource = map;  
  36.   
  37.             this.dataGridView.DataSource = bindingSource;  
  38.         }  
  39.   
  40.         private void SearchButton_Click(object sender, EventArgs e) 
  41.         {  
  42.             if (this.KeyWord.Text.Equals("")) 
  43.            {  
  44.                 return;  
  45.             }  
  46.   
  47.             // Linq模糊查询  
  48.             IEnumerable<DataGridViewRow> enumerableList = this.dataGridView.Rows.Cast<DataGridViewRow>();  
  49.             List<DataGridViewRow> list = (from item in enumerableList  
  50.                                           where item.Cells[0].Value.ToString().IndexOf(this.KeyWord.Text) >= 0  
  51.                                           select item).ToList();  
  52.   
  53.             // 恢复之前行的背景颜色为默认的白色背景  
  54.             this.dataGridView.Rows[beforeMatchedRowIndex].DefaultCellStyle.BackColor = System.Drawing.Color.White;  
  55.   
  56.             if (list.Count > 0)
  57.            {  
  58.                 // 查找匹配行高亮显示  
  59.                 int matchedRowIndex = list[0].Index;  
  60.                 this.dataGridView.Rows[matchedRowIndex].DefaultCellStyle.BackColor = System.Drawing.Color.Yellow;  
  61.                 this.beforeMatchedRowIndex = matchedRowIndex;  
  62.             }  
  63.         }  
  64.     }  
  65. }  

转载于:https://www.cnblogs.com/lgx5/p/7544681.html

你可能感兴趣的文章
Linux基础
查看>>
升级到FTK 4.0.2可免费使用可视化分析模块30天
查看>>
怎样做好DNS服务器的保护
查看>>
Java对象创建时的初始化顺序
查看>>
linux bash环境变量简单总结
查看>>
前端 调试小技巧
查看>>
JAVA 读取配置文件
查看>>
MySQL之高可用MHA部署
查看>>
redhat下搭建jdk+tomcat环境
查看>>
hiho1530(扩展欧几里得求模逆元)
查看>>
将php数组转js数组,js如何接收PHP数组,json的用法
查看>>
代码的坏味道
查看>>
node概览和安装
查看>>
HDU 2017 多校联合Contest 4
查看>>
.部署MYSQL集群 --测试
查看>>
windows下mysql 控制台操作
查看>>
程序员怎么把自己的招牌打出去?
查看>>
G.Longest Palindrome Substring
查看>>
gdb个人使用记录
查看>>
c++ set和pair 的结合使用
查看>>