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 上的一个子元素集合。

示例

以下示例将 添加到 TextBlockInkCanvas

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
一个或多个 UIElement 对象。

适用于