获取所选Radiobutton的值

发布于 2025-01-06 01:09:38 字数 83 浏览 0 评论 0原文

我有两个单选按钮,在同一组名称中,用户选择其中之一(默认情况下不选中任何一个)。当用户选择其中之一时,字符串变量应存储单选按钮的内容。如何实现这一目标?

I have two radio buttons, in the same group name, users selects either one (by default none is checked). When the user selects either one a string variable should store the content of the radio button. How to achieve this?

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

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

发布评论

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

评论(1

千紇 2025-01-13 01:09:38

首先双击单选按钮以获取其选中的事件
然后在事件处理程序中写下这个

<RadioButton Content="foo" Checked="radioButton1_Checked" />
<RadioButton Content="bar" Checked="radioButton1_Checked"/>

private void radioButton1_Checked(object sender, RoutedEventArgs e)
{
   variable = (string)(sender as RadioButton).Content;
}

First double click on the radiobutton(s) to get their checked events
Then inside the eventhandler write this

<RadioButton Content="foo" Checked="radioButton1_Checked" />
<RadioButton Content="bar" Checked="radioButton1_Checked"/>

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