实例介绍
酒店管理系统源码(ASP C# .NET C 毕业设计) 可直接运行。做毕业设计、课程设计或者想研究下技术的可以下载学习。需要更多资源的可以关注我。
【实例截图】
【核心代码】
c酒店管理系统
└── HCSMSSolution-trunk-master
├── ClientConsole
│ ├── app.con
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── ClientConsole.exe
│ │ ├── ClientConsole.exe.config
│ │ ├── ClientConsole.pdb
│ │ ├── ClientConsole.vshost.exe
│ │ ├── ClientConsole.vshost.exe.config
│ │ ├── ClientConsole.vshost.exe.manifest
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Presentation.dll
│ │ ├── HCSMS.Presentation.Impl.dll
│ │ ├── HCSMS.Presentation.Impl.pdb
│ │ ├── HCSMS.Presentation.pdb
│ │ ├── HCSMS.Service.dll
│ │ └── HCSMS.Service.pdb
│ ├── ClientConsole.csproj
│ ├── ClientConsole.csproj.user
│ ├── ClientTest.cs
│ ├── obj
│ │ └── Debug
│ │ ├── ClientConsole.csproj.FileListAbsolute.txt
│ │ ├── ClientConsole.exe
│ │ ├── ClientConsole.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ ├── Service References.AccountService.Reference.cs.dll
│ │ ├── Service References.AuthorityService.Reference.cs.dll
│ │ └── Service References.KitchenService.Reference.cs.dll
│ └── Properties
│ └── AssemblyInfo.cs
├── DataAccess
│ ├── BillingDao.cs
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.DataAccess.dll
│ │ ├── HCSMS.DataAccess.pdb
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ └── HCSMS.Model.pdb
│ ├── DataAccess.csproj
│ ├── DataAccess.csproj.user
│ ├── ItemDao.cs
│ ├── MemberDao.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DataAccess.csproj.FileListAbsolute.txt
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── HCSMS.DataAccess.dll
│ │ ├── HCSMS.DataAccess.pdb
│ │ ├── Refactor
│ │ │ └── HCSMS.DataAccess.dll
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ReservationDao.cs
│ ├── SpecialOfferDao.cs
│ ├── SystemAccountDao.cs
│ ├── TableDao.cs
│ └── Utilities.cs
├── DataAccessTestProject
│ ├── AuthoringTests.txt
│ ├── bin
│ │ └── Debug
│ │ ├── DataAccessTestProject.dll
│ │ ├── DataAccessTestProject.pdb
│ │ ├── HCSMS.DataAccess.dll
│ │ ├── HCSMS.DataAccess.pdb
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ └── HCSMS.Model.pdb
│ ├── DataAccessTestProject.csproj
│ ├── DinningTableDaoTest.cs
│ ├── ItemDaoTest.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DataAccessTestProject.csproj.FileListAbsolute.txt
│ │ ├── DataAccessTestProject.dll
│ │ ├── DataAccessTestProject.pdb
│ │ └── ResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── HCSMSSolution1.vsmdi
├── HCSMSSolution2.vsmdi
├── HCSMSSolution3.vsmdi
├── HCSMSSolution.sln
├── HCSMSSolution.suo
├── HCSMSSolution.vsmdi
├── LocalTestRun.testrunconfig
├── Model
│ ├── Account.cs
│ ├── AccountStatus.cs
│ ├── Bill.cs
│ ├── BillingInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.Model.dll
│ │ └── HCSMS.Model.pdb
│ ├── DinningTable.cs
│ ├── Item.cs
│ ├── ItemStatus.cs
│ ├── ItemType.cs
│ ├── MemberCard.cs
│ ├── MemberCardType.cs
│ ├── Member.cs
│ ├── Model.csproj
│ ├── Model.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ └── Refactor
│ │ └── HCSMS.Model.dll
│ ├── PreorderTable.cs
│ ├── PriorityLevel.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QueryCriteria.cs
│ ├── RequestHandleInfo.cs
│ ├── RequestType.cs
│ ├── SaleItem.cs
│ ├── Session.cs
│ ├── SpecialOffer.cs
│ ├── StockItem.cs
│ ├── SystemAccount.cs
│ ├── Table.cs
│ └── TableStatus.cs
├── Model.Application
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ └── HCSMS.Model.pdb
│ ├── ErrorEventArgs.cs
│ ├── HandleEventArgs.cs
│ ├── HCSMSException.cs
│ ├── HCSMSLog.cs
│ ├── Model.Application.csproj
│ ├── Model.Application.csproj.user
│ ├── NotifyEventArgs.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── Model.Application.csproj.FileListAbsolute.txt
│ │ ├── Refactor
│ │ │ └── HCSMS.Model.Application.dll
│ │ └── ResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── ModelTestProject
│ ├── AuthoringTests.txt
│ ├── bin
│ │ └── Debug
│ │ ├── ModelTestProject.dll
│ │ └── ModelTestProject.pdb
│ ├── ModelTestProject.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── ModelTestProject.csproj.FileListAbsolute.txt
│ │ ├── ModelTestProject.dll
│ │ ├── ModelTestProject.pdb
│ │ └── ResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── Pesentation
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Presentation.dll
│ │ └── HCSMS.Presentation.pdb
│ ├── IBillingUI.cs
│ ├── IItemUI.cs
│ ├── ILoginUI.cs
│ ├── IMemberUI.cs
│ ├── IReservationUI.cs
│ ├── IStockUI.cs
│ ├── ITableUI.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── HCSMS.Presentation.dll
│ │ ├── HCSMS.Presentation.pdb
│ │ ├── Pesentation.csproj.FileListAbsolute.txt
│ │ └── Refactor
│ │ └── HCSMS.Presentation.dll
│ ├── Pesentation.csproj
│ ├── Pesentation.csproj.user
│ └── Properties
│ └── AssemblyInfo.cs
├── Presentation.Impl
│ ├── app.config
│ ├── BillingUI.cs
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Presentation.dll
│ │ ├── HCSMS.Presentation.Impl.dll
│ │ ├── HCSMS.Presentation.Impl.dll.config
│ │ ├── HCSMS.Presentation.Impl.pdb
│ │ └── HCSMS.Presentation.pdb
│ ├── FrontDeskCallBack.cs
│ ├── FrontDeskCallBackUI.cs
│ ├── ItemUI.cs
│ ├── KitchenCallBack.cs
│ ├── KitchenCallBackUI.cs
│ ├── LoginUI.cs
│ ├── MemberUI.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── HCSMS.Presentation.Impl.dll
│ │ ├── HCSMS.Presentation.Impl.pdb
│ │ ├── Presentation.Impl.csproj.FileListAbsolute.txt
│ │ ├── Refactor
│ │ │ └── HCSMS.Presentation.Impl.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ ├── Service References.AccountService.Reference.cs.dll
│ │ ├── Service References.BillingService.Reference.cs.dll
│ │ ├── Service References.DinningService.Reference.cs.dll
│ │ ├── Service References.FrontDeskRequest.Reference.cs.dll
│ │ ├── Service References.KitchenRequest.Reference.cs.dll
│ │ ├── Service References.KitchenService.Reference.cs.dll
│ │ └── Service References.ReservationService.Reference.cs.dll
│ ├── Presentation.Impl.csproj
│ ├── Presentation.Impl.csproj.user
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── DataSources
│ │ ├── HCSMS.Model.Bill1.datasource
│ │ ├── HCSMS.Model.Bill.datasource
│ │ ├── HCSMS.Model.Item1.datasource
│ │ ├── HCSMS.Model.Item.datasource
│ │ ├── HCSMS.Model.PreorderTable1.datasource
│ │ ├── HCSMS.Model.PreorderTable.datasource
│ │ ├── HCSMS.Model.SaleItem1.datasource
│ │ ├── HCSMS.Model.SaleItem.datasource
│ │ ├── HCSMS.Model.Session1.datasource
│ │ ├── HCSMS.Model.Session.datasource
│ │ ├── HCSMS.Model.SpecialOffer1.datasource
│ │ ├── HCSMS.Model.SpecialOffer.datasource
│ │ ├── HCSMS.Model.Table1.datasource
│ │ └── HCSMS.Model.Table.datasource
│ ├── ReservationUI.cs
│ ├── ServiceAccess.cs
│ ├── Service References
│ │ ├── AccountService
│ │ │ ├── AccountService1.xsd
│ │ │ ├── AccountService2.xsd
│ │ │ ├── AccountService3.xsd
│ │ │ ├── AccountService.disco
│ │ │ ├── AccountService.wsdl
│ │ │ ├── AccountService.xsd
│ │ │ ├── configuration.svcinfo
│ │ │ ├── Reference.cs
│ │ │ └── Reference.svcmap
│ │ ├── BillingService
│ │ │ ├── BillingService1.xsd
│ │ │ ├── BillingService2.xsd
│ │ │ ├── BillingService.disco
│ │ │ ├── BillingService.wsdl
│ │ │ ├── BillingService.xsd
│ │ │ ├── configuration.svcinfo
│ │ │ ├── Reference.cs
│ │ │ └── Reference.svcmap
│ │ ├── DinningService
│ │ │ ├── configuration.svcinfo
│ │ │ ├── DinningService1.xsd
│ │ │ ├── DinningService2.xsd
│ │ │ ├── DinningService3.xsd
│ │ │ ├── DinningService.disco
│ │ │ ├── DinningService.wsdl
│ │ │ ├── DinningService.xsd
│ │ │ ├── Reference.cs
│ │ │ └── Reference.svcmap
│ │ ├── FrontDeskRequest
│ │ │ ├── configuration.svcinfo
│ │ │ ├── FrontDeskRequest1.xsd
│ │ │ ├── FrontDeskRequest2.xsd
│ │ │ ├── FrontDeskRequest31.xsd
│ │ │ ├── FrontDeskRequest3.xsd
│ │ │ ├── FrontDeskRequest.disco
│ │ │ ├── FrontDeskRequest.wsdl
│ │ │ ├── FrontDeskRequest.xsd
│ │ │ ├── Reference.cs
│ │ │ └── Reference.svcmap
│ │ ├── KitchenRequest
│ │ │ ├── configuration.svcinfo
│ │ │ ├── KitchenRequest1.xsd
│ │ │ ├── KitchenRequest2.xsd
│ │ │ ├── KitchenRequest.disco
│ │ │ ├── KitchenRequest.wsdl
│ │ │ ├── KitchenRequest.xsd
│ │ │ ├── Reference.cs
│ │ │ └── Reference.svcmap
│ │ ├── KitchenService
│ │ │ ├── configuration.svcinfo
│ │ │ ├── KitchenService1.xsd
│ │ │ ├── KitchenService2.xsd
│ │ │ ├── KitchenService.disco
│ │ │ ├── KitchenService.wsdl
│ │ │ ├── KitchenService.xsd
│ │ │ ├── Reference.cs
│ │ │ └── Reference.svcmap
│ │ └── ReservationService
│ │ ├── configuration.svcinfo
│ │ ├── Reference.cs
│ │ ├── Reference.svcmap
│ │ ├── ReservationService1.xsd
│ │ ├── ReservationService2.xsd
│ │ ├── ReservationService.disco
│ │ ├── ReservationService.wsdl
│ │ └── ReservationService.xsd
│ ├── StockUI.cs
│ ├── TableUI.cs
│ └── UserInterface.cs
├── Presentation.ImplTestProject
│ ├── app.config
│ ├── AuthoringTests.txt
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Presentation.dll
│ │ ├── HCSMS.Presentation.Impl.dll
│ │ ├── HCSMS.Presentation.Impl.pdb
│ │ ├── HCSMS.Presentation.pdb
│ │ ├── Presentation.ImplTestProject.dll
│ │ ├── Presentation.ImplTestProject.dll.config
│ │ └── Presentation.ImplTestProject.pdb
│ ├── obj
│ │ └── Debug
│ │ ├── Presentation.ImplTestProject.csproj.FileListAbsolute.txt
│ │ ├── Presentation.ImplTestProject.dll
│ │ └── Presentation.ImplTestProject.pdb
│ ├── Presentation.ImplTestProject.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── TableUITest.cs
├── README.txt
├── Service
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Service.dll
│ │ └── HCSMS.Service.pdb
│ ├── IAccountService.cs
│ ├── IBillingService.cs
│ ├── IDinningItemService.cs
│ ├── IDinningService.cs
│ ├── IDinningTableService.cs
│ ├── IFrontDeskCallBack.cs
│ ├── IFrontDeskRequest.cs
│ ├── IKitchenCallBack.cs
│ ├── IKitchenRequest.cs
│ ├── IKitchenService.cs
│ ├── IReservationService.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── HCSMS.Service.dll
│ │ ├── HCSMS.Service.pdb
│ │ ├── Refactor
│ │ │ └── HCSMS.Service.dll
│ │ └── Service.csproj.FileListAbsolute.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Service.csproj
│ └── Service.csproj.user
├── Service.Impl
│ ├── AccountServiceCore.cs
│ ├── AccountService.svc
│ ├── AccountService.svc.cs
│ ├── BillingService.svc
│ ├── BillingService.svc.cs
│ ├── bin
│ │ ├── HCSMS.DataAccess.dll
│ │ ├── HCSMS.DataAccess.pdb
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Service.dll
│ │ ├── HCSMS.Service.Impl.dll
│ │ ├── HCSMS.Service.Impl.pdb
│ │ └── HCSMS.Service.pdb
│ ├── DinningService.svc
│ ├── DinningService.svc.cs
│ ├── FrontDeskRequestControl.cs
│ ├── FrontDeskRequest.svc
│ ├── FrontDeskRequest.svc.cs
│ ├── KitchenRequestControl.cs
│ ├── KitchenRequest.svc
│ ├── KitchenRequest.svc.cs
│ ├── KitchenService.svc
│ ├── KitchenService.svc.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── HCSMS.Service.Impl.dll
│ │ ├── HCSMS.Service.Impl.pdb
│ │ ├── Refactor
│ │ │ └── HCSMS.Service.Impl.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── Service.Impl.csproj.FileListAbsolute.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ReservationService.svc
│ ├── ReservationService.svc.cs
│ ├── Service.Impl.csproj
│ ├── Service.Impl.csproj.user
│ ├── ServiceImplementation.cs
│ └── web.config
├── Service.ImplTestProject
│ ├── AuthoringTests.txt
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.DataAccess.dll
│ │ ├── HCSMS.DataAccess.pdb
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Service.dll
│ │ ├── HCSMS.Service.Impl.dll
│ │ ├── HCSMS.Service.Impl.pdb
│ │ ├── HCSMS.Service.pdb
│ │ ├── Service.ImplTestProject.dll
│ │ └── Service.ImplTestProject.pdb
│ ├── DinningServiceTest.cs
│ ├── obj
│ │ └── Debug
│ │ ├── build.force
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── Service.ImplTestProject.csproj.FileListAbsolute.txt
│ │ ├── Service.ImplTestProject.dll
│ │ └── Service.ImplTestProject.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Service.ImplTestProject.csproj
├── Test
│ └── Properties
├── TestResults
│ ├── Administrator_SERVER 2010-06-10 10_29_25.trx
│ ├── Administrator_SERVER 2010-06-10 10_30_48.trx
│ ├── Administrator_SERVER 2010-06-10 10_31_46.trx
│ ├── Administrator_SERVER 2010-06-10 10_51_44.trx
│ ├── Administrator_SERVER 2010-06-10 10_52_44.trx
│ ├── Administrator_SERVER 2010-06-10 11_01_51.trx
│ ├── Administrator_SERVER 2010-06-10 11_08_26.trx
│ ├── Administrator_SERVER 2010-06-10 11_12_56.trx
│ ├── Administrator_SERVER 2010-06-10 11_18_16.trx
│ ├── Administrator_SERVER 2010-06-10 11_19_03.trx
│ ├── Administrator_SERVER 2010-06-10 11_19_51.trx
│ ├── Administrator_SERVER 2010-06-10 11_24_43.trx
│ ├── Administrator_SERVER 2010-06-10 11_46_39.trx
│ ├── Administrator_SERVER 2010-06-10 11_47_07.trx
│ ├── Administrator_SERVER 2010-06-10 11_47_51.trx
│ ├── Administrator_SERVER 2010-06-10 11_48_19.trx
│ ├── Administrator_SERVER 2010-06-10 11_52_50.trx
│ ├── Administrator_SERVER 2010-06-10 11_57_02.trx
│ ├── Administrator_SERVER 2010-06-10 11_59_47.trx
│ ├── Administrator_SERVER 2010-06-10 12_06_28.trx
│ ├── Administrator_SERVER 2010-06-10 13_26_42.trx
│ ├── Administrator_SERVER 2010-06-10 13_28_04.trx
│ └── Administrator_SERVER 2010-06-10 13_30_03.trx
├── TestServiceConsole
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── HCSMS.Model.Application.dll
│ │ ├── HCSMS.Model.Application.pdb
│ │ ├── HCSMS.Model.dll
│ │ ├── HCSMS.Model.pdb
│ │ ├── HCSMS.Presentation.dll
│ │ ├── HCSMS.Presentation.Impl.dll
│ │ ├── HCSMS.Presentation.Impl.pdb
│ │ ├── HCSMS.Presentation.pdb
│ │ ├── TestServiceConsole.exe
│ │ ├── TestServiceConsole.exe.config
│ │ ├── TestServiceConsole.pdb
│ │ ├── TestServiceConsole.vshost.exe
│ │ ├── TestServiceConsole.vshost.exe.config
│ │ └── TestServiceConsole.vshost.exe.manifest
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ ├── Service References.DinningService.Reference.cs.dll
│ │ │ └── Service References.KitchenService.Reference.cs.dll
│ │ ├── TestServiceConsole.csproj.FileListAbsolute.txt
│ │ ├── TestServiceConsole.exe
│ │ └── TestServiceConsole.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ServiceTest.cs
│ ├── TestServiceConsole.csproj
│ └── TestServiceConsole.csproj.user
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
└── WindowsForms
├── app.conf
├── app.config
├── bin
│ └── Debug
│ ├── HCSMS.DataAccess.dll
│ ├── HCSMS.DataAccess.pdb
│ ├── HCSMS.Model.Application.dll
│ ├── HCSMS.Model.Application.pdb
│ ├── HCSMS.Model.dll
│ ├── HCSMS.Model.pdb
│ ├── HCSMS.Presentation.dll
│ ├── HCSMS.Presentation.Impl.dll
│ ├── HCSMS.Presentation.Impl.pdb
│ ├── HCSMS.Presentation.pdb
│ ├── HCSMS.Presentation.WindowsForms.exe
│ ├── HCSMS.Presentation.WindowsForms.exe.config
│ ├── HCSMS.Presentation.WindowsForms.pdb
│ ├── HCSMS.Presentation.WindowsForms.vshost.exe
│ ├── HCSMS.Presentation.WindowsForms.vshost.exe.config
│ └── HCSMS.Presentation.WindowsForms.vshost.exe.manifest
├── ChangeItemForm.cs
├── ChangeItemForm.Designer.cs
├── ChangeItemForm.resx
├── LoginForm.cs
├── LoginForm.Designer.cs
├── LoginForm.resx
├── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── HCSMS.Presentation.WindowsForms.ChangeItemForm.resources
│ ├── HCSMS.Presentation.WindowsForms.exe
│ ├── HCSMS.Presentation.WindowsForms.LoginForm.resources
│ ├── HCSMS.Presentation.WindowsForms.pdb
│ ├── HCSMS.Presentation.WindowsForms.Properties.Resources.resources
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── WindowsForms.csproj.FileListAbsolute.txt
│ └── WindowsForms.csproj.GenerateResource.Cache
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── WindowsForms.csproj
└── WindowsForms.csproj.user
108 directories, 472 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论