ApplicationBarIconButton点击事件崩溃
我不确定出了什么问题/缺少什么,但我收到以下错误:
“AG_E_PARSER_BAD_PROPERTY_VALUE”
每当我向应用程序栏的 xaml 添加“Click=”时。
我当前有以下代码:
方法 Settings_Click 存在,除此之外,我不确定我还缺少什么?
I'm not sure what's wrong/what I'm missing but I get the following error:
"AG_E_PARSER_BAD_PROPERTY_VALUE"
Whenever I add a "Click=" to my xaml for the application bar.
I have this code currently:
<shell:ApplicationBarIconButton IconUri="/Resources/Icons/ApplicationBar.Settings.png" Text="Settings" Click="Settings_Click"/>
The method Settings_Click exists, beyond that, I'm not sure what I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的建议:如果您总是为按钮命名并让 Visual Studio 智能创建处理程序方法,则这种情况永远不会发生:
My Advice: If you always give your buttons a name and let visual studio intellisence to create handler methods this never happens:
您确定该方法具有正确的签名吗?
Are you sure the method has the right signature?