问题描述
我使用
foreach(....)
foreach(....)
{
CheckBox
chkBox =
new
CheckBox
chkBox =newCheckBox
();
();
chkBox.Content =" Title";
chkBox.Content = "Title";
chkBox.Checked + =
chkBox.Checked +=
new
RoutedEventHandler
newRoutedEventHandler
(chkBox_Checked);
(chkBox_Checked);
chkBox.Unchecked + =
chkBox.Unchecked +=
new
RoutedEventHandler
newRoutedEventHandler
(chkBox_Unchecked);
(chkBox_Unchecked);
sPnl.Children.Add(chkBox);
sPnl.Children.Add(chkBox);
}
I
需要获取所选的复选框内容。我怎样才能获得。
跨度> 跨度> 跨度> 跨度> 跨度> 跨度> 跨度> 跨度> 跨度> 跨度> 任何
帮助我。
any one help me.
推荐答案
您可以在CheckBox的Checked和Unchecked事件中尝试以下代码
You can try the following code in Checked and Unchecked events of CheckBox
void chkBox_Checked(object sender, RoutedEventArgs e)
{
string content = (sender as CheckBox).Content.ToString();
}
这篇关于Silverlight CheckBox获取选定的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!