0

我想使用(如果可以使用)将所选项目从 中添加TreeViewListBox控件中。DataBindingDataBinding

<TreeView HorizontalAlignment="Left" 
          Margin="30,32,0,83" 
          Name="treeView1" 
          Width="133" >

</TreeView>
<ListBox VerticalAlignment="Top" 
         Margin="208,36,93,0" 
         Name="listBox1" 
         Height="196" >       
</ListBox>

TreeView从页面后面的代码中填充一些虚拟数据。

4

2 回答 2

1

您可以使用 ElementName 绑定到元素,因此如果要将选定的树项绑定到 ListBox 的 ItemsSource:

ItemsSource="{Binding SelectedItem, ElementName=treeView1}"
于 2008-09-11T05:09:39.397 回答
0

我很确定这是可能的,因为 WPF 在数据绑定方面非常灵活,但我还没有完成那个特定的场景。

最近,我一直在关注 MSDN 博客中的WPF 数据绑定常见问题解答,它提供了许多可能会有所帮助的见解。

于 2008-09-10T16:52:36.330 回答