更改生成的exe的图标
我正在使用 CodeDomProvider 通过 VB.NET 生成可执行文件。
有没有办法在编译器创建exe文件之前更改图标?
I'm generating an executable file with VB.NET using CodeDomProvider.
Is there a way to change the icon before the compiler creates the exe file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过在 CompilerParameters 那个
您使用 CompilerOptions 传递给代码提供程序 属性。
然后,将这些参数传递给 CompileAssemblyFromSource 方法。生成的 exe 将使用指定的图标作为其应用程序图标。
You can set the icon of the generated exe by specifying it in the CompilerParameters that
you pass to the code provider, using the CompilerOptions property.
You then pass these parameters to the CompileAssemblyFromSource method. The generated exe will then use the specified icon as its application icon.
进入项目属性并从那里选择图标。
就这么简单。
Go into the project properties and select the icon from there.
Simple as that.
您可以在生成后使用RessourcesHacker。这不是最简单的方法,但效果很好
You can use RessourcesHacker AFTER the generation. Not the easiest way, but it works great