Udostępnij za pośrednictwem


Stroke.Transform(Matrix, Boolean) Metoda

Definicja

Wykonuje transformację na podstawie określonego Matrix obiektu.

public:
 virtual void Transform(System::Windows::Media::Matrix transformMatrix, bool applyToStylusTip);
public virtual void Transform (System.Windows.Media.Matrix transformMatrix, bool applyToStylusTip);
abstract member Transform : System.Windows.Media.Matrix * bool -> unit
override this.Transform : System.Windows.Media.Matrix * bool -> unit
Public Overridable Sub Transform (transformMatrix As Matrix, applyToStylusTip As Boolean)

Parametry

transformMatrix
Matrix

Matrix Obiekt definiujący przekształcenie.

applyToStylusTip
Boolean

true aby zastosować transformację do końcówki stylus; w przeciwnym razie , false.

Przykłady

W poniższym przykładzie pokazano, jak przekształcić Stroke obiekt.

protected DrawingVisual DrawDCOnly(Stroke myStroke)
{
    // Create new Visual context to draw on
    DrawingVisual myVisual = new DrawingVisual();
    DrawingContext myContext = myVisual.RenderOpen();

    // myMatrix is scaled by:
    // myMatrix.Scale(0.5, 0.5)
    myStroke.Transform(myMatrix, false);

    // Draw the stroke on the Visual context using DrawingContext
    myStroke.Draw(myContext);

    // Close the context
    myContext.Close();

    return myVisual;
}
Function DrawDCOnly(ByVal myStroke As Stroke) As DrawingVisual

    ' Create new Visual context to draw on
    Dim myVisual As DrawingVisual = New DrawingVisual()
    Dim myContext As DrawingContext = myVisual.RenderOpen()

    ' myMatrix is scaled by:
    ' myMatrix.Scale(0.5, 0.5)
    myStroke.Transform(myMatrix, False)

    ' Draw the stroke on the Visual context using DrawingContext
    myStroke.Draw(myContext)

    ' Close the context
    myContext.Close()

    Return myVisual

End Function

Uwagi

Obiekt Matrix reprezentuje macierz 3x3 używaną do przekształceń w dwuwymiarowej przestrzeni. Każdy punkt obiektu Stroke jest przekształcany przez dostarczoną macierz. Jeśli na przykład oryginalna wartość Point.X wynosi 100, oryginalna wartość Point.Y wynosi 55, a wartość transformation Matrix.Scale(0.5, 0.5), nowa wartość Point.X wynosi 50, a nowa wartość Point.Y to 27.5.

Dotyczy