嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
treeview配合checkbox权限
.
├── 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