AvalonDock:使用 DocumentPane 绑定时,新 DocumentContent 项目的选项卡不可单击
我正在尝试将 DocumentPane 绑定到属性 ObservableCollection
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法通过使用 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.