StrokeCollection.Add(StrokeCollection) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Aggiunge i tratti specificati all'oggetto StrokeCollection.
public:
void Add(System::Windows::Ink::StrokeCollection ^ strokes);
public void Add (System.Windows.Ink.StrokeCollection strokes);
override this.Add : System.Windows.Ink.StrokeCollection -> unit
Public Sub Add (strokes As StrokeCollection)
Parametri
- strokes
- StrokeCollection
Oggetto StrokeCollection da aggiungere alla raccolta.
Eccezioni
L'oggetto Stroke in strokes
è già un membro di StrokeCollection.
strokes
è null
.
Esempio
Nell'esempio seguente viene illustrato come copiare l'input penna in un InkCanvas altro InkCanvasoggetto . Questo esempio presuppone:
Esistono due InkCanvas oggetti denominati
inkCanvas1
einkCanvas2
.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 metodo Add genera l'evento StrokesChanged.