屏幕的工作区域总和与其边界有什么区别
之间有什么区别
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
工作区域:
边界:
因此,在第一个实例中,您使用的是实际空间,而在第二个视觉空间中。
Working Area:
Bounds:
So, in the first instance you're working with actual space, while in the second visual space.
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.