如何设置矩形位置属性? (旧路)

时间:2016-09-18 13:52:56

标签: c# .net vb.net coordinates coordinate-transformation

哦,是的,我看到这个= msdn.microsoft.com/en-us/library/system.drawing.rectangle(v = vs.110).aspx

Dim recta As New Rectangle

它说这些属性是只读的。

recta.Left =  
recta.Bottom =  
recta.Right =  
recta.Top =  

我的问题是,我想使用这些属性来设置值: - /
因为我有这种格式的价值观。许多! 所以我猜,我遇到了问题。 ^ _ ^

我看到了这个例子..

Dim blackPen As New Pen(Color.FromArgb(255, 0, 0, 0), 5)  
e.Graphics.DrawRectangle(blackPen, 10, 10, 100, 50)

我如何......?

e.Graphics.DrawRectangle(left-x, bottom-y, right-x, top-y)

而不是..

e.Graphics.DrawRectangle(blackPen, 10, 10, 100, 50)

OR

无论如何转换位置?
E.G 1)2694至9'A Y坐标
2)2706至12'A高度

因为我只希望转换'Y'和'Height'。

enter image description here

0 个答案:

没有答案