我有点 WPF/XAML 新手,所以这可能是一个非常明显的问题。
我在 FlowDocument 类型的项目中添加了一个新项目。让我们称之为CrappyFlowDocument.xaml
:
<FlowDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
ColumnWidth="400" FontSize="14" FontFamily="Georgia">
<Paragraph>
Woo, my first paragraph!
</Paragraph>
</FlowDocument>
我把它放在一个单独的文件中,因为我想避免在我的PrettyInfoWindow
.
现在,在我的PrettyInfoWindow
,我很难过。
<FlowDocumentScrollViewer x:Name="flowDocViewer" Margin="0,0,0,0" Background="#FF414141" Zoom="80" VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Disabled" IsSelectionEnabled="False">
<!-- What do I put here-abouts to get my CrappyFlowDocument.xaml to show? -->
</FlowDocumentScrollViewer>
我在网上找不到任何关于这种“包含”功能的信息,但可能我的搜索结果很糟糕。如果这不是 FlowDocument.xaml 文件的预期目的,那是什么?