Flyout.FlyoutPresenterStyle 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
property Style ^ FlyoutPresenterStyle { Style ^ get(); void set(Style ^ value); };
Style FlyoutPresenterStyle();
void FlyoutPresenterStyle(Style value);
public Style FlyoutPresenterStyle { get; set; }
var style = flyout.flyoutPresenterStyle;
flyout.flyoutPresenterStyle = style;
Public Property FlyoutPresenterStyle As Style
<Flyout FlyoutPresenterStyle={StaticResource styleResourceKey}/>
- or -
<Flyout>
<Flyout.FlyoutPresenterStyle>
<Style TargetType="FlyoutPresenter">
oneOrMoreSetters
</Style>
</Flyout.FlyoutPresenterStyle>
</Flyout>
屬性值
如果存在,則為飛出視窗內容的套用樣式;否則為null。 預設值為 null。
備註
您用於 FlyoutPresenterStyle 值的 Style 元素必須指定 TargetType="FlyoutPresenter"
。
飛出視窗本身不是控制項或甚至是UIElement,因此沒有任何屬性可套用Style。 相反地,您可以設定呈現飛出視窗內容的內部FlyoutPresenter屬性樣式。 可設定樣式的屬性是基底ContentControl類別或Control類別的相依性屬性,例如FontSize或Padding,或FlyoutPresenter類別繼承的FrameworkElement.Margin等基底元素屬性。 您也可以使用設定為 Flyout.Content之任一元素上可用的屬性,並直接設定這些屬性的值,而不是設定 FlyoutPresenter的樣式。