Popup.PlacementTarget 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置当打开 Popup 控件时该控件相对于其放置的元素。
public:
property System::Windows::UIElement ^ PlacementTarget { System::Windows::UIElement ^ get(); void set(System::Windows::UIElement ^ value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.UIElement PlacementTarget { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.PlacementTarget : System.Windows.UIElement with get, set
Public Property PlacementTarget As UIElement
属性值
作为 Popup 控件的逻辑父级的 UIElement。 默认值为 null
。
- 属性
示例
下面的示例创建一个Popup是子Canvas级,并设置为 ellipse1
PlacementTarget ,因此弹出窗口相对于该Ellipse控件。
<Canvas Margin="5" Background="Red" Width="200" Height="150" >
<Ellipse Name="ellipse1"
Canvas.Top="60" Canvas.Left="50"
Height="85" Width="60"
Fill="Black"/>
<Popup IsOpen="True" PlacementTarget="{Binding ElementName=ellipse1}">
<TextBlock Background="LightBlue" FontSize="18">This is a Popup</TextBlock>
</Popup>
</Canvas>
注解
可以通过设置PlacementTarget、PlacementRectangle、Placement和HorizontalOffsetVerticalOffset属性来定位弹出窗口。 有关详细信息,请参阅 Popup 放置行为。
依赖项属性信息
标识符字段 | PlacementTargetProperty |
元数据属性设置为 true |
无 |