本文介绍了如何在创建自己的图表时使用缩放?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我在表格和两条线相交的点上绘制了两条线和一条圆,我想使用缩放将该点作为中心。 我该怎么做? 以下是我绘制的两条线和圆圈。 e.Graphics.DrawLine(Pens.Black, 186 , 210 , 471 , 210 ) e.Graphics.DrawLine(Pens.Black, 330 , 82 , 330 , 348 ) e.Graphics。 DrawEllipse(Pens.Black, 210 , 100 , 240 , 220 ) 两条线相交的点是330,210 解决方案 I have drawn two lines and a circle on the form and on the point where two lines intersect i want to use scaling taking that point as center.How can i do this?Here are the two lines and circles i have drawn. e.Graphics.DrawLine(Pens.Black, 186, 210, 471, 210) e.Graphics.DrawLine(Pens.Black, 330, 82, 330, 348) e.Graphics.DrawEllipse(Pens.Black, 210, 100, 240, 220)The point where two lines are intersecting are 330,210 解决方案 这篇关于如何在创建自己的图表时使用缩放?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-25 21:49