在wpf中使用弹出控件

时间:2018-01-17 21:39:28

标签: wpf

我想在我的项目中使用弹出控件。

当我尝试使用它们时,我发现它不起作用

(我想我可能会错过一些使用...)

我该怎么做才能使用弹出控件?

<Window x:Class="WpfApplication.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <MenuFlyout>
    <MenuFlyoutItem Text="Share" >
        <MenuFlyoutItem.Icon>
            <FontIcon Glyph="&#xE72D;" />
        </MenuFlyoutItem.Icon>
    </MenuFlyoutItem>
    <MenuFlyoutItem Text="Copy" Icon="Copy" />
    <MenuFlyoutItem Text="Delete" Icon="Delete" />
    <MenuFlyoutSeparator />
    <MenuFlyoutItem Text="Rename" />
    <MenuFlyoutItem Text="Select" />
    </MenuFlyout>
</Grid>

0 个答案:

没有答案