0

我的TreeView ItemTemplate样子如下。

<TreeView.ItemTemplate>
    <HierarchicalDataTemplate ItemsSource="{Binding Connections}">
        <WrapPanel >
            <CheckBox  VerticalAlignment="Center" Command="{Binding UpdateConnections}" CommandParameter="{Binding}" IsChecked="{Binding Status,  Mode=TwoWay}" Focusable="False"  Style="{StaticResource ResourceKey=TreeView_CheckBox_Style}"></CheckBox>
             <TextBlock Text="{Binding Name}"  Style="{StaticResource ResourceKey=treeTextBoxStyle}"  />
         </WrapPanel>
    </HierarchicalDataTemplate>
</TreeView.ItemTemplate>

我正在使用 MVVM。TextBox如果我的树项以“s”开头,我想编辑。

我基本上双击我的TreeViewItem,我应该能够输入它。

我该怎么做 ?

4

0 回答 0