共用方式為


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

屬性值

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只能有一個 UIElement 作為子系,但該子系可以包含複雜的內嵌內容。 例如,子系可以是 StackPanel 包含 Image 、文字和其他類型的控制項的 。

將內容新增至 Popup 控制項時, Popup 控制項會變成內容的邏輯父代。 同樣地,內容 Popup 會被視為 的 Popup 邏輯子系。 子內容不會新增至包含 Popup 控制項的視覺化樹狀結構。 相反地,當 設定 true 為 時 IsOpen ,子內容會以自己的視覺化樹狀結構在個別視窗中轉譯。

相依性屬性資訊

識別碼欄位 ChildProperty
設定為 的中繼資料屬性 true

適用於