I have a problem. I have a text block and my text is clipped. It seems that this only appears when the text is too long, when the text is shorter, there is no problem.
So there is my code:
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> <Grid.RowDefinitions> <RowDefinition Height="150" /> <RowDefinition Height="447*" /> </Grid.RowDefinitions> <Image Grid.Row="0" Source="{Binding TheContent.PathPicture}" /> <ScrollViewer Grid.Row="1"> <Grid> <TextBlock Text="{Binding TheContent.Text}" TextWrapping="Wrap" FontSize="24" /> </Grid> </ScrollViewer> </Grid>
The text looks like this:

Is the only solution to summarize my content?
source share