我有一个实时加载数据的ToolStripStatusLabel,有太多的信息通过,以至于变得不可读。
有没有双缓冲功能?我尝试了以下方法:
public static void DoubleBufferedToolStripStatusLabel(this ToolStripStatusLabel tssl, bool setting)
{
Type dgvType = tssl.GetType();
PropertyInfo pi = dgvType.GetProperty("DoubleBuffered",
BindingFlags.Instance | BindingFlags.NonPublic);
pi.SetValue(tssl, setting, null);
}
只每秒更新一次,而不是每次需要更新时更新怎么样?
DateTime _lastUpdated = DateTime.MinValue;
void UpdateStatusLabel(string text)
{
if(DateTime.Now > _lastUpdate)
{
ToolStripStatusLabel.Text = text;
_lastUpdate = DateTime.Now + TimeSpan.FromSeconds(1);
}
}