AvalonDock:使用 DocumentPane 绑定时,新 DocumentContent 项目的选项卡不可单击

发布于 2024-12-10 14:21:25 字数 498 浏览 0 评论 0原文

我正在尝试将 DocumentPane 绑定到属性 ObservableCollectionDocumentContent,使用下面的 xaml。

<ad:DocumentPane Name="documentPane" ShowHeader="True" ItemsSource="{Binding Path=DocumentContent, Mode=OneWay}"></ad:DocumentPane>

我的问题是,当新的 DocumentContent 对象添加到 ObservableCollection 时,它会正确地将选项卡添加到 DocumentPane,但该选项卡不可单击。

在切换到数据绑定之前,我使用的是 document.Items.Add( new DocumentContent() ),它按预期工作。

有谁知道为什么如果通过数据绑定添加选项卡将无法单击?

I'm trying to bind a DocumentPane to the property ObservableCollection<DocumentContent> DocumentContent, using the xaml below.

<ad:DocumentPane Name="documentPane" ShowHeader="True" ItemsSource="{Binding Path=DocumentContent, Mode=OneWay}"></ad:DocumentPane>

My problem is that when a new DocumentContent object is added to the ObservableCollection, it adds the tab to the DocumentPane correctly, but the tab is not clickable.

Before I switched to data binding I was using document.Items.Add( new DocumentContent() ), which worked as expected.

Does anyone have any ideas why the tabs would not be clickable if they're added via data binding?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦巷 2024-12-17 14:21:25

我设法通过使用 DocumentsSource 而不是 ItemsSource 将 Binding 移动到父 DockingManager 元素来解决此问题。相当违反直觉,但它确实有效。

I managed to fix this by moving the Binding to the parent DockingManager element, using DocumentsSource instead of ItemsSource. Fairly counter-intuitive, but it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文