如何向我的程序添加描述(-> 任务管理器中的描述列)(VS 2008,C++)
我在 Visual Studio 2008 中有一个简单的非托管 c++ 项目,并且想添加描述文本。 现在,我只在任务管理器描述列(进程选项卡)中看到可执行文件的名称,但我想在那里提供我自己的文本。
I have a simple unmanaged c++ project in Visual Studio 2008, and would like to add a description text. Right now I just see the name of the executable in task managers description column (processes tab), but I would like to provide my own text there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 VERSIONINFO 资源添加到项目中,并将“FileDescription”属性设置为要显示的字符串。
MSDN VERSIONINFO 文章
You need to add a VERSIONINFO resource to your project, and set the "FileDescription" property to a string that you want to display.
MSDN VERSIONINFO article