在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → treeview配合checkbox权限

treeview配合checkbox权限

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:2.04M
  • 下载次数:10
  • 浏览次数:65
  • 发布时间:2023-12-07
  • 实例类别:C#语言基础
  • 发 布 人:suttyu
  • 文件格式:.rar
  • 所需积分:2
 相关标签: TreeView checkbox

实例介绍

【实例简介】treeview配合checkbox权限

【实例截图】

from clipboardfrom clipboard

【核心代码】

.
├── C#treeview配合checkbox权限_treeviewR.rar
└── 权限菜单源码
    ├── BLL
    │   ├── BLL.csproj
    │   ├── OperatorManager.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── RightsGroupManager.cs
    │   ├── RightsRelationManager.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKBLL.dll
    │   │       ├── CMCSharpSDKBLL.pdb
    │   │       ├── CMCSharpSDKBLL.xml
    │   │       ├── CMCSharpSDKDAL.dll
    │   │       ├── CMCSharpSDKDAL.pdb
    │   │       ├── CMCSharpSDKDAL.xml
    │   │       ├── CMCSharpSDKDALFactory.dll
    │   │       ├── CMCSharpSDKDALFactory.pdb
    │   │       ├── CMCSharpSDKDALFactory.xml
    │   │       ├── CMCSharpSDKDBUtility.dll
    │   │       ├── CMCSharpSDKDBUtility.pdb
    │   │       ├── CMCSharpSDKDBUtility.xml
    │   │       ├── CMCSharpSDKIBLL.dll
    │   │       ├── CMCSharpSDKIBLL.pdb
    │   │       ├── CMCSharpSDKIBLL.xml
    │   │       ├── CMCSharpSDKIDAL.dll
    │   │       ├── CMCSharpSDKIDAL.pdb
    │   │       ├── CMCSharpSDKIDAL.xml
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── BLL.csproj.AssemblyReference.cache
    │           ├── BLL.csproj.CopyComplete
    │           ├── BLL.csproj.CoreCompileInputs.cache
    │           ├── BLL.csproj.FileListAbsolute.txt
    │           ├── BLL.csprojResolveAssemblyReference.cache
    │           ├── CMCSharpSDKBLL.dll
    │           ├── CMCSharpSDKBLL.pdb
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           └── TempPE
    ├── BLLFactory
    │   ├── BLLFactory.cs
    │   ├── BLLFactory.csproj
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKBLL.dll
    │   │       ├── CMCSharpSDKBLL.pdb
    │   │       ├── CMCSharpSDKBLL.xml
    │   │       ├── CMCSharpSDKBLLFactory.dll
    │   │       ├── CMCSharpSDKBLLFactory.pdb
    │   │       ├── CMCSharpSDKBLLFactory.xml
    │   │       ├── CMCSharpSDKDAL.dll
    │   │       ├── CMCSharpSDKDAL.pdb
    │   │       ├── CMCSharpSDKDAL.xml
    │   │       ├── CMCSharpSDKDALFactory.dll
    │   │       ├── CMCSharpSDKDALFactory.pdb
    │   │       ├── CMCSharpSDKDALFactory.xml
    │   │       ├── CMCSharpSDKDBUtility.dll
    │   │       ├── CMCSharpSDKDBUtility.pdb
    │   │       ├── CMCSharpSDKDBUtility.xml
    │   │       ├── CMCSharpSDKIBLL.dll
    │   │       ├── CMCSharpSDKIBLL.pdb
    │   │       ├── CMCSharpSDKIBLL.xml
    │   │       ├── CMCSharpSDKIDAL.dll
    │   │       ├── CMCSharpSDKIDAL.pdb
    │   │       ├── CMCSharpSDKIDAL.xml
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── BLLFactory.csproj.AssemblyReference.cache
    │           ├── BLLFactory.csproj.CopyComplete
    │           ├── BLLFactory.csproj.CoreCompileInputs.cache
    │           ├── BLLFactory.csproj.FileListAbsolute.txt
    │           ├── BLLFactory.csprojResolveAssemblyReference.cache
    │           ├── CMCSharpSDKBLLFactory.dll
    │           ├── CMCSharpSDKBLLFactory.pdb
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           └── TempPE
    ├── Backup
    │   ├── BLL
    │   │   ├── BLL.csproj
    │   │   ├── OperatorManager.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── RightsGroupManager.cs
    │   │   └── RightsRelationManager.cs
    │   ├── BLLFactory
    │   │   ├── BLLFactory.cs
    │   │   ├── BLLFactory.csproj
    │   │   └── Properties
    │   │       └── AssemblyInfo.cs
    │   ├── CMCSharpSDK
    │   │   ├── App.config
    │   │   ├── CMCSharpSDK.csproj
    │   │   ├── CMCSharpSDK.ico
    │   │   ├── Common
    │   │   │   ├── EmailManager.cs
    │   │   │   ├── GlobalExceptionManager.cs
    │   │   │   ├── RightsMenuDataManager.cs
    │   │   │   └── RightsMenuUIManager.cs
    │   │   ├── Forms
    │   │   │   ├── frmAddRightsRelation.Designer.cs
    │   │   │   ├── frmAddRightsRelation.cs
    │   │   │   ├── frmAddRightsRelation.resx
    │   │   │   ├── frmGlobalException.cs
    │   │   │   ├── frmGlobalException.designer.cs
    │   │   │   ├── frmGlobalException.resx
    │   │   │   ├── frmLockScreen.Designer.cs
    │   │   │   ├── frmLockScreen.cs
    │   │   │   ├── frmLockScreen.resx
    │   │   │   ├── frmLogin.Designer.cs
    │   │   │   ├── frmLogin.cs
    │   │   │   ├── frmLogin.resx
    │   │   │   ├── frmMain.Designer.cs
    │   │   │   ├── frmMain.cs
    │   │   │   ├── frmMain.resx
    │   │   │   ├── frmOperatorManager.Designer.cs
    │   │   │   ├── frmOperatorManager.cs
    │   │   │   ├── frmOperatorManager.resx
    │   │   │   ├── frmRightsGroupManager.Designer.cs
    │   │   │   ├── frmRightsGroupManager.cs
    │   │   │   ├── frmRightsGroupManager.resx
    │   │   │   ├── frmRightsManager.Designer.cs
    │   │   │   ├── frmRightsManager.cs
    │   │   │   ├── frmRightsManager.resx
    │   │   │   ├── frmSendFeedbackEMail.cs
    │   │   │   ├── frmSendFeedbackEMail.designer.cs
    │   │   │   └── frmSendFeedbackEMail.resx
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.Designer.cs
    │   │   │   ├── Resources.resx
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   └── Resources
    │   │       ├── AddOperator.png
    │   │       ├── AttachmentHS.png
    │   │       ├── CheckGrammarHS.png
    │   │       ├── Clock.png
    │   │       ├── CloseWindow.png
    │   │       ├── DeleteOperator.png
    │   │       ├── ExitSystem.png
    │   │       ├── Help.png
    │   │       ├── HomeHS.png
    │   │       ├── LegendHS.png
    │   │       ├── LockScreen.png
    │   │       ├── LogOff.png
    │   │       ├── LoginUI.png
    │   │       ├── ModifyPassword.png
    │   │       ├── NoteHS.png
    │   │       ├── OptionsHS.png
    │   │       ├── PropertiesHS.png
    │   │       ├── RefreshDocViewHS.png
    │   │       ├── RefreshOperatorList.png
    │   │       ├── RefreshRightsList.png
    │   │       ├── RightsGroupManager.png
    │   │       ├── RightsMode.png
    │   │       ├── RoutingSlipHS.png
    │   │       ├── SaveAllChanged.png
    │   │       ├── TaskHS.png
    │   │       └── Web.png
    │   ├── CMCSharpSDK.sln
    │   ├── DAL
    │   │   ├── DAL.csproj
    │   │   ├── OperatorService.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── RightsGroupService.cs
    │   │   └── RightsRelationService.cs
    │   ├── DALFactory
    │   │   ├── AbstractDALFactory.cs
    │   │   ├── DALFactory.cs
    │   │   ├── DALFactory.csproj
    │   │   └── Properties
    │   │       └── AssemblyInfo.cs
    │   ├── DBUtility
    │   │   ├── AbstractDBProvider.cs
    │   │   ├── DBUtility.csproj
    │   │   ├── OleDBProvider.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   └── SqlDBProvider.cs
    │   ├── IBLL
    │   │   ├── IBLL.csproj
    │   │   ├── IOperatorManager.cs
    │   │   ├── IRightsGroupManager.cs
    │   │   ├── IRightsRelationManager.cs
    │   │   └── Properties
    │   │       └── AssemblyInfo.cs
    │   ├── IDAL
    │   │   ├── IDAL.csproj
    │   │   ├── IOperatorService.cs
    │   │   ├── IRightsGroupService.cs
    │   │   ├── IRightsRelationService.cs
    │   │   └── Properties
    │   │       └── AssemblyInfo.cs
    │   └── Model
    │       ├── Model.csproj
    │       ├── ModelBase.cs
    │       ├── ModelCommonEnum.cs
    │       ├── Operator.cs
    │       ├── Properties
    │       │   └── AssemblyInfo.cs
    │       ├── Rights.cs
    │       ├── RightsGroup.cs
    │       └── RightsRelation.cs
    ├── CMCSharpSDK
    │   ├── App.config
    │   ├── CMCSharpSDK.csproj
    │   ├── CMCSharpSDK.csproj.user
    │   ├── CMCSharpSDK.ico
    │   ├── Common
    │   │   ├── EmailManager.cs
    │   │   ├── GlobalExceptionManager.cs
    │   │   ├── RightsMenuDataManager.cs
    │   │   └── RightsMenuUIManager.cs
    │   ├── Controls
    │   │   └── CMTextBox.cs
    │   ├── Forms
    │   │   ├── frmAddRightsRelation.Designer.cs
    │   │   ├── frmAddRightsRelation.cs
    │   │   ├── frmAddRightsRelation.resx
    │   │   ├── frmGlobalException.cs
    │   │   ├── frmGlobalException.designer.cs
    │   │   ├── frmGlobalException.resx
    │   │   ├── frmGroupClientList.Designer.cs
    │   │   ├── frmGroupClientList.cs
    │   │   ├── frmGroupClientList.resx
    │   │   ├── frmLockScreen.Designer.cs
    │   │   ├── frmLockScreen.cs
    │   │   ├── frmLockScreen.resx
    │   │   ├── frmLogin.Designer.cs
    │   │   ├── frmLogin.cs
    │   │   ├── frmLogin.resx
    │   │   ├── frmMain.Designer.cs
    │   │   ├── frmMain.cs
    │   │   ├── frmMain.resx
    │   │   ├── frmOperatorManager.Designer.cs
    │   │   ├── frmOperatorManager.cs
    │   │   ├── frmOperatorManager.resx
    │   │   ├── frmRightsGroupManager.Designer.cs
    │   │   ├── frmRightsGroupManager.cs
    │   │   ├── frmRightsGroupManager.resx
    │   │   ├── frmRightsManager.Designer.cs
    │   │   ├── frmRightsManager.cs
    │   │   ├── frmRightsManager.resx
    │   │   ├── frmSendFeedbackEMail.cs
    │   │   ├── frmSendFeedbackEMail.designer.cs
    │   │   └── frmSendFeedbackEMail.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Resources
    │   │   ├── 1202163023.png
    │   │   ├── AddOperator.png
    │   │   ├── AttachmentHS.png
    │   │   ├── CMCSharpSDK.ico
    │   │   ├── CheckGrammarHS.png
    │   │   ├── Clock.png
    │   │   ├── CloseWindow.png
    │   │   ├── DeleteOperator.png
    │   │   ├── ExitSystem.png
    │   │   ├── Help.png
    │   │   ├── HomeHS.png
    │   │   ├── LegendHS.png
    │   │   ├── LockScreen.png
    │   │   ├── LogOff.png
    │   │   ├── LoginUI.png
    │   │   ├── ModifyPassword.png
    │   │   ├── NoteHS.png
    │   │   ├── OptionsHS.png
    │   │   ├── PropertiesHS.png
    │   │   ├── RefreshDocViewHS.png
    │   │   ├── RefreshOperatorList.png
    │   │   ├── RefreshRightsList.png
    │   │   ├── RightsGroupManager.png
    │   │   ├── RightsMode.png
    │   │   ├── RoutingSlipHS.png
    │   │   ├── SaveAllChanged.png
    │   │   ├── TaskHS.png
    │   │   ├── Thumbs.db
    │   │   └── Web.png
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDK.exe
    │   │       ├── CMCSharpSDK.exe.config
    │   │       ├── CMCSharpSDK.pdb
    │   │       ├── CMCSharpSDK.xml
    │   │       ├── CMCSharpSDKBLL.dll
    │   │       ├── CMCSharpSDKBLL.pdb
    │   │       ├── CMCSharpSDKBLL.xml
    │   │       ├── CMCSharpSDKBLLFactory.dll
    │   │       ├── CMCSharpSDKBLLFactory.pdb
    │   │       ├── CMCSharpSDKBLLFactory.xml
    │   │       ├── CMCSharpSDKDAL.dll
    │   │       ├── CMCSharpSDKDAL.pdb
    │   │       ├── CMCSharpSDKDAL.xml
    │   │       ├── CMCSharpSDKDALFactory.dll
    │   │       ├── CMCSharpSDKDALFactory.pdb
    │   │       ├── CMCSharpSDKDALFactory.xml
    │   │       ├── CMCSharpSDKDBUtility.dll
    │   │       ├── CMCSharpSDKDBUtility.pdb
    │   │       ├── CMCSharpSDKDBUtility.xml
    │   │       ├── CMCSharpSDKIBLL.dll
    │   │       ├── CMCSharpSDKIBLL.pdb
    │   │       ├── CMCSharpSDKIBLL.xml
    │   │       ├── CMCSharpSDKIDAL.dll
    │   │       ├── CMCSharpSDKIDAL.pdb
    │   │       ├── CMCSharpSDKIDAL.xml
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── CMCSharpSDK.csproj.AssemblyReference.cache
    │           ├── CMCSharpSDK.csproj.CopyComplete
    │           ├── CMCSharpSDK.csproj.CoreCompileInputs.cache
    │           ├── CMCSharpSDK.csproj.FileListAbsolute.txt
    │           ├── CMCSharpSDK.csproj.GenerateResource.cache
    │           ├── CMCSharpSDK.csprojResolveAssemblyReference.cache
    │           ├── CMCSharpSDK.exe
    │           ├── CMCSharpSDK.pdb
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmAddRightsRelation.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmGlobalException.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmLockScreen.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmLogin.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmMain.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmOperatorManager.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmRightsGroupManager.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmRightsManager.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Forms.frmSendFeedbackEMail.resources
    │           ├── CodingMouse.CMCSharpSDK.UI.Properties.Resources.resources
    │           ├── DesignTimeResolveAssemblyReferences.cache
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           └── TempPE
    │               └── Properties.Resources.Designer.cs.dll
    ├── CMCSharpSDK.sln
    ├── DAL
    │   ├── DAL.csproj
    │   ├── OperatorService.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   └── ConsumableService.cs
    │   ├── RightsGroupService.cs
    │   ├── RightsRelationService.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKDAL.dll
    │   │       ├── CMCSharpSDKDAL.pdb
    │   │       ├── CMCSharpSDKDAL.xml
    │   │       ├── CMCSharpSDKDBUtility.dll
    │   │       ├── CMCSharpSDKDBUtility.pdb
    │   │       ├── CMCSharpSDKDBUtility.xml
    │   │       ├── CMCSharpSDKIDAL.dll
    │   │       ├── CMCSharpSDKIDAL.pdb
    │   │       ├── CMCSharpSDKIDAL.xml
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── CMCSharpSDKDAL.dll
    │           ├── CMCSharpSDKDAL.pdb
    │           ├── DAL.csproj.AssemblyReference.cache
    │           ├── DAL.csproj.CopyComplete
    │           ├── DAL.csproj.CoreCompileInputs.cache
    │           ├── DAL.csproj.FileListAbsolute.txt
    │           ├── DAL.csprojResolveAssemblyReference.cache
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           └── TempPE
    ├── DALFactory
    │   ├── AbstractDALFactory.cs
    │   ├── DALFactory.cs
    │   ├── DALFactory.csproj
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKDAL.dll
    │   │       ├── CMCSharpSDKDAL.pdb
    │   │       ├── CMCSharpSDKDAL.xml
    │   │       ├── CMCSharpSDKDALFactory.dll
    │   │       ├── CMCSharpSDKDALFactory.pdb
    │   │       ├── CMCSharpSDKDALFactory.xml
    │   │       ├── CMCSharpSDKDBUtility.dll
    │   │       ├── CMCSharpSDKDBUtility.pdb
    │   │       ├── CMCSharpSDKDBUtility.xml
    │   │       ├── CMCSharpSDKIDAL.dll
    │   │       ├── CMCSharpSDKIDAL.pdb
    │   │       ├── CMCSharpSDKIDAL.xml
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── CMCSharpSDKDALFactory.dll
    │           ├── CMCSharpSDKDALFactory.pdb
    │           ├── DALFactory.csproj.AssemblyReference.cache
    │           ├── DALFactory.csproj.CopyComplete
    │           ├── DALFactory.csproj.CoreCompileInputs.cache
    │           ├── DALFactory.csproj.FileListAbsolute.txt
    │           ├── DALFactory.csprojResolveAssemblyReference.cache
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           └── TempPE
    ├── DB
    │   ├── CreateDataBase.sql
    │   ├── CreateTable.sql
    │   ├── InsertTestData.sql
    │   └── sqlserver2016
    │       ├── CMCSharpSDK.mdf
    │       └── CMCSharpSDK_log.ldf
    ├── DBUtility
    │   ├── AbstractDBProvider.cs
    │   ├── DBUtility.csproj
    │   ├── OleDBProvider.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── SqlDBProvider.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKDBUtility.dll
    │   │       ├── CMCSharpSDKDBUtility.pdb
    │   │       └── CMCSharpSDKDBUtility.xml
    │   └── obj
    │       └── Debug
    │           ├── CMCSharpSDKDBUtility.dll
    │           ├── CMCSharpSDKDBUtility.pdb
    │           ├── DBUtility.csproj.AssemblyReference.cache
    │           ├── DBUtility.csproj.CoreCompileInputs.cache
    │           ├── DBUtility.csproj.FileListAbsolute.txt
    │           ├── DBUtility.csprojResolveAssemblyReference.cache
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           └── TempPE
    ├── IBLL
    │   ├── IBLL.csproj
    │   ├── IOperatorManager.cs
    │   ├── IRightsGroupManager.cs
    │   ├── IRightsRelationManager.cs
    │   ├── IVIPClientManager.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKIBLL.dll
    │   │       ├── CMCSharpSDKIBLL.pdb
    │   │       ├── CMCSharpSDKIBLL.xml
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── CMCSharpSDKIBLL.dll
    │           ├── CMCSharpSDKIBLL.pdb
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           ├── IBLL.csproj.CopyComplete
    │           ├── IBLL.csproj.CoreCompileInputs.cache
    │           ├── IBLL.csproj.FileListAbsolute.txt
    │           ├── IBLL.csprojResolveAssemblyReference.cache
    │           └── TempPE
    ├── IDAL
    │   ├── IDAL.csproj
    │   ├── IOperatorService.cs
    │   ├── IRightsGroupService.cs
    │   ├── IRightsRelationService.cs
    │   ├── IVIPClientService.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKIDAL.dll
    │   │       ├── CMCSharpSDKIDAL.pdb
    │   │       ├── CMCSharpSDKIDAL.xml
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── CMCSharpSDKIDAL.dll
    │           ├── CMCSharpSDKIDAL.pdb
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           ├── IDAL.csproj.AssemblyReference.cache
    │           ├── IDAL.csproj.CopyComplete
    │           ├── IDAL.csproj.CoreCompileInputs.cache
    │           ├── IDAL.csproj.FileListAbsolute.txt
    │           ├── IDAL.csprojResolveAssemblyReference.cache
    │           └── TempPE
    ├── Model
    │   ├── Model.csproj
    │   ├── ModelBase.cs
    │   ├── ModelCommonEnum.cs
    │   ├── Operator.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Rights.cs
    │   ├── RightsGroup.cs
    │   ├── RightsRelation.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CMCSharpSDKModel.dll
    │   │       ├── CMCSharpSDKModel.pdb
    │   │       └── CMCSharpSDKModel.xml
    │   └── obj
    │       └── Debug
    │           ├── CMCSharpSDKModel.dll
    │           ├── CMCSharpSDKModel.pdb
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           ├── Model.csproj.AssemblyReference.cache
    │           ├── Model.csproj.CoreCompileInputs.cache
    │           ├── Model.csproj.FileListAbsolute.txt
    │           ├── Model.csprojResolveAssemblyReference.cache
    │           └── TempPE
    └── UpgradeLog.htm

92 directories, 432 files



标签: TreeView checkbox

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警