0

如何在 gridview 中搜索并仅在其中显示带有分页的结果,而不是在 gridview 中显示整个数据?

我写了这段代码来搜索:

foreach (DataGridViewRow row in Reserve_dataGridView.Rows)
        {
            if (row.Cells["Cardserial"].Value.ToString().Equals(textBox1.Text))
            {
                Reserve_dataGridView.Rows[row.Index].DefaultCellStyle.BackColor = Color.Yellow;
            }
4

1 回答 1

0

Rick Mohr有一个简单的答案,关于如何使用BindingNavigatorBindingSource来做到这一点。

您可能还想查看 CodeProject 上的其他一些文章/实现。

于 2013-07-21T07:57:41.457 回答