You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
8 months ago | |
---|---|---|
LunaWin | 8 months ago | |
.gitignore | 9 months ago | |
LICENSE | 9 months ago | |
README.md | 9 months ago |
README.md
LunaWin
LunaWin is a small systray utility displaying the current moon phase. It's written in .NET C# using WinForms.
The actual lunar phase calculation credit goes to this blog post (archive), which details the rationale behind the calculations and presents a PHP implementation.
This project demonstrates a number of concepts, some more advanced than others.
Introductory
- Programmatically creating and updating a system tray icon using
NotifyIcon
- Programmatically creating and updating the icon's context menu using
ContextMenuStrip
andToolStripMenuItem
- Setting a program to run at user login (startup)
Advanced