私は、太字の 1 つの記事と 2 番目の通常の記事を必要とするページを開発しています。
テキストは非常に長くなる可能性があるため、ページのスクロール ビューが必要です。ページの例:
そして、これがContentである私のGrid.Rowのコードです:
<ScrollViewer Grid.Row="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Width="auto" Height="auto" Grid.Column="0" Grid.Row="0" Name="ArticleContent" />
</Grid>
</ScrollViewer>
このコードを実行すると、画面に何も表示されません