-1

我有问题,

我有圆角矩形。它只在右侧是圆形的,在左侧是直的。我想用其他方式来做——左圆,右直。我应该改变什么?

int ArcWidth = 10 * 2;
int ArcHeight = 10 * 2;
int ArcX1 = Rect.Left;
int ArcX2 = Rect.Right -(ArcWidth + 1);
int ArcY1 = Rect.Top;
int ArcY2 = Rect.Bottom -(ArcHeight + 1);

path.AddArc(ArcX1, ArcY1, 1, 1, 180, 90); // Top Left
path.AddArc(ArcX2, ArcY1, ArcWidth, ArcHeight, 270, 90); //Top Right
path.AddArc(ArcX2, ArcY2, ArcWidth, ArcHeight, 360, 90); //Bottom Right
path.AddArc(ArcX1, ArcY2, 1, ArcHeight, 90, 90); //Bottom Left
4

2 回答 2

0

交换圆形的边。看起来你的所有方面都布置好了。切换所有号码。

于 2013-03-21T14:46:23.243 回答
0

我在这里找到了解决方案:

http://tech.pro/tutorial/656/csharp-creating-rounded-rectangles-using-a-graphics-path

方法是画一条线,而不是弧线......(是的,我知道这很明显)

于 2013-03-22T08:19:21.393 回答