Set value and get value...
i can set grid.row value textbox(txtquestion) by:
txtquestion.setvalue(grid.rowproperty, 1);
but how can row value of txtquestion textbox(txtrowvalue)?
tryed on button click, but wont work:
txtrowvalue.text = txtquestion.getvalue(grid.rowproperty);
hi combo, grid.rowproperty of type int, can't cast string. instead call tostring-method on it:
txtrowvalue.text = txtquestion.getvalue(grid.rowproperty).tostring();
Silverlight > Programming Silverlight with .NET – General
Comments
Post a Comment