删除windows窗体中的标准图标
如何只删除左上角的 Windows 窗体应用程序图标而不用其他图标替换它?
how to just delete that windows form application icon in the left corner without replacing it with another icon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你使用的是 C++
in case you're using C++
我假设您正在使用 .Net WinForms。
将表单的 ShowIcon 属性设置为 <代码>假。
I assume that you're using .Net WinForms.
Set the form's ShowIcon property to
false
.如果是 .NET (Winforms),则表单应具有 ShowIcon 属性。将其设置为 false。
If it is .NET (Winforms) the form should have a ShowIcon property. Set this to false.