C#!怎么在DataGridView中进行查询

DataGridView的名字为Dgv,文本框名字为:Text.按钮名字为;Button.点击按钮后,查询出来.谢谢... DataGridView的名字为Dgv,文本框名字为:Text.按钮名字为;Button.
点击按钮后,查询出来.谢谢
展开
 我来答
xiangjuan314
2016-01-06 · TA获得超过3.3万个赞
知道大有可为答主
回答量:2.9万
采纳率:0%
帮助的人:2831万
展开全部

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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Maxes_PC_Client {
    public partial class frmWelcome : Form {
        private int beforeMatchedRowIndex = 0;
        public frmWelcome()
        {
            InitializeComponent();
        }
        private void frmWelcome_Load(object sender, EventArgs e) {
            this.dataGridViewInit();
        }
        /// <summary>
        /// DataGridView添加数据、初始化
        /// </summary>
        private void dataGridViewInit() {
            Dictionary<String, String> map = new Dictionary<String, String>();
            map.Add("Lily", "22");
            map.Add("Andy", "25");
            map.Add("Peter", "24");
            // 在这里必须创建一个BindIngSource对象,用该对象接收Dictionary<T, K>泛型集合的对象
            BindingSource bindingSource = new BindingSource();
            // 将泛型集合对象的值赋给BindingSourc对象的数据源
            bindingSource.DataSource = map;
            this.dataGridView.DataSource = bindingSource;
        }
        private void SearchButton_Click(object sender, EventArgs e) {
            if (this.KeyWord.Text.Equals("")) {
                return;
            }
            // Linq模糊查询
            IEnumerable<DataGridViewRow> enumerableList = this.dataGridView.Rows.Cast<DataGridViewRow>();
            List<DataGridViewRow> list = (from item in enumerableList
                                          where item.Cells[0].Value.ToString().IndexOf(this.KeyWord.Text) >= 0
                                          select item).ToList();
            // 恢复之前行的背景颜色为默认的白色背景
            this.dataGridView.Rows[beforeMatchedRowIndex].DefaultCellStyle.BackColor = System.Drawing.Color.White;
            if (list.Count > 0) {
                // 查找匹配行高亮显示
                int matchedRowIndex = list[0].Index;
                this.dataGridView.Rows[matchedRowIndex].DefaultCellStyle.BackColor = System.Drawing.Color.Yellow;
                this.beforeMatchedRowIndex = matchedRowIndex;
            }
        }
    }
}
ZESTRON
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸... 点击进入详情页
本回答由ZESTRON提供
百度网友1264347
推荐于2016-06-10 · 超过30用户采纳过TA的回答
知道答主
回答量:78
采纳率:0%
帮助的人:79.2万
展开全部
string cmd = "select * from 表名 where 查询条件='"+Text.Text+"'";
SqlCommand sql = new SqlCommand(cmd);
sql.Connection = new Connectiong("Data Source=机器名;Initial Catalog=数据库名;Integrated Security=True");
try
{
sql.Connection.Open();
SqlDataAdapter adapter = new SqlDataAdapter();
DataSet DS = new DataSet();

adapter.SelectCommand = sql;
adapter.Fill(DS);
dataGridView1.DataSource = DS.Tables[0];
}
catch (SqlException o)
{
MessageBox.Show(o.Message, "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
finally
{
sql.Connection.Close();
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友e7a83144a
2008-04-11 · TA获得超过129个赞
知道小有建树答主
回答量:143
采纳率:0%
帮助的人:152万
展开全部
你这个问题有点没说清楚
DataGridView的数据如果来自数据库的话
你直接去数据库查询然后用DataGridView显示查询结果就好了
不用去DataGridView中查询吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式