C#使用Linq對DataGridView進行模糊查找


 針對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. }  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM