我正在开发一个项目,我称之为可执行程序的LabVIEW程序。我不想看到这些上发生了什么,所以我将前面板的透明度设置为100%。像这样,我没有看到labVIEW程序。执行后,LabVIEW将自动退出。
然而,当LabVIEW运行时,我在windows的任务栏中有了labVIEW的图标。
你知道如何隐藏它吗?我已经尝试在.ini文件中添加HideRootWindow=True
,但它无效。
答案 0 :(得分:0)
Alexander Sobolev的this solution:
For application.exe in file application.ini add row HideRootWindow=True
When you activate VI, set VI-> Property node Front Panel window.Minimizable = True, show window (invoke node VI.Open, window state = standard).
When hiding, you need to track that, set Minimizable = False
Taskbar icon will appear and disappear with window
他还提供了代码(应该是"可拖动"到labview运行):