InkCanvas.Children Proprietà

Definizione

Recupera elementi figlio di InkCanvas.

public:
 property System::Windows::Controls::UIElementCollection ^ Children { System::Windows::Controls::UIElementCollection ^ get(); };
public System.Windows.Controls.UIElementCollection Children { get; }
member this.Children : System.Windows.Controls.UIElementCollection
Public ReadOnly Property Children As UIElementCollection

Valore della proprietà

Un insieme di elementi figlio trovato su InkCanvas.

Esempio

Nell'esempio seguente viene aggiunto un TextBlock oggetto a un oggetto InkCanvas.

textBlock1 = new TextBlock();
textBlock1.Text = "TextBlock content";
Canvas.SetTop(textBlock1, 100);
Canvas.SetLeft(textBlock1, 100);
inkCanvas1.Children.Add(textBlock1);
textBlock1 = New TextBlock()
textBlock1.Text = "TextBlock content"
Canvas.SetTop(textBlock1, 100)
Canvas.SetLeft(textBlock1, 100)
inkCanvas1.Children.Add(textBlock1)

Commenti

Utilizzo della sintassi XAML per elementi proprietà

<object>  
  OneOrMoreUIElements  
</object>  

Valori XAML

OneOrMoreUIElements
Uno o più UIElement oggetti.

Si applica a