ApplicationBarIconButton点击事件崩溃

发布于 2024-11-24 09:25:39 字数 357 浏览 0 评论 0原文

我不确定出了什么问题/缺少什么,但我收到以下错误:

“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海夕 2024-12-01 09:25:39

我的建议:如果您总是为按钮命名并让 Visual Studio 智能创建处理程序方法,则这种情况永远不会发生:

<shell:ApplicationBarIconButton x:Name="btnSettings" IconUri="..." Text="Settings" 
         Click="[let intellisence complete this]"/>

My Advice: If you always give your buttons a name and let visual studio intellisence to create handler methods this never happens:

<shell:ApplicationBarIconButton x:Name="btnSettings" IconUri="..." Text="Settings" 
         Click="[let intellisence complete this]"/>
简单爱 2024-12-01 09:25:39

您确定该方法具有正确的签名吗?

void Settings_Click(object sender, EventArgs e) { }

Are you sure the method has the right signature?

void Settings_Click(object sender, EventArgs e) { }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文