c# – 在特定情况下自动滚动列表框

前端之家收集整理的这篇文章主要介绍了c# – 在特定情况下自动滚动列表框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
添加新项目后,如何自动滚动列表框,但只有在添加项目之前滚动条位于底部

解决方法

此示例代码可以帮助您.我已经用一个TextBox做了很多次,但花了一些时间来找出一个ListBox

显然,它只是一个带有Button和ListBox的窗体.修改以适应您的需求:

private void button1_Click(object sender,EventArgs e)
{
    listBox1.Items.Add("Some Text " + listBox1.Items.Count.ToString());

    //The max number of items that the listBox can display at a time
    int NumberOfItems = listBox1.ClientSize.Height / listBox1.ItemHeight;

    if (listBox1.TopIndex == listBox1.Items.Count - NumberOfItems - 1)
    {
        //The item at the top when you can just see the bottom item
        listBox1.TopIndex = listBox1.Items.Count - NumberOfItems + 1;
    }
}
原文链接:https://www.f2er.com/csharp/95877.html

猜你在找的C#相关文章