The RichTextBox
component in my WPF app is populated using a FlowDocument
and the RichTextBox
's Document
property.
rtb.ScrollToEnd();
doesn't seem to do anything, and i've even tried calling BringIntoView()
on the last "row" added to the table that structures my FlowDocument
.
Any Suggestions? Thanks!