如何在按钮中传递参数并在后面的代码中获取值以根据Windows Phone 7中的参数值重定向到另一个页面?

发布于 2024-12-27 06:04:46 字数 169 浏览 1 评论 0原文

我在想Windows Phone 7按钮事件是否类似于使用C#进行ASP.NET开发,就像在按钮中一样,我在XAML中将值设置为commandparameter,在后面的代码中,我获取commandparameter并重定向页面。

我还没有找到任何好的按钮事件处理示例,有什么建议吗?

谢谢。

I am thinking if the windows phone 7 button event is similar to ASP.NET development with C#, something like in the button, I set value to commandparameter in the XAML, and in the code behind, I get the commandparameter and redirect the page.

I haven't found any good examples for button event handling, any suggestions?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

塔塔猫 2025-01-03 06:04:46

对于 xaml:

<Button Tag="pageAddress" Click="Button_Click" />

然后在隐藏代码上:

private void Button_Click(object sender, RoutedEventArgs e)
{
     Button _button = (Button)sender;
     NavigationService.Navigate(new System.Uri(_button.Tag.ToString()));
}

For the xaml:

<Button Tag="pageAddress" Click="Button_Click" />

And then on the code-behind:

private void Button_Click(object sender, RoutedEventArgs e)
{
     Button _button = (Button)sender;
     NavigationService.Navigate(new System.Uri(_button.Tag.ToString()));
}
甩你一脸翔 2025-01-03 06:04:46

我建议您使用您提到的命令参数。所以在你的 xaml 中做这样的事情:

<Button x:name="myButton" CommandParameter="{Binding Title}" Click="myButton_Click"/>

在你的 C# 代码中做这样的事情:

private void myButton_Click(object sender, RoutedEventArgs e)
{
    Button _myButton = (Button)sender;
    string value = _myButton.CommandParameter.ToString();
}

确实,它与 Teemu 的答案非常相似,尽管我必须承认我没有使用 标签
之前的元素。根据 文档 在 MSDN 上,Tag 元素应该可以很好地工作,因为它可以存储您可以在后台代码(或视图模型)中访问的自定义信息。

I would recommend you use a command parameter as you mentioned. So in your xaml do something like this:

<Button x:name="myButton" CommandParameter="{Binding Title}" Click="myButton_Click"/>

And in your C# code something like this:

private void myButton_Click(object sender, RoutedEventArgs e)
{
    Button _myButton = (Button)sender;
    string value = _myButton.CommandParameter.ToString();
}

Really it's pretty similar to Teemu's answer although I must admit I haven't used the Tag
element before. According to the documentation on MSDN, the Tag element should work pretty nicely as it can store custom information that you can access in your code behind (or viewmodel).

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