更改矩形的 X、Y、宽度或高度是否也会自动更改矩形的左、右、上、下?
我仍在尝试让我的程序与 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,会的。矩形上的仅获取属性是从可设置属性推断出来的。
Yes, it will. The get-only properties on Rectangle are inferred from the settable properties.