如果窗口最小化,WPF RichTextBox滚动不起作用

时间:2014-10-09 09:37:49

标签: c# wpf xaml scroll richtextbox

我需要以下滚动行为,但这仅在窗口未最小化时才有效。即使窗口最小化,是否有可行的解决方案?

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>

1 个答案:

答案 0 :(得分:0)

也在窗口的ScrollToEnd事件中调用StateChanged。所以当窗口从最小化状态返回时就完成了。