我需要以下滚动行为,但这仅在窗口未最小化时才有效。即使窗口最小化,是否有可行的解决方案?
C#
private void richTextBox_TextChanged(object sender, TextChangedEventArgs e)
{
if (richTextBox.VerticalOffset + richTextBox.ViewportHeight >= richTextBox.ExtentHeight)
{
richTextBox.ScrollToEnd();
}
}
XAML
<Grid>
<RichTextBox Name="richTextBox" IsReadOnly="True" VerticalScrollBarVisibility="Auto" TextChanged="richTextBox_TextChanged">
<RichTextBox.Resources>
<Style TargetType="{x:Type Paragraph}">
<Setter Property="Margin" Value="0"/>
</Style>
</RichTextBox.Resources>
</RichTextBox>
</Grid>
答案 0 :(得分:0)
也在窗口的ScrollToEnd
事件中调用StateChanged
。所以当窗口从最小化状态返回时就完成了。