Button.Flyout 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定與此按鈕相關聯的飛出視窗。
public:
property FlyoutBase ^ Flyout { FlyoutBase ^ get(); void set(FlyoutBase ^ value); };
FlyoutBase Flyout();
void Flyout(FlyoutBase value);
public FlyoutBase Flyout { get; set; }
var flyoutBase = button.flyout;
button.flyout = flyoutBase;
Public Property Flyout As FlyoutBase
<Button>
<Button.Flyout>flyout</Button.Flyout>
</Button>
- or -
<Button Flyout="{StaticResurce flyoutResourceKey"/>
屬性值
與這個按鈕相關聯的飛出視窗,如果有的話;否則為 null。 預設值為 null。
備註
根據預設,設定為 Flyout 屬性值的飛出視窗會在點選或叫用按鈕時顯示,您不需要呼叫方法來顯示它。 這與透過 FlyoutBase.AttachedFlyout 附加屬性指派的飛出視窗行為不同;這些飛出視窗必須透過在飛出視窗實例上呼叫 ShowAt 或靜態 ShowAttachedFlyout 方法來明確顯示。