Sdílet prostřednictvím


DynamicRenderer.Reset(StylusDevice, StylusPointCollection) Metoda

Definice

Vymaže vykreslování aktuálního tahu a překreslí ho.

public:
 virtual void Reset(System::Windows::Input::StylusDevice ^ stylusDevice, System::Windows::Input::StylusPointCollection ^ stylusPoints);
public virtual void Reset (System.Windows.Input.StylusDevice stylusDevice, System.Windows.Input.StylusPointCollection stylusPoints);
abstract member Reset : System.Windows.Input.StylusDevice * System.Windows.Input.StylusPointCollection -> unit
override this.Reset : System.Windows.Input.StylusDevice * System.Windows.Input.StylusPointCollection -> unit
Public Overridable Sub Reset (stylusDevice As StylusDevice, stylusPoints As StylusPointCollection)

Parametry

stylusDevice
StylusDevice

Aktuální pero zařízení.

stylusPoints
StylusPointCollection

Pero, které se má překreslit.

Výjimky

Pero ani myš nejsou ve stavu mimo provoz.

Příklady

Následující příklad změní barvu aktuálního tahu při jeho kreslení.

bool selectionMode = false;

public void ToggleSelect()
{
    StylusDevice currentStylus = Stylus.CurrentStylusDevice;

    // Check if the stylus is down or the mouse is pressed.
    if (Mouse.LeftButton != MouseButtonState.Pressed &&
        (currentStylus == null || currentStylus.InAir))
    {
        return;
    }
    
    selectionMode = !selectionMode;

    // If the control is in selection mode, change the color of 
    // the current stroke dark gray.
    if (selectionMode)
    {
        dynamicRenderer1.DrawingAttributes.Color = Colors.DarkGray;
    }
    else
    {
        dynamicRenderer1.DrawingAttributes.Color = Colors.Purple;
    }

    dynamicRenderer1.Reset(currentStylus, stylusPoints);
}
Private selectionMode As Boolean = False


Public Sub ToggleSelect() 
    Dim currentStylus As StylusDevice = Stylus.CurrentStylusDevice
    
    ' Check if the stylus is down or the mouse is pressed.
    If Mouse.LeftButton <> MouseButtonState.Pressed AndAlso _
      (currentStylus Is Nothing OrElse currentStylus.InAir) Then
        Return
    End If
    
    selectionMode = Not selectionMode
    
    ' If the control is in selection mode, change the color of 
    ' the current stroke dark gray.
    If selectionMode Then
        dynamicRenderer1.DrawingAttributes.Color = Colors.DarkGray
    
    Else
        dynamicRenderer1.DrawingAttributes.Color = Colors.Purple
    End If 
    
    dynamicRenderer1.Reset(currentStylus, stylusPoints)

End Sub

Poznámky

Překreslí DynamicRenderer aktuální tah a všechny body pera předané metodě Reset . Tato metoda umožňuje překreslit tah, zatímco uživatel stále vytváří tah. Pero pro tablet se musí dotýkat digitalizátoru nebo musí být při zavolání stisknuté Reset levé tlačítko myši.

Poznámky pro dědice

Při přepsání Reset(StylusDevice, StylusPointCollection) v odvozené třídě nezapomeňte volat metodu základní třídy Reset(StylusDevice, StylusPointCollection) .

Platí pro