【例子介绍】C#仿手机九宫格解锁
C#Winform仿手机九宫格解锁,效果预览地址:http://bbs.cskin.net/forum.php?mod=viewthread&tid=480&fromuid=101
【相关图片】
【源码结构】
文件清单
└── NineLock
├── NineLock
│ ├── bin
│ │ ├── Debug
│ │ │ ├── NineLock.exe
│ │ │ ├── NineLock.pdb
│ │ │ └── NineLock.vshost.exe
│ │ └── Release
│ ├── FrmMain.cs
│ ├── FrmMain.Designer.cs
│ ├── FrmMain.resx
│ ├── NineLock.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── NineLock.csproj.FileListAbsolute.txt
│ │ ├── NineLock.csproj.GenerateResource.Cache
│ │ ├── NineLock.exe
│ │ ├── NineLock.FrmMain.resources
│ │ ├── NineLock.pdb
│ │ ├── NineLock.PointCheck.resources
│ │ ├── NineLock.Properties.Resources.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── PointCheck.cs
│ ├── PointCheck.Designer.cs
│ ├── PointCheck.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Resources
│ ├── NinePoints.png
│ └── NinePointsSelect.png
├── NineLock.sln
└── NineLock.v12.suo
10 directories, 30 files
评论