将我的菜单停靠在表单的顶部

时间:2016-06-17 08:24:10

标签: wpf menu

我正在努力学习WPF并且正在努力学习一些概念。我还没有设法解决它。

这是XAML文件:

<Window x:Class="OCLMEditor.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:OCLMEditor"
        mc:Ignorable="d"
        Title="MainWindow" Height="517.366" Width="729.7">
    <Grid Margin="0,0,0,119">
        <StackPanel HorizontalAlignment="Left" Height="100" Margin="24,10,0,0" VerticalAlignment="Top" Width="670">
            <Menu x:Name="menuOCLM" Height="38">
                <MenuItem Header="File">
                    <MenuItem Header="Download Schedule Information"/>
                    <Separator/>
                    <MenuItem Header="Export Student Information"/>
                    <MenuItem Header="Import Student Information"/>
                    <Separator/>
                    <MenuItem Header="Page Setup"/>
                    <MenuItem Header="Print Preview"/>
                    <Separator/>
                    <MenuItem Header="Update Google Calendar"/>
                    <Separator/>
                    <MenuItem Header="Exit"/>
                </MenuItem>
                <MenuItem Header="Edit"/>
                <MenuItem Header="View"/>
                <MenuItem Header="Options"/>
                <MenuItem Header="Help"/>
            </Menu>
        </StackPanel>
    </Grid>
</Window>

目前它看起来像这样:

Menu

但是我希望这个菜单栏只是它需要的高度并占据表格的整个宽度。我以为我必须使用StackPanel,但无法正确使用。

0 个答案:

没有答案