我的应用程序上有200个复选框,我必须更改他们的缺血值。所以我想使用代码lıke:
复选框(i).ischecked = true;(它不工作:))
这可能吗?或者我如何使用c#代码?我想你已经了解我了。答案 0 :(得分:0)
我找到了答案:
string a = "image2";
Image ima = this.FindName(a) as Image;
ima.Visibility = System.Windows.Visibility.Collapsed;
string b = "checkBox1";
CheckBox ch = this.FindName(b) as CheckBox;
ch.IsChecked = true;