WPF Menu控制元件 我也有個不能點菜的選單

Surfnet發表於2024-11-07

WPF Menu控制元件 我也有個不能點菜的選單

Windows 應用程式最常見的部分之一是選單,有時也稱為主選單,因為應用程式中通常只有一個。選單很實用,因為它提供了很多選項,只佔用很少的空間。

向其中新增選單項非常簡單 - 您只需向其中新增 MenuItem 元素,並且每個 MenuItem 可以具有一系列子專案,從而允許您建立分層選單,正如您在許多 Windows 應用程式中所知道的那樣。

做一個選單吧

<Window x:Class="WpfApp11.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:WpfApp11"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <Menu   VerticalAlignment="Top">
            <MenuItem Header="檔案" >
                <MenuItem Header="開啟" />
                <MenuItem Header="儲存" />
                <MenuItem Header="關閉" />
            </MenuItem>
        </Menu>
    </Grid>
</Window>

相關文章