c# - How to set "Grid.Row" programmatically to a ui control? -


i adding new textboxes dynamically , need add new row doing so. how associate new textbox, textbox txt1 = new textbox(); , row definition index?

thanks

set grid.row attached property static setter method:

grid.setrow(txt1, rowindex); 

Comments