InkCanvas.Children プロパティ

定義

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

プロパティ値

InkCanvas にある子要素のコレクション。

次の例では、 を に追加 TextBlock します 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)

注釈

XAML プロパティ要素の使用

<object>  
  OneOrMoreUIElements  
</object>  

XAML 値

OneOrMoreUIElements
1 つ以上の UIElement オブジェクト。

適用対象