StrokeCollection.Clone Metodo

Definizione

public:
 virtual System::Windows::Ink::StrokeCollection ^ Clone();
public virtual System.Windows.Ink.StrokeCollection Clone ();
abstract member Clone : unit -> System.Windows.Ink.StrokeCollection
override this.Clone : unit -> System.Windows.Ink.StrokeCollection
Public Overridable Function Clone () As StrokeCollection

Restituisce

Copia di StrokeCollection.

Esempio

Nell'esempio seguente viene illustrato come copiare l'input penna in un InkCanvas altro InkCanvasoggetto . Questo esempio presuppone:

  • Ci sono due InkCanvas oggetti chiamati inkCanvas1 e inkCanvas2.

  • L'evento Click è stato connesso al gestore eventi.

// Copy the strokes from one InkCanvas to another InkCanvas.
private void CopyStrokes_Click(object sender, RoutedEventArgs e) 
{
    StrokeCollection strokes = inkCanvas1.Strokes.Clone();
    inkCanvas2.Strokes.Clear();
    inkCanvas2.Strokes.Add(strokes);
}
' Copy the strokes from one InkCanvas to another InkCanvas.
Private Sub CopyStrokes_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)

    Dim strokes As StrokeCollection = inkCanvas1.Strokes.Clone()
    inkCanvas2.Strokes.Clear()
    inkCanvas2.Strokes.Add(strokes)

End Sub

Commenti

Il Clone metodo copia ognuno Stroke nell'insieme e il nuovo fa riferimento ai nuovi StrokeCollection tratti.

Si applica a