PathGeometry 构造函数

定义

初始化 PathGeometry 类的新实例。

重载

PathGeometry()

初始化 PathGeometry 类的新实例。

PathGeometry(IEnumerable<PathFigure>)

使用指定的 PathGeometry 初始化 Figures 类的新实例。

PathGeometry(IEnumerable<PathFigure>, FillRule, Transform)

使用指定的 PathGeometryFiguresFillRule 初始化 Transform 类的新实例。

PathGeometry()

初始化 PathGeometry 类的新实例。

public:
 PathGeometry();
public PathGeometry ();
Public Sub New ()

适用于

PathGeometry(IEnumerable<PathFigure>)

使用指定的 PathGeometry 初始化 Figures 类的新实例。

public:
 PathGeometry(System::Collections::Generic::IEnumerable<System::Windows::Media::PathFigure ^> ^ figures);
public PathGeometry (System.Collections.Generic.IEnumerable<System.Windows.Media.PathFigure> figures);
new System.Windows.Media.PathGeometry : seq<System.Windows.Media.PathFigure> -> System.Windows.Media.PathGeometry
Public Sub New (figures As IEnumerable(Of PathFigure))

参数

figures
IEnumerable<PathFigure>

FiguresPathGeometry,描述 Path 的内容。

适用于

PathGeometry(IEnumerable<PathFigure>, FillRule, Transform)

使用指定的 PathGeometryFiguresFillRule 初始化 Transform 类的新实例。

public:
 PathGeometry(System::Collections::Generic::IEnumerable<System::Windows::Media::PathFigure ^> ^ figures, System::Windows::Media::FillRule fillRule, System::Windows::Media::Transform ^ transform);
public PathGeometry (System.Collections.Generic.IEnumerable<System.Windows.Media.PathFigure> figures, System.Windows.Media.FillRule fillRule, System.Windows.Media.Transform transform);
new System.Windows.Media.PathGeometry : seq<System.Windows.Media.PathFigure> * System.Windows.Media.FillRule * System.Windows.Media.Transform -> System.Windows.Media.PathGeometry
Public Sub New (figures As IEnumerable(Of PathFigure), fillRule As FillRule, transform As Transform)

参数

figures
IEnumerable<PathFigure>

FiguresPathGeometry,描述 Path 的内容。

fillRule
FillRule

FillRulePathGeometry

transform
Transform

指定已应用转换的 Transform

适用于