How can I create and show a popup window at a specific time in WPF? What I mean how to display the window on the side of system tray.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You might want to check out
DispatcherTimer
.You could use a timer if you're trying to make the thing popup in a certain number of hours/seconds/minutes (or work out how many hours/seconds/minutes are left until your specific time comes around).
Ok, so you also want to know how to do a notifier popup type thing, which maybe this article in CodeProject might help.
Check out this question for firing an event at a set time.