我在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
的点击事件,但它从未被解雇。