Popup.IsOpen プロパティ

定義

Popup が表示されるかどうかを示す値を取得または設定します。

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

プロパティ値

Popup が可視の場合は true。それ以外の場合は false。 既定値は、false です。

属性

IsOpen プロパティを設定する方法を次の例に示します。

myPopupIsOpen.IsOpen = true;
myPopupIsOpen.IsOpen = True
<Popup Name="myPopupIsOpen" IsOpen="True" 
       HorizontalOffset=".5cm" VerticalOffset="1cm">
  <TextBlock Background="Yellow">Popup Text</TextBlock>
</Popup>

注釈

コントロールが既定のスタイルの一部として をPopup使用する場合は、 の Popup プロパティをIsOpenコントロールの プロパティにバインドします。 たとえば、 ComboBox はそのプロパティを IsDropDownOpenPopupプロパティにIsOpenバインドできます。 これにより、 が表示されるタイミング Popup を制御するためのロジックが簡略化されます。

依存プロパティ情報

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

適用対象