C# WPF MVVM树视图IsSelected绑定不工作

C# WPF MVVM树视图IsSelected绑定不工作,c#,wpf,xaml,mvvm,treeview,C#,Wpf,Xaml,Mvvm,Treeview,我有一个问题,我不明白为什么它不起作用。 我有一个带转换器的三级树状视图,它允许我反转两个第一级。 在这个树状视图中,我试图bing IsSelected属性,但由于一个原因,我不明白它在ViewModel中是从不调用的 这是xaml <TreeView Margin="0,0,0,0" Padding="0,7,0,7" BorderBrush="{x:Null}" Background="#FFF8FAFB" Name="BusinessCaseTreeView">

我有一个问题,我不明白为什么它不起作用。 我有一个带转换器的三级树状视图,它允许我反转两个第一级。 在这个树状视图中,我试图bing IsSelected属性,但由于一个原因,我不明白它在ViewModel中是从不调用的

这是xaml

<TreeView  Margin="0,0,0,0" Padding="0,7,0,7" BorderBrush="{x:Null}"  Background="#FFF8FAFB" Name="BusinessCaseTreeView">
    <TreeView.ItemContainerStyle>
        <Style TargetType="{x:Type TreeViewItem}">
            <Setter Property="IsSelected" Value="{Binding IsSelected, Mode=TwoWay}" />
        </Style>
    </TreeView.ItemContainerStyle>
    <TreeView.ItemsSource>
        <MultiBinding Converter="{converter:BusinessCasesConverter}">
            <Binding Path="BusinessCases"></Binding>
            <Binding Path="GroupByCreditor"></Binding>
        </MultiBinding>
    </TreeView.ItemsSource>
    <TreeView.Resources>
        <HierarchicalDataTemplate DataType="{x:Type converter:BusinessCaseTreeViewableFirst}" ItemsSource="{Binding SecondLevel}">
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding FirstLevel.Id}" Margin="10,0,0,0" Foreground="#FF03577A" FontWeight="Bold" />
                <TextBlock Text="-" Margin="5,0,0,0" Foreground="#FF03577A" FontWeight="Bold"/>
                <TextBlock Text="{Binding FirstLevel.FirstName}" Margin="5,0,0,0" FontWeight="Bold" Foreground="#FF03577A" />
                <TextBlock Text="{Binding FirstLevel.LastName}" Margin="5,0,0,0" FontWeight="Bold" Foreground="#FF03577A" />
            </StackPanel>
        </HierarchicalDataTemplate>
        <HierarchicalDataTemplate DataType="{x:Type converter:BusinessCaseTreeViewModelSecond}" ItemsSource="{Binding  BusinessCases}">
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding SecondLevel.Id}" Margin="10,0,0,0" Foreground="#FF095A7C" FontWeight="Bold" />
                <TextBlock Text="-" Margin="5,0,0,0" Foreground="#FF095A7C" FontWeight="Bold"/>
                <TextBlock Text="{Binding SecondLevel.FirstName}" Margin="5,0,0,0" FontWeight="Bold" Foreground="#FF095A7C" />
                <TextBlock Text="{Binding SecondLevel.LastName}" Margin="5,0,0,0" FontWeight="Bold" Foreground="#FF095A7C" />
            </StackPanel>
        </HierarchicalDataTemplate>
        <DataTemplate DataType="{x:Type business:BusinessCase}">
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="(" Margin="10,0,0,0" Foreground="#FF0B89BD" FontWeight="Bold" />
                <TextBlock Text="{Binding Id}" Margin="1,0,0,0" Foreground="#FF0B89BD" FontWeight="Bold" />
                <TextBlock Text=")" Margin="2,0,0,0" Foreground="#FF0B89BD" FontWeight="Bold"/>
                <TextBlock Text="{Binding CreationDate, StringFormat='{}{0:dd MMMM yyyy}'}" Margin="5,0,0,0" Foreground="#FF0B89BD" />
                <TextBlock Text="-" Margin="5,0,0,0" Foreground="#FF0B89BD" FontWeight="Bold"/>
                <TextBlock Text="{Binding ClosureDate, StringFormat={}{0:dd MMMM yyyy}}" Margin="5,0,0,0" Foreground="#FF0B89BD" />
            </StackPanel>
        </DataTemplate>
    </TreeView.Resources>
</TreeView>

在我的ViewModel中,我从未使用过IsSelected setter。如果您有任何想法,欢迎光临


提前感谢

这可能与您在
ItemContainerStyle
中执行此操作有关。另外,确保添加到树视图的所有类型中都选择了
IsSelected

试试这个:

<TreeView>
    <TreeView.Resources>
        <Style TargetType="{x:Type TreeViewItem}">
            <Setter Property="IsSelected"
                    Value="{Binding IsSelected, Mode=TwoWay}" />
        </Style>
    </TreeView.Resources>
    .....
</TreeView>

.....

输出窗口中是否存在任何绑定错误?