即使我指定了自动换行,为什么我的 TextBlock 中的文本会向右延伸到画布之外?
<Window x:Class="WpfApplication6.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" SizeToContent="WidthAndHeight">
<DockPanel>
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal">
<Button Content="111"/>
<Button Content="222"/>
<Button Content="333"/>
<Button Content="444"/>
<Button Content="555"/>
</StackPanel>
<StackPanel DockPanel.Dock="Left">
<Button Content="One"/>
<Button Content="Two"/>
<Button Content="Three"/>
<Button Content="Four"/>
<Button Content="Five"/>
</StackPanel>
<Canvas Background="tan">
<TextBlock TextWrapping="Wrap">This is the content in this area here</TextBlock>
</Canvas>
</DockPanel>
</Window>
解决方案:谢谢,史蒂夫,做到了,我也添加了一个 ScrollViewer,很好:
<DockPanel>
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal">
<Button Content="111"/>
<Button Content="222"/>
<Button Content="333"/>
<Button Content="444"/>
<Button Content="555"/>
</StackPanel>
<StackPanel DockPanel.Dock="Left">
<Button Content="One" Click="Button_Click" />
<Button Content="Two"/>
<Button Content="Three"/>
<Button Content="Four"/>
<Button Content="Five"/>
</StackPanel>
<Grid Background="tan">
<ScrollViewer>
<TextBlock Name="mainArea" Padding="10" TextWrapping="Wrap">This is the content in this area here</TextBlock>
</ScrollViewer>
</Grid>
</DockPanel>