在我的Windows Phone應用程序中,我使用RichTextBox來顯示內容。但它只顯示它的開頭,近2000像素。然後有一個空的領域。是否可以顯示所有內容?RichTextBox最大尺寸限制?
更新
添加的ScrollViewer不利於
<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>
那麼,有沒有辦法我可以解決這個問題? – revolutionkpi
看看這個問題的一些好建議... http://stackoverflow.com/questions/8573038/wp7-scrollviewer-bug-when-content-height-2000px – ZombieSheep