Popup.Placement プロパティ

定義

Popup コントロールが開いた場合のこのコントロールの向きを取得または設定し、Popup コントロールが画面の境界と重複する場合のこのコントロールの動作を指定します。

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

プロパティ値

PlacementMode

PlacementMode コントロールが開いた場合にこのコントロールの向きを決定し、このコントロールが画面の境界とどのように対話するかを指定する Popup 列挙値。 既定値は、Bottom です。

属性

次の例では、イメージに対して相対的な 4 つの Popup コントロールを作成します。 配置 Popup プロパティの値はそれぞれ異なります。

<Canvas Width="200" Height="150">
  <Image Name="image1"
         Canvas.Left="75" 
         Source="Water_lilies.jpg" Height="200" Width="200"/>
  <Popup IsOpen="True" PlacementTarget="{Binding ElementName=image1}"
         Placement="Bottom">
    <TextBlock FontSize="14" Background="LightGreen">Placement=Bottom</TextBlock>

  </Popup>
  <Popup IsOpen="True" PlacementTarget="{Binding ElementName=image1}"
         Placement="Top">
    <TextBlock FontSize="14" Background="LightGreen">Placement=Top</TextBlock>

  </Popup>
  <Popup IsOpen="True" PlacementTarget="{Binding ElementName=image1}"
         Placement="Left">
    <TextBlock FontSize="14" Background="LightGreen">Placement=Left</TextBlock>

  </Popup>
  <Popup IsOpen="True" PlacementTarget="{Binding ElementName=image1}"
         Placement="Right">
    <TextBlock FontSize="14" Background="LightGreen">Placement=Right</TextBlock>

  </Popup>
</Canvas>

注釈

ポップアップの位置は、PlacementTargetPlacementRectanglePlacementHorizontalOffsetVerticalOffset の各プロパティで設定できます。 詳細については、「Popup Placement Behavior」を参照してください。

プロパティが MenuDropAlignment 、 の位置PopupLeft設定PlacementまたはRight反転する場合、 true; a PopupPlacementLeft左端を右端PlacementTarget Placement Popupに揃え、with を設定してRight右端を左端PlacementTargetに揃えます。

依存プロパティ情報

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

適用対象

こちらもご覧ください