C# ListBox实现显示插入最新的数据的方法
作者:互联网
在我们使用ListBox控件时,如果我们在里面不断的添加一条条数据,但是在我们添加的数据过多超过了ListBox显示的窗口时(此时会产生滑动条),
发现我们无法看到最新添加的数据。实现倒序显示此处有两种方法:
第一种,使用listBox.Items.Add("字符串"),之后加上一句代码 这种方法会让数据向上移动,下方会一直显示最新数据1 listBox1.Items.Add(DateTime.Now.ToString("hh:mm:ss")); 2 listBox1.TopIndex = listBox1.Items.Count - 1;第二种方法是使用listBox.Items.Insert(int a,string str),直接从最前面插入数据 这种方法会让数据向下移动,上方会一直显示最新数据。
1 listBox1.Items.Insert(0,DateTime.Now.ToString("hh:mm:ss"));
标签:C#,数据,方法,插入,最新,listBox1,Items,ListBox 来源: https://www.cnblogs.com/oysterlxk/p/10463436.html