📄 shapesclosedcurve.cs
字号:
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using PdfSharp.Drawing;
namespace XDrawing.TestLab.Tester
{
public class ShapesClosedCurve : TesterBase
{
/// <summary>
/// Demonstrates the use of XGraphics.DrawClosedCurve.
/// </summary>
public override void RenderPage(XGraphics gfx)
{
base.RenderPage(gfx);
XPoint[] points = new XPoint[]
{
new XPoint(50, 100),
new XPoint(450, 120),
new XPoint(550, 300),
//new XPoint(150, 380),
};
gfx.DrawClosedCurve(properties.Pen2.Pen, properties.Brush1.Brush, points,
properties.General.FillMode, properties.General.Tension);
}
public override string Description
{
get {return "DrawClosedCurve";}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -