嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C# winform ibatisnet datagridview数据库分页。 使用前先在数据库中创建sys_user表。字段看配置文件。
.
├── C#winform ibatisnet框架.zip
└── abcC
├── Backup
│ ├── abcC
│ │ ├── App.config
│ │ ├── DAO
│ │ │ ├── domain
│ │ │ │ ├── ComPictrue.cs
│ │ │ │ ├── LibIn.cs
│ │ │ │ ├── LibOut.cs
│ │ │ │ ├── ProductInfo.cs
│ │ │ │ ├── SysLogInfo.cs
│ │ │ │ ├── User.cs
│ │ │ │ └── VenderInfo.cs
│ │ │ ├── model
│ │ │ │ ├── BaseModel.cs
│ │ │ │ ├── ComPictrueModel.cs
│ │ │ │ ├── LibInModel.cs
│ │ │ │ ├── LibOutModel.cs
│ │ │ │ ├── ProductInfoModel.cs
│ │ │ │ ├── SysLogInfoModel.cs
│ │ │ │ ├── SysUserModel.cs
│ │ │ │ └── VenderInfoModel.cs
│ │ │ └── service
│ │ │ ├── ComPictrueDao.cs
│ │ │ ├── LibInDao.cs
│ │ │ ├── LibOutDao.cs
│ │ │ ├── ProductInfoDao.cs
│ │ │ ├── UserDao.cs
│ │ │ └── VenderInfoDao.cs
│ │ ├── DB
│ │ │ ├── DBHelper.cs
│ │ │ └── framework
│ │ │ ├── BaseDao.cs
│ │ │ ├── Constants.cs
│ │ │ └── Page.cs
│ │ ├── DLL
│ │ │ ├── IBatisNet.Common.dll
│ │ │ └── IBatisNet.DataMapper.dll
│ │ ├── Person.xml
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── SqlMap.config
│ │ ├── TOOL
│ │ │ ├── CommonDBTool.cs
│ │ │ ├── ConfigUtil.cs
│ │ │ ├── SqlData.cs
│ │ │ ├── SystemUtil.cs
│ │ │ └── UUIDService.cs
│ │ ├── UI
│ │ │ ├── DbConnection.Designer.cs
│ │ │ ├── DbConnection.cs
│ │ │ ├── DbConnection.resx
│ │ │ ├── Login.Designer.cs
│ │ │ ├── Login.cs
│ │ │ ├── Login.resx
│ │ │ ├── Main.Designer.cs
│ │ │ ├── Main.cs
│ │ │ ├── Main.resx
│ │ │ ├── UserForm.Designer.cs
│ │ │ ├── UserForm.cs
│ │ │ └── UserForm.resx
│ │ ├── abcC.csproj
│ │ ├── abcC.csproj.user
│ │ └── providers.config
│ ├── abcC.sln
│ └── abcC.suo
├── PageControl
│ ├── PageControl.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── UserControl1.Designer.cs
│ ├── UserControl1.cs
│ ├── UserControl1.resx
│ ├── bin
│ │ └── Debug
│ │ ├── PageControl.dll
│ │ └── PageControl.pdb
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GenerateResource-ResGen.read.1.tlog
│ ├── GenerateResource-ResGen.write.1.tlog
│ ├── GenerateResource.read.1.tlog
│ ├── GenerateResource.write.1.tlog
│ ├── PageControl.UserControl1.resources
│ ├── PageControl.csproj.FileListAbsolute.txt
│ ├── PageControl.dll
│ ├── PageControl.pdb
│ └── TempPE
├── PagesControl
│ ├── PagesControl.Designer.cs
│ ├── PagesControl.cs
│ ├── PagesControl.csproj
│ ├── PagesControl.resx
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Config
│ │ │ │ └── sql
│ │ │ ├── PagesControl.dll
│ │ │ └── PagesControl.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GenerateResource-ResGen.read.1.tlog
│ ├── GenerateResource-ResGen.write.1.tlog
│ ├── PagesControl.PagesControl.resources
│ ├── PagesControl.csproj.FileListAbsolute.txt
│ ├── PagesControl.dll
│ ├── PagesControl.pdb
│ └── TempPE
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport.xslt
│ ├── UpgradeReport_Minus.gif
│ └── UpgradeReport_Plus.gif
├── abcC
│ ├── App.config
│ ├── Config
│ │ ├── SqlMap.config
│ │ ├── providers.config
│ │ └── sql
│ │ └── SysUserSql.xml
│ ├── DB
│ │ ├── DBHelper.cs
│ │ └── framework
│ │ ├── BaseDao.cs
│ │ ├── Constants.cs
│ │ └── Page.cs
│ ├── DBHelper
│ │ └── DbHelper.cs
│ ├── DLL
│ │ ├── IBatisNet.Common.dll
│ │ └── IBatisNet.DataMapper.dll
│ ├── Dao
│ │ ├── domain
│ │ │ ├── ComPictrue.cs
│ │ │ ├── LibIn.cs
│ │ │ ├── LibOut.cs
│ │ │ ├── ProductInfo.cs
│ │ │ ├── SysLogInfo.cs
│ │ │ ├── User.cs
│ │ │ └── VenderInfo.cs
│ │ ├── model
│ │ │ ├── BaseModel.cs
│ │ │ ├── ComPictrueModel.cs
│ │ │ ├── LibInModel.cs
│ │ │ ├── LibOutModel.cs
│ │ │ ├── ProductInfoModel.cs
│ │ │ ├── SysLogInfoModel.cs
│ │ │ ├── SysUserModel.cs
│ │ │ └── VenderInfoModel.cs
│ │ └── service
│ │ ├── ComPictrueDao.cs
│ │ ├── LibInDao.cs
│ │ ├── LibOutDao.cs
│ │ ├── ProductInfoDao.cs
│ │ ├── UserDao.cs
│ │ └── VenderInfoDao.cs
│ ├── GetSqlMapper.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TOOL
│ │ ├── CommonDBTool.cs
│ │ ├── ConfigUtil.cs
│ │ └── SystemUtil.cs
│ ├── UI
│ │ ├── DbConnection.Designer.cs
│ │ ├── DbConnection.cs
│ │ ├── DbConnection.resx
│ │ ├── Login.Designer.cs
│ │ ├── Login.cs
│ │ ├── Login.resx
│ │ ├── Main.Designer.cs
│ │ ├── Main.cs
│ │ ├── Main.resx
│ │ ├── UserForm.Designer.cs
│ │ ├── UserForm.cs
│ │ └── UserForm.resx
│ ├── abcC.csproj
│ ├── abcC.csproj.user
│ ├── bin
│ │ ├── Debug
│ │ │ ├── AxInterop.MSACAL.dll
│ │ │ ├── CONFIG
│ │ │ │ ├── SqlMap.config
│ │ │ │ ├── providers.config
│ │ │ │ └── sql
│ │ │ │ └── SysUserSql.xml
│ │ │ ├── DAO
│ │ │ │ ├── domain
│ │ │ │ ├── model
│ │ │ │ └── sql
│ │ │ ├── IBatisNet.Common.dll
│ │ │ ├── IBatisNet.DataMapper.dll
│ │ │ ├── Interop.MSACAL.dll
│ │ │ ├── SqlMap.config.bak
│ │ │ ├── WeifenLuo.WinFormsUI.Docking.dll
│ │ │ ├── abcC.exe
│ │ │ ├── abcC.exe.config
│ │ │ ├── abcC.exe.config.bak
│ │ │ ├── abcC.pdb
│ │ │ ├── abcC.vshost.exe
│ │ │ ├── abcC.vshost.exe.config
│ │ │ └── sqlnet.log
│ │ └── Release
│ └── obj
│ ├── Debug
│ │ ├── AxInterop.MSACAL.dll
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ ├── GenerateResource-ResGen.read.4.tlog
│ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ ├── Interop.MSACAL.dll
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── abcC.Properties.Resources.resources
│ │ ├── abcC.UI.DbConnection.resources
│ │ ├── abcC.UI.Login.resources
│ │ ├── abcC.UI.Main.resources
│ │ ├── abcC.UserForm.resources
│ │ ├── abcC.csproj.FileListAbsolute.txt
│ │ ├── abcC.csproj.GenerateResource.Cache
│ │ ├── abcC.csproj.ResolveComReference.cache
│ │ ├── abcC.exe
│ │ └── abcC.pdb
│ └── abcC.csproj.FileListAbsolute.txt
├── abcC.sln
└── abcC.suo
58 directories, 190 files