Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们在 Winform 中有“layoutstyle”属性,可以将 layoutstyle 更改为水平/垂直(所有标题和子菜单),在 WPF 中使用什么来获得相同的结果。
你可以给你的菜单一个新的 ItemsPanelTemplate 像这样:
<Menu> <Menu.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel Orientation="Vertical"/> </ItemsPanelTemplate> </Menu.ItemsPanel> <MenuItem Header="File"/> <!-- Other menu items --> </Menu>
这将垂直布局您的菜单项。