如何更改将鼠标悬停在应用程序图标上时显示的名称
好的,我刚刚在 MonoDevelop 中创建了一个名为 Mac-Client 的项目。该项目是具有多个客户端的解决方案的一部分,这就是该应用程序被命名为 Mac-Client 的原因。
当我运行实际的客户端时,问题就出现了。如果我将鼠标悬停在扩展坞中的应用程序图标上,它会显示 Mac-Client,而不是我在 app.plist 中输入的应用程序名称。我还将我能找到的所有对 Mac-Client 的引用更改为 Episode Next(应用程序名称)...当我将鼠标悬停在扩展坞中的图标上时,如何使其显示为 Episode Next?
Ok, so I just created a project in MonoDevelop called Mac-Client. The project is part of a solution with multiple clients, which is why the app is named Mac-Client.
The problem presents itself when I run the actual client. If I hover the mouse over the app icon in the dock, it reads Mac-Client, and not what I entered as app name in the app.plist. I've also changed all references I could find to Mac-Client to Episode Next (name of the app)... What do I do to make it say Episode Next when I hover over the icon in the dock?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Dock 仅显示应用程序包的名称。
在本例中,Mac-Client.app 显示为 Mac-Client。
编辑应用程序 plist 不会影响此行为。
例如,如果您将 Safari.app 重命名为 Firefox.app,则会在 Dock 中显示 Firefox。
在 Dock 中显示另一个标题并同时保留
的唯一方法
应用程序包名称,正在编辑位于以下位置的 Dock plist 文件:
将文件标签条目从“Mac-Client”更改为“Episode Next”。
总之,最好将捆绑包重命名为“Episode Next.app”。
The Dock simply shows the name of the application-bundle.
In this case, Mac-Client.app is shown as Mac-Client.
This behavior cannot be influenced by editing the application plist.
For example, if you rename Safari.app to Firefox.app, it shows Firefox in the Dock.
The only way to display another title within the Dock, while preserving
the application-bundle name, is editing the Dock plist-file located at:
Change the file-label entry from 'Mac-Client' to 'Episode Next'.
In conclusion, better rename the bundle to 'Episode Next.app'.