Auto scroll doesnt work with a changing DumpContainer
Updating content of a DumpContainer doesn't trigger an auto scroll.
Run this code in c# statements or c# program mode:
Util.AutoScrollResults = true;
var container = new DumpContainer().Dump();
var builder = new StringBuilder();
while (true)
{
container.Content = builder
.AppendLine($"{DateTime.Now:fff}")
.ToString();
Thread.Sleep(150);
}
3
votes
Xiao
shared this idea