How do you scroll to the bottom of a TextBox for a UWP app?
With my transition to UWP, this has been one of the questions that hasn\'t been straight-forward.
If anyone needs to scroll to the bottom of a TextBox in UWP apps:
https://code.msdn.microsoft.com/windowsapps/How-to-scroll-to-the-a8ea5867
private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
var grid = (Grid)VisualTreeHelper.GetChild(textBox1, 0);
for (var i = 0; i <= VisualTreeHelper.GetChildrenCount(grid) - 1; i++)
{
object obj = VisualTreeHelper.GetChild(grid, i);
if (!(obj is ScrollViewer)) continue;
((ScrollViewer)obj).ChangeView(0.0f, ((ScrollViewer)obj).ExtentHeight, 1.0f);
break;
}
}
}
where textBox1 is the TextBox you want to scroll to the bottom.