Popup.Child プロパティ

定義

Popup コントロールのコンテンツを取得または設定します。

public:
 property System::Windows::UIElement ^ Child { System::Windows::UIElement ^ get(); void set(System::Windows::UIElement ^ value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.UIElement Child { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Child : System.Windows.UIElement with get, set
Public Property Child As UIElement

プロパティ値

Popup コントロールの UIElement コンテンツ。 既定値は、null です。

属性

次の例は、コントロールにコンテンツを追加する方法を Popup 示しています。

Popup myPopupWithText = new Popup();
TextBlock textBlock = new TextBlock();
textBlock.Text = "Popup Text";
textBlock.Background = Brushes.Yellow;
myPopupWithText.Child = textBlock;
myStackPanel.Children.Add(myPopup);
Dim myPopupWithText As New Popup()
Dim textBlock As New TextBlock()
textBlock.Text = "Popup Text"
textBlock.Background = Brushes.Yellow
myPopupWithText.Child = textBlock
myStackPanel.Children.Add(myPopup)
<DockPanel>
  <Popup IsOpen="True">
    <TextBlock Background="Yellow">Popup Text</TextBlock>
  </Popup>
</DockPanel>

注釈

コンテンツ モデル: Child プロパティは、コントロールの唯一の Popup コンテンツ プロパティです。 は Popup 子として 1 つだけ UIElement 持つことができますが、その子には複雑な埋め込みコンテンツを含めることができます。 たとえば、子には、、テキスト、およびその他の種類のコントロールをImage含む を指定できますStackPanel

コンテンツがコントロールに Popup 追加されると、コントロールは Popup コンテンツの論理親になります。 同様に、 Popup コンテンツは の論理子と見なされます Popup。 子コンテンツは、コントロールを含むビジュアル ツリーには Popup 追加されません。 代わりに、 が に設定されている場合、子コンテンツは独自のビジュアル ツリーを持つ別の IsOpen ウィンドウに trueレンダリングされます。

依存プロパティ情報

識別子フィールド ChildProperty
に設定されたメタデータ プロパティ true なし

適用対象