0
我對WPF完全陌生,我試圖讓一個現有的按鈕顯示菜單項的下拉菜單。如何將上下文菜單添加到按鈕?
這是最好的方法是什麼?
<Button Name="ModelReport" Template="{StaticResource GlassButton}"
VerticalAlignment="Bottom" MouseEnter="ModelReport_MouseEnter" Click="CommandButton_Click">
<StackPanel Background="Transparent" Orientation="Horizontal" Margin="5,4,5,4">
<Image Width="16" Height="16" x:Name="ModelReportImage" Source="{StaticResource MyImgScrollInformation}" />
<TextBlock VerticalAlignment="Center" Margin="3,0">Model Report</TextBlock>
</StackPanel>
</Button>
您嘗試了哪些方法?您對這些方法有何看法?請分享。 – Versatile