MenuItem 的子菜单打不开

MenuItem's sub menu don't open

我有一个 MenuItem,在 ToolBar 中有子按钮:

<ToolBar x:Name="toolBar" VerticalAlignment="Top">
      <Button x:Name="btnNew" Content="New"/>
      <MenuItem x:Name="miWindow" Header="Add windows">
             <Button x:Name="btnScore1" Content="Score"/>
             <Button x:Name="btnScore2" Content="Score (complete)"/>
      </MenuItem>
 </ToolBar>

当我点击它时,我的子菜单没有打开。我是不是忘记了什么?

此外,我尝试处理 MenuItem 的点击事件,但它从未被触发。

它应该在 Menu 标签内:

<ToolBar x:Name="toolBar" VerticalAlignment="Top">
    <Button x:Name="btnNew" Content="New"/>
    <Menu>
        <MenuItem x:Name="miWindow" Header="Add windows">
            <Button x:Name="btnScore1" Content="Score"/>
            <Button x:Name="btnScore2" Content="Score (complete)"/>
        </MenuItem>
    </Menu>
</ToolBar>