在组合框WPF里面的Treeview

时间:2014-03-26 01:40:50

标签: c# wpf xaml

我在组合框中有一个树形视图 当我从树视图中选择一个项目时,组合框显示如下 “System.Windows.Controls.TreeView Items.Count:13”

如何更改ComboBox的SelectedItem属性,以便我可以显示正确的属性。我基本上希望选择的TreeViewItem设置ComboBox的SelectedItem。这是我的xaml。

<ComboBox Name="CB" DropDownClosed="destTb_DropDownClosed">
    <ComboBox.Resources>
        <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
    </ComboBox.Resources>
    <TreeView  Background="Transparent" Name="TV" 
                ItemsSource="{Binding FirstGroup}" 
                SelectedItemChanged="TV_SelectedItemChanged">
         <TreeView.ItemTemplate>
            <HierarchicalDataTemplate ItemsSource="{Binding Members}" >
               <Grid>
                  <TextBlock Text="{Binding Name}" />
               </Grid>
            </HierarchicalDataTemplate>
          </TreeView.ItemTemplate>
     </TreeView>
</ComboBox>

0 个答案:

没有答案