Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TextBox.ScrollToEnd doesn't work when the TextBox is in a non-active tab

Our application starts several background processes and put their output into TextBoxes - each in a separate TabItem in a TabControl. I want the TextBoxes to automatically scroll to show the last output line, so in the data handling function that adds the output/error line to the text box, I also call TextBox.ScrollToEnd():

void OnServerProcessOutputDataReceived(object sender, DataReceivedEventArgs e)
{
    if (e.Data != null)
    {
        Dispatcher.Invoke(new Action(() =>
            {
                TextBox tb = getServerProcessOutputTextBox(sender);
                if (tb != null)
                {
                    tb.AppendText(e.Data + Environment.NewLine);
                    tb.ScrollToEnd();
                }
            }));
    }
}

This works great for the TextBox in the active tab, but when I switch to another tab, I see that it wasn't scrolled down to the end.

Is this a known problem? Is there a way to fix it?

like image 737
splintor Avatar asked Dec 10 '22 18:12

splintor


1 Answers

Set the CaretIndex:

   if (tb != null) 
   { 
       tb.AppendText(e.Data + Environment.NewLine); 
       tb.CaretIndex = tb.Text.Length;
       tb.ScrollToEnd(); 
   } 
like image 115
Reydon Ace Avatar answered Feb 23 '23 00:02

Reydon Ace