检查滚动条是否在datagridview中可见
本文关键字:datagridview 滚动条 是否 检查 | 更新日期: 2023-09-27 18:10:57
我想显示的东西,如果数据网格视图很长,并显示一个滚动条,但不知道如何检查滚动条是否可见。我不能简单地添加行,因为有些可能不可见。我不能使用事件,因为我的代码已经在一个事件
你可以试试:
foreach (var scroll in dataGridView1.Controls.OfType<VScrollBar>())
{
//your checking here
//specifically... if(scroll.Visible)
}
我更喜欢这个:
//modif is a modifier for the adjustment of the Client size of the DGV window
//getDGVWidth() is a custom method to get needed width of the DataGridView
int modif = 0;
if (DataGridView.Controls.OfType<VScrollBar>().First().Visible)
{
modif = SystemInformation.VerticalScrollBarWidth;
}
this.ClientSize = new Size(getDGVWidth() + modif, [wantedSizeOfWindow]);
所以你唯一需要的布尔条件是:
if (DataGridView.Controls.OfType<VScrollBar>().First().Visible)
{
//want you want to do
}
DataGridView
的Scrollbars
属性可以使用ScrollBars
枚举进行质疑,方法是用您感兴趣的枚举来掩盖它,如下所示:
if ((dataGridView1.ScrollBars & ScrollBars.Vertical) != ScrollBars.None) ...
注意,这里的两个"滚动条"是不同的东西!
terrybozzio的答案仅在使用System.Linq
名称空间时有效。不使用System.Linq
的解决方案如下所示:
foreach (var Control in dataGridView1.Controls)
{
if (Control.GetType() == typeof(VScrollBar))
{
//your checking here
//specifically... if (((VScrollBar)Control).Visible)
}
}
要确定是否存在垂直滚动条,您需要检查您的可见行有多高,并与datagridview高度进行比较。
if(dgv1.Height > dgv1.Rows.GetRowsHeight(DataGridViewElementStates.Visible))
{
// Scrollbar not visible
}
else
{
// Scrollbar visible
}
虽然更确切地说,您可能需要包括列宽度检查,因为水平滚动条的存在可能会创建一个垂直滚动条,否则不存在