3

ApplicationBarMenu在 wp7 项目的页面中添加了一个带有图标的新按钮。尝试运行页面时,我得到:

未能分配给属性“Microsoft.Phone.Shell.ApplicationBarIconButton.Click”。[行:56 位置:124]

指向我添加的新菜单项按钮(第二个,send_report_button):

<phone:PhoneApplicationPage.ApplicationBar>
    <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
        <shell:ApplicationBarIconButton x:Name="take_photo_button" IconUri="/Images/appbar.feature.camera.rest.png" Text="Take photo" Click="TakePhotoClick" />
        <shell:ApplicationBarIconButton x:Name="send_report_button" IconUri="/Images/mail.sent.png" Text="Send report" Click="SendReportClick" />
        <shell:ApplicationBarIconButton x:Name="logout_button" IconUri="/Images/appbar.logout.rest.png" Text="Logout"/>
        <shell:ApplicationBar.MenuItems>
            <!--<shell:ApplicationBarMenuItem x:Name="menuItem1" Text="MenuItem 1"/>
            <shell:ApplicationBarMenuItem x:Name="menuItem2" Text="MenuItem 2"/>-->
        </shell:ApplicationBar.MenuItems>
    </shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>

我已经检查了十次我有一个方法.xaml.cs

private void SendReportClick(object sender, RoutedEventArgs e)

但是,VS似乎仍然没有识别它,或者是其他错误。

谢谢

4

1 回答 1

10

问题出在事件处理程序签名中。你有RoutedEventArgs作为第二个参数。它应该只是EventArgs

这是一个解释。不要忘记应用栏是一个外壳对象。

于 2012-04-26T21:11:05.850 回答