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

推荐订阅源

T
The Blog of Author Tim Ferriss
Know Your Adversary
Know Your Adversary
P
Palo Alto Networks Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
K
Kaspersky official blog
L
LINUX DO - 热门话题
P
Proofpoint News Feed
P
Privacy & Cybersecurity Law Blog
Google DeepMind News
Google DeepMind News
Attack and Defense Labs
Attack and Defense Labs
Cisco Talos Blog
Cisco Talos Blog
AI
AI
L
LINUX DO - 最新话题
H
Heimdal Security Blog
Hacker News: Ask HN
Hacker News: Ask HN
Webroot Blog
Webroot Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The GitHub Blog
The GitHub Blog
I
Intezer
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
S
Securelist
博客园_首页
IT之家
IT之家
Schneier on Security
Schneier on Security
博客园 - 叶小钗
罗磊的独立博客
WordPress大学
WordPress大学
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
阮一峰的网络日志
阮一峰的网络日志
A
Arctic Wolf
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
W
WeLiveSecurity
The Register - Security
The Register - Security
D
DataBreaches.Net
S
Security @ Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
Recorded Future
Recorded Future
NISL@THU
NISL@THU
N
News and Events Feed by Topic
T
Tailwind CSS Blog
N
News and Events Feed by Topic
Cyberwarzone
Cyberwarzone
T
Tor Project blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com

博客园 - 天涯

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;