Windows aplication that lives only in the taskbar
I'm new to windows programming (any win 32 API). I want to create a windows application that listens to the clipborad all the time and reacts to keyboard shortcuts (for example you copy text from the ClipBoard and press Ctrl-F and something is done on the text in the clipboard). I know how to make a window app in win32 and in C# (.NET) but it's a开发者_如何学C windowed application which has a window and appears in the window panel. I want an pplication that will only be visible in the taskbar right part so you can close it (like most antivirus do) and keeps on running from start will it's closed.
Anyone got some code template, or can reffer me to a tutorial ? i don't mind if it's C\C+ or C#.
10x.
It can be another windows application in which the form's ShowInTaskbar
property is set to false and you add a NotifyIcon
component to put it into tray. Here is an article from CodeProject. You can find many more on codeproject or on other programming related sites.
You may find this useful, although it's in C. Or this in C#.
精彩评论