创建静态 vb.net“应用程序”由一张图片组成

发布于 2024-09-06 10:28:48 字数 153 浏览 5 评论 0原文

我需要创建一个 vb.net 程序,它由一个不可移动的、始终位于顶部的位图组成,没有菜单栏或任何东西,并且不会作为程序显示在任务栏中。 它需要始终从同一个地方开始。

本质上,我需要使用融入风景的位图来遮盖屏幕的一部分。

我不确定需要调整哪些属性才能实现这一切。

I need to create a vb.net program that consists of a unmovable, always on top bitmap, with no menu bar or anything, and does not show up in the task bar as program.
It needs to always start in the same place.

Essentially I need to mask a part of the screen by using a bitmap that blends into the scenery.

I am not sure which properties I need to tweak to achieve all of this.

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

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

发布评论

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

评论(1

冷弦 2024-09-13 10:28:48

只是尝试更改属性,直到获得正确的结果,但下面的内容可能就是您正在寻找的内容。

StartPosition = Manual
ShowInTaskBar = False
SizeGripStyle = Hide
TopMost = True
ControlBox = False
FormBorderStyle = None
Location = X, Y 'wherever it should be

Just to try changing the properties until you get the right result, but the below is probably sort of what you're looking for.

StartPosition = Manual
ShowInTaskBar = False
SizeGripStyle = Hide
TopMost = True
ControlBox = False
FormBorderStyle = None
Location = X, Y 'wherever it should be
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文