删除windows窗体中的标准图标

发布于 2024-08-18 11:19:47 字数 44 浏览 5 评论 0原文

如何只删除左上角的 Windows 窗体应用程序图标而不用其他图标替换它?

how to just delete that windows form application icon in the left corner without replacing it with another icon?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

℉絮湮 2024-08-25 11:19:48

如果你使用的是 C++

HWND hWnd;  // = WindowHandle()
::SetWindowLong(hWnd, GWL_EXSTYLE, 
                ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_DLGMODALFRAME);

in case you're using C++

HWND hWnd;  // = WindowHandle()
::SetWindowLong(hWnd, GWL_EXSTYLE, 
                ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_DLGMODALFRAME);
愚人国度 2024-08-25 11:19:47

我假设您正在使用 .Net WinForms。

将表单的 ShowIcon 属性设置为 <代码>假。

I assume that you're using .Net WinForms.

Set the form's ShowIcon property to false.

黯然#的苍凉 2024-08-25 11:19:47

如果是 .NET (Winforms),则表单应具有 ShowIcon 属性。将其设置为 false。

If it is .NET (Winforms) the form should have a ShowIcon property. Set this to false.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文