更改矩形的 X、Y、宽度或高度是否也会自动更改矩形的左、右、上、下?

发布于 2024-12-10 05:50:05 字数 240 浏览 0 评论 0原文

我仍在尝试让我的程序与 .Net 矩形一起工作。我的问题是这样的。如果更改矩形的 X、Y、宽度或高度,是否会自动更改矩形的其他属性,例如上/下/右/左。

例如,如果我想更改矩形的 Right 属性,我可以执行以下操作。

e: System.Windows.Forms.MouseEventArgs;
dragRect.width := e.X - dragRect.X;

提前致谢。

I am still trying to get my program to work with .Net Rectangle shape. My question is this. If you change X,Y,Width or Height of a Rectangle, will it automatically change other properties of a Rectangle such as Top/Bottom/Right/Left.

For instance, if I want the Right property of a rectangle changed can I do the following.

e: System.Windows.Forms.MouseEventArgs;
dragRect.width := e.X - dragRect.X;

Thanks in advance.

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

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

发布评论

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

评论(1

谜兔 2024-12-17 05:50:05

是的,会的。矩形上的仅获取属性是从可设置属性推断出来的。

Yes, it will. The get-only properties on Rectangle are inferred from the settable properties.

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