基本信息
源码名称:WPF自定义treeListView控件
源码大小:0.27M
文件格式:.zip
开发语言:C#
更新时间:2021-12-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

WPF自定义treeListView控件


.
├── 多列treelistview_src
│   ├── 5.png
│   ├── Aga.Controls
│   │   ├── Aga.Controls.csproj
│   │   ├── Collection.cs
│   │   ├── Key.snk
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Themes
│   │   │   └── Generic.xaml
│   │   ├── Tree
│   │   │   ├── Converters.cs
│   │   │   ├── ITreeModel.cs
│   │   │   ├── RowExpander.cs
│   │   │   ├── TreeList.cs
│   │   │   ├── TreeListItem.cs
│   │   │   └── TreeNode.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── Aga.Controls.dll
│   │   │       └── Aga.Controls.pdb
│   │   └── obj
│   │       └── Debug
│   │           ├── Aga.Controls.Properties.Resources.resources
│   │           ├── Aga.Controls.csproj.AssemblyReference.cache
│   │           ├── Aga.Controls.csproj.CoreCompileInputs.cache
│   │           ├── Aga.Controls.csproj.FileListAbsolute.txt
│   │           ├── Aga.Controls.csproj.GenerateResource.cache
│   │           ├── Aga.Controls.dll
│   │           ├── Aga.Controls.g.resources
│   │           ├── Aga.Controls.pdb
│   │           ├── Aga.Controls_MarkupCompile.cache
│   │           ├── Aga.Controls_MarkupCompile.i.cache
│   │           ├── Aga.Controls_MarkupCompile.lref
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── GeneratedInternalTypeHelper.g.cs
│   │           ├── GeneratedInternalTypeHelper.g.i.cs
│   │           ├── TempPE
│   │           │   └── Properties.Resources.Designer.cs.dll
│   │           └── Themes
│   │               └── Generic.baml
│   ├── Backup
│   │   ├── Aga.Controls
│   │   │   ├── Aga.Controls.csproj
│   │   │   ├── Collection.cs
│   │   │   ├── Key.snk
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Themes
│   │   │   │   └── Generic.xaml
│   │   │   └── Tree
│   │   │       ├── Converters.cs
│   │   │       ├── ITreeModel.cs
│   │   │       ├── RowExpander.cs
│   │   │       ├── TreeList.cs
│   │   │       ├── TreeListItem.cs
│   │   │       └── TreeNode.cs
│   │   ├── TestApp
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Tabs
│   │   │   │   ├── MainDemo.xaml
│   │   │   │   ├── MainDemo.xaml.cs
│   │   │   │   ├── Person.cs
│   │   │   │   ├── PersonModel.cs
│   │   │   │   ├── RegImageConverter.cs
│   │   │   │   ├── RegistryModel.cs
│   │   │   │   ├── RegistrySample.xaml
│   │   │   │   └── RegistrySample.xaml.cs
│   │   │   ├── TestApp.csproj
│   │   │   └── TreeStyles.xaml
│   │   ├── UnitTests
│   │   │   ├── Key.snk
│   │   │   ├── NodeTest.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TreeData.cs
│   │   │   └── UnitTests.csproj
│   │   └── treeListView.sln
│   ├── TestApp
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── Images
│   │   │   ├── data.png
│   │   │   ├── dataString.png
│   │   │   └── folder.png
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Tabs
│   │   │   ├── MainDemo.xaml
│   │   │   ├── MainDemo.xaml.cs
│   │   │   ├── Person.cs
│   │   │   ├── PersonModel.cs
│   │   │   ├── RegImageConverter.cs
│   │   │   ├── RegistryModel.cs
│   │   │   ├── RegistrySample.xaml
│   │   │   └── RegistrySample.xaml.cs
│   │   ├── TestApp.csproj
│   │   ├── TreeStyles.xaml
│   │   ├── app.config
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── Aga.Controls.dll
│   │   │       ├── Aga.Controls.pdb
│   │   │       ├── TestApp.exe
│   │   │       ├── TestApp.exe.config
│   │   │       └── TestApp.pdb
│   │   └── obj
│   │       └── Debug
│   │           ├── App.baml
│   │           ├── App.g.cs
│   │           ├── App.g.i.cs
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── GeneratedInternalTypeHelper.g.cs
│   │           ├── GeneratedInternalTypeHelper.g.i.cs
│   │           ├── MainWindow.baml
│   │           ├── MainWindow.g.cs
│   │           ├── MainWindow.g.i.cs
│   │           ├── Tabs
│   │           │   ├── MainDemo.baml
│   │           │   ├── MainDemo.g.cs
│   │           │   ├── MainDemo.g.i.cs
│   │           │   ├── RegistrySample.baml
│   │           │   ├── RegistrySample.g.cs
│   │           │   └── RegistrySample.g.i.cs
│   │           ├── TempPE
│   │           ├── TestApp.csproj.AssemblyReference.cache
│   │           ├── TestApp.csproj.CopyComplete
│   │           ├── TestApp.csproj.CoreCompileInputs.cache
│   │           ├── TestApp.csproj.FileListAbsolute.txt
│   │           ├── TestApp.exe
│   │           ├── TestApp.g.resources
│   │           ├── TestApp.pdb
│   │           ├── TestApp_MarkupCompile.cache
│   │           ├── TestApp_MarkupCompile.i.cache
│   │           ├── TestApp_MarkupCompile.lref
│   │           └── TreeStyles.baml
│   ├── UnitTests
│   │   ├── Key.snk
│   │   ├── NodeTest.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── TreeData.cs
│   │   ├── UnitTests.csproj
│   │   ├── bin
│   │   │   └── Debug
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── TempPE
│   │           └── UnitTests.csproj.AssemblyReference.cache
│   ├── UpgradeLog.htm
│   └── treeListView.sln
└── 好例子网_多列treelistview_src.zip

38 directories, 130 files