windows phone复选框数据库检查值(?)

时间:2012-12-10 23:23:01

标签: windows-phone-7 checkbox

我的应用程序上有200个复选框,我必须更改他们的缺血值。所以我想使用代码lıke:

复选框(i).ischecked = true;(它不工作:))

这可能吗?或者我如何使用c#代码?我想你已经了解我了。

1 个答案:

答案 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;