VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > 简明python教程 >
  • Winform ListBox输出信息并自动滚动至底部

应用场景:ListBox作为软件信息的输出框。

复制代码
//ListBox输出信息
internal void SetListBoxMessage(string str)
{
   if (this.MessageListBox.InvokeRequired)
   {
      Action<string> actionDelegate = (x) =>
      {
         MessageListBox.Items.Add(str);
         MessageListBox.TopIndex = MessageListBox.Items.Count - (int)(MessageListBox.Height / MessageListBox.ItemHeight);
      };
      this.MessageListBox.Invoke(actionDelegate, str);
   }
   else
   {
      MessageListBox.Items.Add(str);
      MessageListBox.TopIndex = MessageListBox.Items.Count - (int)(MessageListBox.Height / MessageListBox.ItemHeight);
   }
}
复制代码

 


相关教程