Stroke.GetGeometry 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
GetGeometry() | |
GetGeometry(DrawingAttributes) |
지정한 Geometry를 사용하여 현재 Stroke의 DrawingAttributes를 가져옵니다. |
GetGeometry()
public:
System::Windows::Media::Geometry ^ GetGeometry();
public System.Windows.Media.Geometry GetGeometry ();
member this.GetGeometry : unit -> System.Windows.Media.Geometry
Public Function GetGeometry () As Geometry
반환
설명
사용 합니다 GetGeometry 메서드를를 PathGeometry 의 모양을 사용자 지정할 수는 Stroke합니다. 캐싱할 합니다 Geometry 호출을 방지 하려면 GetGeometry 여러 번은 영향을 줄 수 성능.
적용 대상
GetGeometry(DrawingAttributes)
지정한 Geometry를 사용하여 현재 Stroke의 DrawingAttributes를 가져옵니다.
public:
System::Windows::Media::Geometry ^ GetGeometry(System::Windows::Ink::DrawingAttributes ^ drawingAttributes);
public System.Windows.Media.Geometry GetGeometry (System.Windows.Ink.DrawingAttributes drawingAttributes);
member this.GetGeometry : System.Windows.Ink.DrawingAttributes -> System.Windows.Media.Geometry
Public Function GetGeometry (drawingAttributes As DrawingAttributes) As Geometry
매개 변수
- drawingAttributes
- DrawingAttributes
DrawingAttributes의 Geometry를 결정하는 Stroke입니다.
반환
예제
다음 예제에서는 각 원을 그리려면 StylusPoint 의 한 Stroke합니다. 경우는 FitToCurve 속성이 true
는 GetBezierStylusPoints 스타일러스 포인트를 가져오는 데 사용 됩니다. 그렇지 않은 경우는 StylusPoints 속성을 사용 합니다.
protected override void DrawCore(DrawingContext context, DrawingAttributes overrides)
{
// Draw the stroke. Calling base.DrawCore accomplishes the same thing.
Geometry geometry = GetGeometry(overrides);
context.DrawGeometry(new SolidColorBrush(overrides.Color), null, geometry);
StylusPointCollection points;
// Get the stylus points used to draw the stroke. The points used depends on
// the value of FitToCurve.
if (this.DrawingAttributes.FitToCurve)
{
points = this.GetBezierStylusPoints();
}
else
{
points = this.StylusPoints;
}
// Draw a circle at each stylus point.
foreach (StylusPoint p in points)
{
context.DrawEllipse(null, new Pen(Brushes.Black, 1), (Point)p, 5, 5);
}
}
Protected Overrides Sub DrawCore(ByVal context As DrawingContext, _
ByVal overridedAttributes As DrawingAttributes)
' Draw the stroke. Calling base.DrawCore accomplishes the same thing.
Dim geometry As Geometry = GetGeometry(overridedAttributes)
context.DrawGeometry(New SolidColorBrush(overridedAttributes.Color), Nothing, geometry)
Dim points As StylusPointCollection
' Get the stylus points used to draw the stroke. The points used depends on
' the value of FitToCurve.
If Me.DrawingAttributes.FitToCurve Then
points = Me.GetBezierStylusPoints()
Else
points = Me.StylusPoints
End If
' Draw a circle at each stylus point.
Dim p As StylusPoint
For Each p In points
context.DrawEllipse(Nothing, New Pen(Brushes.Black, 1), CType(p, Point), 5, 5)
Next p
End Sub
설명
GetGeometry 메서드를 Width, Height, FitToCurve, StylusTip 및 StylusTipTransform 의 속성 drawingAttributes
결정 하는 Geometry합니다. 캐싱할 합니다 Geometry 호출을 방지 하려면 GetGeometry 여러 번은 영향을 줄 수 성능.
적용 대상
.NET