基本信息
源码名称:c#windowform实现treeview多层绑定
源码大小:1.34M
文件格式:.rar
开发语言:C#
更新时间:2023-07-11
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
c#windowform实现treeview多层绑定
实现treeview多层数据绑定,多层是动态的
文件清单
└── demo
├── database
│ ├── book_log.LDF
│ ├── book.mdf
│ ├── db_showHouse_Data.MDF
│ └── db_showHouse_Log.LDF
├── DBUtility
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ └── DBUtility.pdb
│ ├── DBHelper.cs
│ ├── DBUtility.csproj
│ ├── obj
│ │ ├── DBUtility.csproj.FileList.txt
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── Refactor
│ │ │ └── DBUtility.dll
│ │ └── TempPE
│ └── Properties
│ └── AssemblyInfo.cs
├── demo
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── demo.exe
│ │ ├── demo.exe.config
│ │ ├── demo.pdb
│ │ ├── demo.vshost.exe
│ │ ├── demo.vshost.exe.config
│ │ ├── infosys.BLL.dll
│ │ ├── infosys.BLL.pdb
│ │ ├── infosys.DAL.dll
│ │ ├── infosys.DAL.pdb
│ │ ├── infosys.Model.dll
│ │ └── infosys.Model.pdb
│ ├── demo.csproj
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── demo.csproj.GenerateResource.Cache
│ │ │ ├── demo.exe
│ │ │ ├── demo.Form1.resources
│ │ │ ├── demo.pdb
│ │ │ ├── demo.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── demo.csproj.FileList.txt
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── demo.sln
├── demo.suo
├── infosys.BLL
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── infosys.BLL.dll
│ │ ├── infosys.BLL.pdb
│ │ ├── infosys.DAL.dll
│ │ ├── infosys.DAL.pdb
│ │ ├── infosys.Model.dll
│ │ └── infosys.Model.pdb
│ ├── ClassTypes.cs
│ ├── infosys.BLL.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── infosys.BLL.dll
│ │ │ ├── infosys.BLL.pdb
│ │ │ ├── Refactor
│ │ │ │ └── infosys.BLL.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── infosys.BLL.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Types.cs
├── infosys.DAL
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── infosys.DAL.dll
│ │ ├── infosys.DAL.pdb
│ │ ├── infosys.Model.dll
│ │ └── infosys.Model.pdb
│ ├── ClassTypes.cs
│ ├── infosys.DAL.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── infosys.DAL.dll
│ │ │ ├── infosys.DAL.pdb
│ │ │ ├── Refactor
│ │ │ │ └── infosys.DAL.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── infosys.DAL.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Types.cs
└── infosys.Model
├── bin
│ └── Debug
│ ├── infosys.Model.dll
│ └── infosys.Model.pdb
├── ClassTypes.cs
├── infosys.Model.csproj
├── obj
│ ├── Debug
│ │ ├── infosys.Model.dll
│ │ ├── infosys.Model.pdb
│ │ ├── Refactor
│ │ │ └── infosys.Model.dll
│ │ └── TempPE
│ └── infosys.Model.csproj.FileList.txt
├── Properties
│ └── AssemblyInfo.cs
└── Types.cs
42 directories, 88 files
c#windowform实现treeview多层绑定
实现treeview多层数据绑定,多层是动态的
文件清单
└── demo
├── database
│ ├── book_log.LDF
│ ├── book.mdf
│ ├── db_showHouse_Data.MDF
│ └── db_showHouse_Log.LDF
├── DBUtility
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ └── DBUtility.pdb
│ ├── DBHelper.cs
│ ├── DBUtility.csproj
│ ├── obj
│ │ ├── DBUtility.csproj.FileList.txt
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── Refactor
│ │ │ └── DBUtility.dll
│ │ └── TempPE
│ └── Properties
│ └── AssemblyInfo.cs
├── demo
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── demo.exe
│ │ ├── demo.exe.config
│ │ ├── demo.pdb
│ │ ├── demo.vshost.exe
│ │ ├── demo.vshost.exe.config
│ │ ├── infosys.BLL.dll
│ │ ├── infosys.BLL.pdb
│ │ ├── infosys.DAL.dll
│ │ ├── infosys.DAL.pdb
│ │ ├── infosys.Model.dll
│ │ └── infosys.Model.pdb
│ ├── demo.csproj
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── demo.csproj.GenerateResource.Cache
│ │ │ ├── demo.exe
│ │ │ ├── demo.Form1.resources
│ │ │ ├── demo.pdb
│ │ │ ├── demo.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── demo.csproj.FileList.txt
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── demo.sln
├── demo.suo
├── infosys.BLL
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── infosys.BLL.dll
│ │ ├── infosys.BLL.pdb
│ │ ├── infosys.DAL.dll
│ │ ├── infosys.DAL.pdb
│ │ ├── infosys.Model.dll
│ │ └── infosys.Model.pdb
│ ├── ClassTypes.cs
│ ├── infosys.BLL.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── infosys.BLL.dll
│ │ │ ├── infosys.BLL.pdb
│ │ │ ├── Refactor
│ │ │ │ └── infosys.BLL.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── infosys.BLL.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Types.cs
├── infosys.DAL
│ ├── bin
│ │ └── Debug
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── infosys.DAL.dll
│ │ ├── infosys.DAL.pdb
│ │ ├── infosys.Model.dll
│ │ └── infosys.Model.pdb
│ ├── ClassTypes.cs
│ ├── infosys.DAL.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── infosys.DAL.dll
│ │ │ ├── infosys.DAL.pdb
│ │ │ ├── Refactor
│ │ │ │ └── infosys.DAL.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── infosys.DAL.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Types.cs
└── infosys.Model
├── bin
│ └── Debug
│ ├── infosys.Model.dll
│ └── infosys.Model.pdb
├── ClassTypes.cs
├── infosys.Model.csproj
├── obj
│ ├── Debug
│ │ ├── infosys.Model.dll
│ │ ├── infosys.Model.pdb
│ │ ├── Refactor
│ │ │ └── infosys.Model.dll
│ │ └── TempPE
│ └── infosys.Model.csproj.FileList.txt
├── Properties
│ └── AssemblyInfo.cs
└── Types.cs
42 directories, 88 files