如何获得对生成的网格元素的访问权限?

时间:2015-08-04 20:18:04

标签: c# xaml

我在XAML网格中动态生成行:

var bodyObj, className, index;

bodyObj = document.getElementById('body');
index = 1;
className = [
    'imageOne',
    'imageTwo',
     'imageThree',
];

function updateIndex(){
    index++;
    if (index===3) {
        index = 0;
    }
}

bodyObj.onclick = function(e){
    e.currentTarget.className = className[index];
    updateIndex();
}

如何访问特定行Text1或Button1?

1 个答案:

答案 0 :(得分:0)

我想你要设置Grid.Row。叫这个

Text1.SetValue(Grid.RowProperty,1);

我希望这会对你有所帮助。