我想让Textbox
在文本更新时自动滚动到底部,但似乎Silverlight中没有这样的方法。在Windows窗体中,我会这样做:
textbox_txt.SelectionStart = textbox_txt.Text.Length;
textbox_txt.ScrollToCaret();
在Windows Presentation Foundation中,我会这样做:
textbox_txt.SelectionStart = textbox_txt.Text.Length;
textbox_txt.ScrollToEnd();
现在我在Silverlight中如何做到这一点?在任何地方都没有这样的滚动方法。