In my Windows Phone application, I use RichTextBox to display content. But it only displays the beginning of this, almost 2,000 pixels. and then an empty field. Is it possible to show all the content?
Update
Adding ScrollViewer doesn't help
<Grid Visibility="{Binding ItemVisibility}" Margin="0,-25,0,0" Width="480" Background="#dcdcdc">
<ScrollViewer Margin="0,0,0,0" VerticalAlignment="Top" Height="Auto" MinHeight="730">
<RichTextBox x:Name="Browser" IsReadOnly="True" Foreground="Black" Height="Auto" Logic:RichTextBoxHelper.Html="{Binding BrowserHtml}" HorizontalAlignment="Left" Width="430" Margin="0,0,0,0" AcceptsReturn="True" VerticalScrollBarVisibility="Visible" />
</ScrollViewer>
</Grid>
source
share