找传奇、传世资源到传世资源站!

C# .net 框架设计经典案例

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】C# .net 框架设计经典案例,不解释,自己看。

【相关图片】

from clipboard

【源码结构】

.
├── C# .net 框架设计经典案例_C.net.Framework.zip
└── Framework-master
    └── 05_Code
        ├── Framework.Core
        │   ├── Collections
        │   │   └── CollectionHelper.cs
        │   ├── Configuration
        │   │   └── AppConfigHelper.cs
        │   ├── Encryption
        │   │   ├── Base64Helper.cs
        │   │   └── EncryptHelper.cs
        │   ├── Exception
        │   │   └── ExceptionHelper.cs
        │   ├── Framework.Core.csproj
        │   ├── Framework.Core.csproj.user
        │   ├── IO
        │   │   └── IOHelper.cs
        │   ├── Logger
        │   │   └── LogHelper.cs
        │   ├── Properties
        │   │   └── AssemblyInfo.cs
        │   ├── Xml
        │   │   ├── SerializerHelper.cs
        │   │   └── XmlHelper.cs
        │   ├── bin
        │   │   └── Debug
        │   │       ├── Framework.Core.dll
        │   │       └── Framework.Core.pdb
        │   └── obj
        │       └── Debug
        │           ├── DesignTimeResolveAssemblyReferencesInput.cache
        │           ├── Framework.Core.csproj.FileListAbsolute.txt
        │           ├── Framework.Core.csprojResolveAssemblyReference.cache
        │           ├── Framework.Core.dll
        │           └── Framework.Core.pdb
        ├── Framework.Database
        │   ├── Framework.Database.csproj
        │   ├── Framework.Database.csproj.user
        │   ├── IBatis
        │   │   ├── DataMapper.cs
        │   │   ├── DataMapperHelper.cs
        │   │   └── TransactionScopeHelper.cs
        │   ├── Library
        │   │   └── IBatis
        │   │       ├── Castle.DynamicProxy.dll
        │   │       ├── IBatisNet.Common.dll
        │   │       └── IBatisNet.DataMapper.dll
        │   ├── Properties
        │   │   └── AssemblyInfo.cs
        │   ├── SqlServer
        │   │   └── SqlHelper.cs
        │   ├── bin
        │   │   └── Debug
        │   │       ├── Castle.DynamicProxy.dll
        │   │       ├── Framework.Database.dll
        │   │       ├── Framework.Database.pdb
        │   │       ├── IBatisNet.Common.dll
        │   │       └── IBatisNet.DataMapper.dll
        │   └── obj
        │       └── Debug
        │           ├── DesignTimeResolveAssemblyReferencesInput.cache
        │           ├── Framework.Database.csproj.FileListAbsolute.txt
        │           ├── Framework.Database.csprojResolveAssemblyReference.cache
        │           ├── Framework.Database.dll
        │           └── Framework.Database.pdb
        ├── Framework.Label
        │   ├── BarcodeLabel.cs
        │   ├── BartenderLabel.cs
        │   ├── Framework.Label.csproj
        │   ├── Framework.Label.csproj.user
        │   ├── LabelMatrixLabel.cs
        │   ├── Properties
        │   │   └── AssemblyInfo.cs
        │   ├── bin
        │   │   └── Debug
        │   │       ├── Framework.Core.dll
        │   │       ├── Framework.Core.pdb
        │   │       ├── Framework.Label.dll
        │   │       └── Framework.Label.pdb
        │   └── obj
        │       └── Debug
        │           ├── DesignTimeResolveAssemblyReferencesInput.cache
        │           ├── Framework.Label.csproj.FileListAbsolute.txt
        │           ├── Framework.Label.csprojResolveAssemblyReference.cache
        │           ├── Framework.Label.dll
        │           └── Framework.Label.pdb
        ├── Framework.UI.Template
        │   ├── Common
        │   │   ├── AuthorityHelper.cs
        │   │   ├── Enums.cs
        │   │   ├── FormExceptionHelper.cs
        │   │   ├── FormHelper.cs
        │   │   ├── LanguageHelper.cs
        │   │   ├── QueryHelper.cs
        │   │   ├── TemplateCommon.cs
        │   │   └── TemplateLanguage.cs
        │   ├── CommonForm
        │   │   ├── ExceptionForm.Designer.cs
        │   │   ├── ExceptionForm.cs
        │   │   └── ExceptionForm.resx
        │   ├── Framework.UI.Template.csproj
        │   ├── Framework.UI.Template.csproj.user
        │   ├── Framework.UI.Template.csproj.vspscc
        │   ├── Library
        │   │   ├── Cab
        │   │   │   ├── Microsoft.Practices.CompositeUI.WinForms.dll
        │   │   │   ├── Microsoft.Practices.CompositeUI.dll
        │   │   │   ├── Microsoft.Practices.ObjectBuilder.dll
        │   │   │   └── WCPierce.Practices.CompositeUI.WinForms.dll
        │   │   └── CompositeUI
        │   │       ├── Microsoft.Practices.CompositeUI.WinForms.dll
        │   │       ├── Microsoft.Practices.CompositeUI.dll
        │   │       ├── Microsoft.Practices.ObjectBuilder.dll
        │   │       └── WCPierce.Practices.CompositeUI.WinForms.dll
        │   ├── MasterDetail
        │   │   ├── DetailEditForm.Designer.cs
        │   │   ├── DetailEditForm.cs
        │   │   ├── DetailEditForm.resx
        │   │   ├── MasterEditForm.Designer.cs
        │   │   ├── MasterEditForm.cs
        │   │   ├── MasterEditForm.resx
        │   │   ├── MasterListForm.Designer.cs
        │   │   ├── MasterListForm.cs
        │   │   └── MasterListForm.resx
        │   ├── Others
        │   │   ├── CustomForm.Designer.cs
        │   │   ├── CustomForm.cs
        │   │   ├── CustomForm.resx
        │   │   ├── CustomUserControl.Designer.cs
        │   │   ├── CustomUserControl.cs
        │   │   ├── CustomUserControl.resx
        │   │   ├── TreeListForm.Designer.cs
        │   │   ├── TreeListForm.cs
        │   │   └── TreeListForm.resx
        │   ├── Properties
        │   │   ├── AssemblyInfo.cs
        │   │   ├── Resources.Designer.cs
        │   │   ├── Resources.resx
        │   │   └── licenses.licx
        │   ├── Resources
        │   │   ├── 071.png
        │   │   ├── Add.png
        │   │   ├── Cancel.png
        │   │   ├── Close.png
        │   │   ├── ControlPanel.ico
        │   │   ├── Copy.png
        │   │   ├── Delete.png
        │   │   ├── Edit.png
        │   │   ├── Error.png
        │   │   ├── Exception.png
        │   │   ├── Export.png
        │   │   ├── FirstPage.png
        │   │   ├── Import.png
        │   │   ├── Insert.png
        │   │   ├── LastPage.png
        │   │   ├── NextPage.png
        │   │   ├── Print.png
        │   │   ├── PriorPage.png
        │   │   ├── Refresh.png
        │   │   ├── Refresh01.png
        │   │   ├── Save.png
        │   │   ├── SaveAll.bmp
        │   │   ├── SaveAndNew.png
        │   │   ├── Search.png
        │   │   ├── Select.png
        │   │   ├── Update.png
        │   │   └── View.png
        │   ├── Single
        │   │   ├── SingleEditForm.Designer.cs
        │   │   ├── SingleEditForm.cs
        │   │   ├── SingleEditForm.resx
        │   │   ├── SingleListForm.Designer.cs
        │   │   ├── SingleListForm.cs
        │   │   └── SingleListForm.resx
        │   ├── bin
        │   │   └── Debug
        │   │       ├── Framework.Core.dll
        │   │       ├── Framework.Core.pdb
        │   │       ├── Framework.UI.Template.dll
        │   │       ├── Framework.UI.Template.pdb
        │   │       ├── Microsoft.Practices.CompositeUI.dll
        │   │       └── Microsoft.Practices.ObjectBuilder.dll
        │   └── obj
        │       └── Debug
        │           ├── DesignTimeResolveAssemblyReferences.cache
        │           ├── DesignTimeResolveAssemblyReferencesInput.cache
        │           ├── Framework.UI.Template.CommonForm.ExceptionForm.resources
        │           ├── Framework.UI.Template.MasterDetail.DetailEditForm.resources
        │           ├── Framework.UI.Template.MasterDetail.MasterEditForm.resources
        │           ├── Framework.UI.Template.MasterDetail.MasterListForm.resources
        │           ├── Framework.UI.Template.Others.CustomForm.resources
        │           ├── Framework.UI.Template.Others.CustomUserControl.resources
        │           ├── Framework.UI.Template.Others.TreeListForm.resources
        │           ├── Framework.UI.Template.Properties.Resources.resources
        │           ├── Framework.UI.Template.Single.SingleEditForm.resources
        │           ├── Framework.UI.Template.Single.SingleListForm.resources
        │           ├── Framework.UI.Template.csproj.FileListAbsolute.txt
        │           ├── Framework.UI.Template.csproj.GenerateResource.Cache
        │           ├── Framework.UI.Template.csprojResolveAssemblyReference.cache
        │           ├── Framework.UI.Template.dll
        │           ├── Framework.UI.Template.pdb
        │           ├── TempPE
        │           │   └── Properties.Resources.Designer.cs.dll
        │           └── framework.ui.template.dll.licenses
        ├── Framework.sln
        ├── Framework.sln.DotSettings.user
        ├── Framework.suo
        └── Framework.v11.suo

47 directories, 161 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复