在我的C#(2010)应用程序中,我在虚拟模式下有一个DataGridView,它拥有数千行。是否有可能找出目前在屏幕上的哪些细胞?
答案 0 :(得分:29)
public void GetVisibleCells(DataGridView dgv)
{
var visibleRowsCount = dgv.DisplayedRowCount(true);
var firstDisplayedRowIndex = dgv.FirstDisplayedCell.RowIndex;
var lastvisibleRowIndex = (firstDisplayedRowIndex + visibleRowsCount) - 1;
for (int rowIndex = firstDisplayedRowIndex; rowIndex <= lastvisibleRowIndex; rowIndex++)
{
var cells = dgv.Rows[rowIndex].Cells;
foreach (DataGridViewCell cell in cells)
{
if (cell.Displayed)
{
// This cell is visible...
// Your code goes here...
}
}
}
}
已更新:现在找到了可见的单元格。
答案 1 :(得分:1)
我自己没有尝试过,但在我看来,使用DataGridView.GetRowDisplayRectangle确定行的矩形并检查它是否与当前DataGridView.DisplayRectangle重叠将是最佳选择。 Rectangle.IntersectsWith对此非常有用。
作为优化,我会在找到第一个可见行后使用DataGridView .DisplayedRowCount来确定哪些行可见。
答案 2 :(得分:0)
private bool RowIsVisible(DataGridViewRow row)
{
DataGridView dgv = row.DataGridView;
int firstVisibleRowIndex = dgv.FirstDisplayedCell.RowIndex;
int lastVisibleRowIndex = firstVisibleRowIndex + dgv.DisplayedRowCount(false) - 1;
return row.Index >= firstVisibleRowIndex && row.Index <= lastVisibleRowIndex;
}
恕我直言 问候