如何从wpf中的目标类型访问DataTemplate项

时间:2016-03-10 23:46:06

标签: c# wpf xaml treeview datatemplate

<TreeView x:Name="foldersItem">
        <TreeView.Resources>
            <Style TargetType="{x:Type TreeViewItem}">
                <Setter Property="HeaderTemplate">
                    <Setter.Value>
                        <DataTemplate>
                            <StackPanel Orientation="Horizontal">
                                <CheckBox Name="cbItem"></CheckBox>
                                <TextBlock Text="{Binding}" Margin="5,0" />
                            </StackPanel>
                        </DataTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </TreeView.Resources>
    </TreeView>

基本上我在上面的代码中有一个TreeView,每个TreeViewItem都有一个复选框和一个文本块。如何访问,检查或取消选中每个TreeViewItem的复选框? 我猜我需要某种绑定,但我无法围绕什么或如何进行思考。 最终结果应该具有Windows窗体类型的TreeView,复选框分别设置为true false或null。

如果我说这一切都错了,请告诉我。如果您需要更多信息,我很乐意提供。

1 个答案:

答案 0 :(得分:1)

您可以通过ItemsControl的典型数据绑定模式设置或获取CheckBox的值。以下是最低限度的示例。

代码背后:

using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows;

namespace WpfApplication1
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        public ObservableCollection<ItemViewModel> Items { get; } =
            new ObservableCollection<ItemViewModel>
            {
                new ItemViewModel { Name = "Item1", IsChecked = null },
                new ItemViewModel { Name = "Item2", IsChecked = true },
                new ItemViewModel { Name = "Item3", IsChecked = false }
            };
    }

    public class ItemViewModel : INotifyPropertyChanged
    {
        public string Name { get; set; }

        private bool? _isChecked;
        public bool? IsChecked
        {
            get { return _isChecked; }
            set
            {
                _isChecked = value;
                OnPropertyChanged(nameof(IsChecked));
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;
        private void OnPropertyChanged(string propertyName) =>
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }
}

的Xaml:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        x:Name="WindowRoot"
        Title="MainWindow" Height="300" Width="400">
    <Grid>
        <TreeView ItemsSource="{Binding ElementName=WindowRoot, Path=Items}">
            <TreeView.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                        <CheckBox IsChecked="{Binding IsChecked}"/>
                        <TextBlock Text="{Binding Name}"/>
                    </StackPanel>
                </DataTemplate>
            </TreeView.ItemTemplate>
        </TreeView>
    </Grid>
</Window>

访问ItemViewModel的IsChecked属性以设置或获取CheckBox的值。