0

我们在 Winform 中有“layoutstyle”属性,可以将 layoutstyle 更改为水平/垂直(所有标题和子菜单),在 WPF 中使用什么来获得相同的结果。

4

1 回答 1

2

你可以给你的菜单一个新的 ItemsPanelTemplate 像这样:

<Menu>
    <Menu.ItemsPanel>
        <ItemsPanelTemplate>
            <VirtualizingStackPanel Orientation="Vertical"/>
        </ItemsPanelTemplate>
    </Menu.ItemsPanel>
    <MenuItem Header="File"/>
    <!-- Other menu items -->
</Menu>

这将垂直布局您的菜单项。

于 2009-07-29T18:46:57.670 回答