gpt4 book ai didi

c# - 从所有 datagridview 中删除空行

转载 作者:行者123 更新时间:2023-12-02 17:54:15 25 4
gpt4 key购买 nike

这样我就可以从一个 datagridview 中删除空行。

bool Empty = true;

for (int i = 0; i < PrimaryRadGridView.Rows.Count; i++)
{
Empty = true;
for (int j = 0; j < PrimaryRadGridView.Columns.Count; j++)
{
if (PrimaryRadGridView.Rows[i].Cells[j].Value != null && PrimaryRadGridView.Rows[i].Cells[j].Value.ToString() != "")
{
Empty = false;
break;
}
}
if (Empty)
{
PrimaryRadGridView.Rows.RemoveAt(i);
}
}

我有大约 6 个 datagridview,我想删除所有的空行。

有没有办法从界面中的所有datagridview中删除空行?

最佳答案

您可以创建一个方法

private void clearGrid(DataGridView view) {
for (int row = 0; row < view.Rows.Count; ++row) {
bool isEmpty = true;
for (int col = 0; col < view.Columns.Count; ++col) {
object value = view.Rows[row].Cells[col].Value;
if (value != null && value.ToString().Length > 0) {
isEmpty = false;
break;
}
}
if (isEmpty) {
// deincrement (after the call) since we are removing the row
view.Rows.RemoveAt(row--);
}
}
}

并将 6 个 DataGridView 中的每一个传递给该方法。

clearGrid(PrimaryRadGridView);

关于c# - 从所有 datagridview 中删除空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12910369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com