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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 叶小钗
I
InfoQ
MyScale Blog
MyScale Blog
H
Help Net Security
月光博客
月光博客
Vercel News
Vercel News
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
GbyAI
GbyAI
Blog — PlanetScale
Blog — PlanetScale
博客园 - Franky

博客园 - 天涯

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;