Application.MainFormOnTaskbar := False;不从任务栏隐藏应用程序
为什么将 Application.MainFormOnTaskbar 设置为 False 不会阻止应用程序在任务栏上显示?
请帮忙。谢谢。
Why setting Application.MainFormOnTaskbar to False is not preventing the application from showing on taskbar?
Please help. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为那不是它的作用。 MainFormOnTaskbar 使主窗体显示为任务栏按钮而不是应用程序本身。如果您想要制作一个任务栏上不存在的应用程序,请参阅本文.
Because that's not what it does. MainFormOnTaskbar makes it so that the main form shows up as a taskbar button instead of the application itself. If you want to make an app with no presence on the taskbar, see this article.