C#定时提醒的小程序源码一个简单的C#闹钟小程序的源码! 可以实现自动关机等简单功能
文件清单
└── MyClock ├── MyClock │ ├── About.cs │ ├── About.Designer.cs │ ├── About.resx │ ├── Alrms.cs │ ├── Alrms.Designer.cs │ ├── Alrms.resx │ ├── bin │ │ └── Debug │ │ ├── MyClock.application │ │ ├── MyClock.exe │ │ ├── MyClock.exe.manifest │ │ ├── MyClock.pdb │ │ ├── MyClock.vshost.application │ │ └── MyClock.vshost.exe │ ├── Calendar.cs │ ├── Calendar.Designer.cs │ ├── Calendar.resx │ ├── Form1.cs │ ├── Form1.Designer.cs │ ├── Form1.resx │ ├── MyClock.csproj │ ├── MyClock.csproj.user │ ├── MyClock_TemporaryKey.pfx │ ├── obj │ │ ├── Debug │ │ │ ├── MyClock.About.resources │ │ │ ├── MyClock.Alrms.resources │ │ │ ├── MyClock.application │ │ │ ├── MyClock.Calendar.resources │ │ │ ├── MyClock.csproj.FileListAbsolute.txt │ │ │ ├── MyClock.csproj.GenerateResource.Cache │ │ │ ├── MyClock.exe │ │ │ ├── MyClock.exe.manifest │ │ │ ├── MyClock.MainForm.resources │ │ │ ├── MyClock.pdb │ │ │ ├── MyClock.Properties.Resources.resources │ │ │ ├── MyClock.SetupForm.resources │ │ │ ├── Refactor │ │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ └── MyClock.csproj.FileList.txt │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SetupForm.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.resx │ └── 农历.cs ├── MyClock.sln ├── MyClock.suo ├── UpgradeLog.XML └── _UpgradeReport_Files ├── UpgradeReport.css ├── UpgradeReport_Minus.gif ├── UpgradeReport_Plus.gif └── UpgradeReport.xslt
|