Thursday, July 21, 2016

wpf rtb ScrollToEnd not working

this is a workaround


  _textbox.Focus();
                 
                    TextPointer caretPos = _textbox.CaretPosition;
                    caretPos = caretPos.DocumentEnd;
                    _textbox.CaretPosition = caretPos;

No comments:

Post a Comment