【例子介绍】流氓兔电子相册(VS2008 C# WINFORM)
自己做的电子相册(只有界面是仿的)。WINFORM类型的。虽然功能不多,但算得上一个完整的程序,供大家学习参考使用。
【相关图片】
【源码结构】
.
├── 电子相册
│ ├── 数据库
│ │ ├── EAlbum_Data.MDF
│ │ └── EAlbum_Log.LDF
│ └── 电子相册
│ ├── Setup1
│ │ ├── Debug
│ │ │ ├── Setup1.msi
│ │ │ └── setup.exe
│ │ ├── Release
│ │ └── Setup1.vdproj
│ ├── 电子相册
│ │ ├── AboutBox1.Designer.cs
│ │ ├── AboutBox1.cs
│ │ ├── AboutBox1.resx
│ │ ├── Connection.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── FullScreen.Designer.cs
│ │ ├── FullScreen.cs
│ │ ├── FullScreen.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── 3e12ee299c67bc3b.gif
│ │ │ ├── Thumbs.db
│ │ │ └── 流氓兔.jpg
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── CalmnessColor2.ssk
│ │ │ ├── DiamondBlue.ssk
│ │ │ ├── DiamondGreen.ssk
│ │ │ ├── IrisSkin2.dll
│ │ │ ├── favicon.ico
│ │ │ ├── uninst.exe_0.ico
│ │ │ ├── 卸载.exe
│ │ │ ├── 电子相册.application
│ │ │ ├── 电子相册.exe
│ │ │ ├── 电子相册.exe.manifest
│ │ │ ├── 电子相册.pdb
│ │ │ ├── 电子相册.vshost.application
│ │ │ └── 电子相册.vshost.exe
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── 电子相册.AboutBox1.resources
│ │ │ ├── 电子相册.Form1.resources
│ │ │ ├── 电子相册.FullScreen.resources
│ │ │ ├── 电子相册.Properties.Resources.resources
│ │ │ ├── 电子相册.application
│ │ │ ├── 电子相册.csproj.FileListAbsolute.txt
│ │ │ ├── 电子相册.csproj.GenerateResource.Cache
│ │ │ ├── 电子相册.exe
│ │ │ ├── 电子相册.exe.manifest
│ │ │ └── 电子相册.pdb
│ │ ├── 电子相册.csproj
│ │ ├── 电子相册.csproj.user
│ │ └── 电子相册_TemporaryKey.pfx
│ ├── 电子相册.sln
│ └── 电子相册.suo
├── 电子相册.rar
└── 流氓兔电子相册(VS2008 C# WINFORM).zip
15 directories, 56 files
评论