仅存在于任务栏中的 Windows 应用程序
我是 Windows 编程新手(任何 win 32 API)。 我想创建一个 Windows 应用程序,它始终监听剪贴板并对键盘快捷键做出反应(例如,您从剪贴板复制文本并按 Ctrl-F,然后对剪贴板中的文本执行某些操作)。 我知道如何在 win32 和 C# (.NET) 中制作窗口应用程序,但它是一个窗口应用程序,有一个窗口并出现在窗口面板中。 我想要一个仅在任务栏右侧可见的应用程序,以便您可以将其关闭(就像大多数防病毒软件一样),并在其关闭时继续从头开始运行。
有人有一些代码模板,或者可以推荐我一个教程吗?我不介意它是 C\C+ 还是 C#。
10 倍。
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 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可以是另一个 Windows 应用程序,其中表单的
ShowInTaskbar
属性设置为 false,并且您添加一个NotifyIcon
组件以将其放入托盘中。这是来自 CodeProject 的文章。您可以在 codeproject 或其他编程相关网站上找到更多内容。It can be another windows application in which the form's
ShowInTaskbar
property is set to false and you add aNotifyIcon
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.您可能会发现这个很有用,尽管它是用C语言编写的。
或者 C# 中的这个。
You may find this useful, although it's in C.
Or this in C#.