屏幕的工作区域总和与其边界有什么区别

发布于 2024-11-03 06:04:56 字数 156 浏览 1 评论 0原文

之间有什么区别

myScreen.WorkingArea.Left + myScreen.WorkingArea.Right  

在.NET中,和

myscreen.Bounds

In the .NET, what is the difference between

myScreen.WorkingArea.Left + myScreen.WorkingArea.Right  

and

myscreen.Bounds

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

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

发布评论

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

评论(2

再可℃爱ぅ一点好了 2024-11-10 06:04:56

工作区域

获取显示器的工作区域。
工作区域是桌面区域
显示的内容,不包括任务栏,
停靠窗口和停靠工具栏。

边界

获取显示的边界。

因此,在第一个实例中,您使用的是实际空间,而在第二个视觉空间中。

Working Area:

Gets the working area of the display.
The working area is the desktop area
of the display, excluding taskbars,
docked windows, and docked tool bars.

Bounds:

Gets the bounds of the display.

So, in the first instance you're working with actual space, while in the second visual space.

止于盛夏 2024-11-10 06:04:56

WorkingArea 排除任务栏(以及其他一些内容。请参阅 msdn)。 Bounds 包括一切。

WorkingArea 是 Rectangle 的一个实例。
Rectangle.Left 给出 x 坐标。
Rectangle.Right 给出 x 坐标 + 宽度。

添加“左”和“右”对我来说没有太大意义。

WorkingArea excludes Taskbar (and a few other thinds. see msdn). Bounds includes everything.

WorkingArea is an instance of Rectangle.
Rectangle.Left gives the x coordinate.
Rectangle.Right gives x coordinate + width.

Adding Left and Right doesn't make too much sense to me.

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