微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/csharp/95877.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐