■ FlyoutPresenter 엘리먼트의 IsDefaultShadowEnabled 속성을 사용해 플라이아웃의 그림자 효과를 비활성화하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<Flyout> <Flyout.FlyoutPresenterStyle> <Style TargetType="FlyoutPresenter"> <Setter Property="IsDefaultShadowEnabled" Value="False" /> </Style> </Flyout.FlyoutPresenterStyle> <StackPanel> <TextBlock Style="{ThemeResource BaseTextBlockStyle}" Text="All items will be removed. Do you want to continue?" /> <Button Name="deleteConfirmationButton" Margin="10 0 0 0" Padding="5" Content="Yes, empty my cart" /> </StackPanel> </Flyout> |