我在记事本中编写了简单的 xaml 文件:
<FlowDocument AllowDrop="True"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"><Paragraph />
<BlockUIContainer><Button Tag="another.xaml">Next...</Button>
</BlockUIContainer></FlowDocument>
该文件包含 BlockUIContainer,里面有 Button。按钮还具有包含对另一个 xaml 文件的引用的标记属性。当我将 xaml 文件加载到 FlowDocumentScrollViewer 时,我想单击按钮并在同一个 FlowDocumentScrollViewer 中加载另一个.xaml。我怎样才能做到这一点?我怀疑我需要搜索我的按钮,但我不知道如何。