惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
G
Google Developers Blog
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
爱范儿
爱范儿
B
Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
GbyAI
GbyAI
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
博客园_首页
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence

博客园 - 天涯

Prism.Interactivity 和 Prism.Modularity 介绍 Prism BindableBase 和 Commands 的介绍 对 mvvm 架构的理解 wpf mvvm 架构 C#硬件开发业务流程调试技巧 wpf winform 截图 wpf Cannot locate resource 'app.xaml' app.config ConfigSection 保护 程序开发注意4项,你知道吗? .net 变量缓存,你知道吗 wpf 多线程 更新UI 界面 .net 技术,你掌握了多少 aspx 中确认删除 脚本 - 天涯 .net 中对类的扩展 奇怪--ORA-12154:TNS:无法处理服务名: 建模十条原则 由软件加壳谈起 Hashtable 应注意的 2 点 vb 调用c#做的com 组件
wpf treeview 绑定不同的对象
天涯 · 2011-09-20 · via 博客园 - 天涯

treeView 结构:

<TreeView Name="trvMenu" IsTextSearchEnabled="True"  ItemsSource="{Binding}" Grid.Row="0">
              <TreeView.Resources>
                <HierarchicalDataTemplate    DataType="{x:Type models:TreeFolder}" 

ItemsSource="{Binding Items}"

>
                    <StackPanel Orientation="Horizontal">
                        <CheckBox IsChecked="{Binding HasRight,Mode=TwoWay}" Name="chkSourceFolder"  IsThreeState="True" ></CheckBox>
                        <TextBlock Text="{Binding Name}" Name="lbName" >:</TextBlock>
                        <TextBlock Text="{Binding Desc}" Name="lbDesc"></TextBlock>
                    </StackPanel>

           //以下是当选中是显示白色字体

                    <HierarchicalDataTemplate.Triggers>
                        <DataTrigger Binding="{Binding RelativeSource=
            {RelativeSource Mode=FindAncestor, AncestorType=
                {x:Type TreeViewItem}},Path=IsSelected}" Value="True">
                            <Setter TargetName="lbName" Property="Foreground" Value="White"/>
                        </DataTrigger>
                    </HierarchicalDataTemplate.Triggers>
                </HierarchicalDataTemplate>
                <DataTemplate DataType="{x:Type models:EnquirySourceInfo}">
                    <StackPanel Orientation="Horizontal">
                        <CheckBox IsChecked="{Binding HasRight,Mode=TwoWay}" Name="chkSourceFolder"  IsThreeState="True" ></CheckBox>
                        <TextBlock Text="{Binding Name}" Name="lbName" >:</TextBlock>
                        <TextBlock Text="{Binding Desc}" Name="lbDesc"></TextBlock>
                    </StackPanel>
                </DataTemplate>
                <DataTemplate DataType="{x:Type models:SystemParameterInfo}">
                    <StackPanel Orientation="Horizontal">
                        <CheckBox IsChecked="{Binding HasRight,Mode=TwoWay}" Name="chkSourceFolder"  IsThreeState="True" ></CheckBox>
                        <TextBlock Text="{Binding Name}" Name="lbName" >:</TextBlock>
                        <TextBlock Text="{Binding Desc}" Name="lbDesc"></TextBlock>
                    </StackPanel>
                </DataTemplate>
                <DataTemplate DataType="{x:Type models:EnquirySourceInfo}">
                    <StackPanel Orientation="Horizontal">
                        <CheckBox IsChecked="{Binding HasRight,Mode=TwoWay}" Name="chkSourceFolder"  IsThreeState="True" ></CheckBox>
                        <TextBlock Text="{Binding Name}" Name="lbName" >:</TextBlock>
                        <TextBlock Text="{Binding Desc}" Name="lbDesc"></TextBlock>
                    </StackPanel>
                </DataTemplate>
            </TreeView.Resources>
        </TreeView>

 类结构:

 public class TreeFolder:INotifyPropertyChanged
    {
        private string strDesc;
        public string Desc { get { return strDesc; } set { strDesc = value; OnProperty("Desc"); } }
        public string Name { get; set; }
        public TreeFolder ParentFolder { get; set; }
        public IList<EnquirySourceInfo> ReportSource { get; set; }    
        public IList<Enquiry> Enquirys { get; set; }        
        public TrveeItemType ItemType { get; set; }
        public string FolderNo { get; set; }
        public string ParentNo { get; set; }

        public IList<EnquiryInfo> EnquiryInfos { get; set; }       

        public event PropertyChangedEventHandler PropertyChanged;

        public void OnProperty(string propertyName)
        {
            if (PropertyChanged != null)
            {
                this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
        //主要循环用来绑定时用的
        public IEnumerable<object> Items
        {
            get
            {
                
                if (Folders != null)
                {
                    foreach (var group in this.Folders)
                        yield return group;
                }

                if (Enquirys != null)
                {
                    foreach (var group in this.Enquirys)
                        yield return group.EnquiryIn;
                }
                if (ReportSource != null)
                {
                    foreach (var entry in this.ReportSource)
                        yield return entry;
                }
                if (EnquiryInfos != null)
                {
                    foreach (var info in this.EnquiryInfos)
                        yield return info;
                }
                
            }
        }       
    }

 绑定代码:

trvMenu.ItemsSource = rootList;