我正在开发一个页面,需要 1 篇粗体文章和第二篇正常文章。
文本可能很长,所以我需要页面的滚动视图。页面示例:
这是我的 Grid.Row 的代码,即 Content:
<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>
当我运行此代码时 - 屏幕上什么也没有