我正在动态添加新文本框,我需要添加一个新行。
如何将新文本框TextBox txt1 = new TextBox();
与行定义索引相关联?
感谢
答案 0 :(得分:1)
对于附加属性,请致电SetValue
txt1.SetValue(Grid.RowProperty, 3);
或者从实际命名的网格静态SetRow
MyGrid.SetRow(txt1, 3);
答案 1 :(得分:0)
设置Grid.Row
附加属性static setter method:
Grid.SetRow(txt1, rowIndex);