具有动态内容的 FlowDocument (BlockUIContainer)
我在记事本中编写简单的 xaml 文件:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"><段落/>
该文件包含 BlockUIContainer,其中包含 Button。 Button 还具有 Tag 属性,其中包含对另一个 xaml 文件的引用。 当我将 xaml 文件加载到 FlowDocumentScrollViewer 时,我想单击按钮并在同一个 FlowDocumentScrollViewer 中加载 another.xaml。我该怎么做?我怀疑我需要搜索我的按钮,但我不知道如何。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将 ContentControl 添加到 XAML 文档,则可以将另一个控件插入到内容中。您可以将 ContentControl 的 Content 属性绑定到 another.xaml 并将 ContentControl 设置为默认隐藏,然后使其在 Button OnClick 事件处理程序中可见,或者您可以让 ContentControl 始终可见并仅设置其 Content Button OnClick 事件处理程序中的属性。
If you add a ContentControl to your XAML document, you can insert another control into the content. You can either bind the Content property of the ContentControl to another.xaml and set the ContentControl to be hidden by default, then make it visible in the Button OnClick event handler, or you can have the ContentControl visible all the time and just set its Content property in your Button OnClick event handler.