Maximum RichTextBox Size Limit?

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>
+5
source share
2 answers

The maximum display size of any control in WP7 is 2048 x 2048 px, so if you are in this limit, you will encounter such problems.

+3
source

2048x2048 . , , (.. TextBlock). , google.

0

All Articles