标签:comm top 直接 listbox code str time box tostring
在我们使用ListBox控件时,如果我们在里面不断的添加一条条数据,但是在我们添加的数据过多超过了ListBox显示的窗口时(此时会产生滑动条),
发现我们无法看到最新添加的数据。实现倒序显示此处有两种方法:
1 listBox1.Items.Add(DateTime.Now.ToString("hh:mm:ss")); 2 listBox1.TopIndex = listBox1.Items.Count - 1;
1 listBox1.Items.Insert(0,DateTime.Now.ToString("hh:mm:ss"));
标签:comm top 直接 listbox code str time box tostring
原文地址:https://www.cnblogs.com/oysterlxk/p/10463436.html