├── README.md ├── sqlserver ├── library.mdf └── library_log.ldf ├── 图书管理系统.sln ├── 图书管理系统.suo └── 图书管理系统 ├── AlterPwdForm.Designer.cs ├── AlterPwdForm.cs ├── AlterPwdForm.resx ├── App.config ├── BorrowBooks.Designer.cs ├── BorrowBooks.cs ├── BorrowBooks.resx ├── FindBookForm.Designer.cs ├── FindBookForm.cs ├── FindBookForm.resx ├── InsertNewBook.Designer.cs ├── InsertNewBook.cs ├── InsertNewBook.resx ├── LoginForm.Designer.cs ├── LoginForm.cs ├── LoginForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MyDictionary.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ReturnBooks.Designer.cs ├── ReturnBooks.cs ├── ReturnBooks.resx ├── SqlHelper.cs ├── UpdateIndivForm.Designer.cs ├── UpdateIndivForm.cs ├── UpdateIndivForm.resx ├── bin └── Debug │ ├── 图书管理系统.exe │ ├── 图书管理系统.exe.config │ ├── 图书管理系统.pdb │ ├── 图书管理系统.vshost.exe │ ├── 图书管理系统.vshost.exe.config │ └── 图书管理系统.vshost.exe.manifest ├── obj └── x86 │ └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── ResolveAssemblyReference.cache │ ├── 图书管理系统.AlterPwdForm.resources │ ├── 图书管理系统.BorrowBooks.resources │ ├── 图书管理系统.FindBookForm.resources │ ├── 图书管理系统.LoginForm.resources │ ├── 图书管理系统.MainForm.resources │ ├── 图书管理系统.Properties.Resources.resources │ ├── 图书管理系统.ReturnBooks.resources │ ├── 图书管理系统.UpdateIndivForm.resources │ ├── 图书管理系统.csproj.FileListAbsolute.txt │ ├── 图书管理系统.csproj.GenerateResource.Cache │ ├── 图书管理系统.csprojResolveAssemblyReference.cache │ ├── 图书管理系统.exe │ ├── 图书管理系统.pdb │ └── 图书管理系统.新书入库Form.resources ├── 图书管理系统.csproj └── 图书管理系统.csproj.user /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/README.md -------------------------------------------------------------------------------- /sqlserver/library.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/sqlserver/library.mdf -------------------------------------------------------------------------------- /sqlserver/library_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/sqlserver/library_log.ldf -------------------------------------------------------------------------------- /图书管理系统.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统.sln -------------------------------------------------------------------------------- /图书管理系统.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统.suo -------------------------------------------------------------------------------- /图书管理系统/AlterPwdForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/AlterPwdForm.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/AlterPwdForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/AlterPwdForm.cs -------------------------------------------------------------------------------- /图书管理系统/AlterPwdForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/AlterPwdForm.resx -------------------------------------------------------------------------------- /图书管理系统/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/App.config -------------------------------------------------------------------------------- /图书管理系统/BorrowBooks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/BorrowBooks.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/BorrowBooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/BorrowBooks.cs -------------------------------------------------------------------------------- /图书管理系统/BorrowBooks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/BorrowBooks.resx -------------------------------------------------------------------------------- /图书管理系统/FindBookForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/FindBookForm.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/FindBookForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/FindBookForm.cs -------------------------------------------------------------------------------- /图书管理系统/FindBookForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/FindBookForm.resx -------------------------------------------------------------------------------- /图书管理系统/InsertNewBook.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/InsertNewBook.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/InsertNewBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/InsertNewBook.cs -------------------------------------------------------------------------------- /图书管理系统/InsertNewBook.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/InsertNewBook.resx -------------------------------------------------------------------------------- /图书管理系统/LoginForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/LoginForm.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/LoginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/LoginForm.cs -------------------------------------------------------------------------------- /图书管理系统/LoginForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/LoginForm.resx -------------------------------------------------------------------------------- /图书管理系统/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/MainForm.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/MainForm.cs -------------------------------------------------------------------------------- /图书管理系统/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/MainForm.resx -------------------------------------------------------------------------------- /图书管理系统/MyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/MyDictionary.cs -------------------------------------------------------------------------------- /图书管理系统/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/Program.cs -------------------------------------------------------------------------------- /图书管理系统/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /图书管理系统/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/Properties/Resources.resx -------------------------------------------------------------------------------- /图书管理系统/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/Properties/Settings.settings -------------------------------------------------------------------------------- /图书管理系统/ReturnBooks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/ReturnBooks.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/ReturnBooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/ReturnBooks.cs -------------------------------------------------------------------------------- /图书管理系统/ReturnBooks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/ReturnBooks.resx -------------------------------------------------------------------------------- /图书管理系统/SqlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/SqlHelper.cs -------------------------------------------------------------------------------- /图书管理系统/UpdateIndivForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/UpdateIndivForm.Designer.cs -------------------------------------------------------------------------------- /图书管理系统/UpdateIndivForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/UpdateIndivForm.cs -------------------------------------------------------------------------------- /图书管理系统/UpdateIndivForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/UpdateIndivForm.resx -------------------------------------------------------------------------------- /图书管理系统/bin/Debug/图书管理系统.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/bin/Debug/图书管理系统.exe -------------------------------------------------------------------------------- /图书管理系统/bin/Debug/图书管理系统.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/bin/Debug/图书管理系统.exe.config -------------------------------------------------------------------------------- /图书管理系统/bin/Debug/图书管理系统.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/bin/Debug/图书管理系统.pdb -------------------------------------------------------------------------------- /图书管理系统/bin/Debug/图书管理系统.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/bin/Debug/图书管理系统.vshost.exe -------------------------------------------------------------------------------- /图书管理系统/bin/Debug/图书管理系统.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/bin/Debug/图书管理系统.vshost.exe.config -------------------------------------------------------------------------------- /图书管理系统/bin/Debug/图书管理系统.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/bin/Debug/图书管理系统.vshost.exe.manifest -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.AlterPwdForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.AlterPwdForm.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.BorrowBooks.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.BorrowBooks.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.FindBookForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.FindBookForm.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.LoginForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.LoginForm.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.MainForm.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.Properties.Resources.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.ReturnBooks.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.ReturnBooks.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.UpdateIndivForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.UpdateIndivForm.resources -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.exe -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.pdb -------------------------------------------------------------------------------- /图书管理系统/obj/x86/Debug/图书管理系统.新书入库Form.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/obj/x86/Debug/图书管理系统.新书入库Form.resources -------------------------------------------------------------------------------- /图书管理系统/图书管理系统.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/图书管理系统.csproj -------------------------------------------------------------------------------- /图书管理系统/图书管理系统.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ygsama/BooK-Library-System/HEAD/图书管理系统/图书管理系统.csproj.user --------------------------------------------------------------------------------