save the text on cs file (back end).
string i=t1. Text
its not identifying the t1 (textblock) in the current context
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Jan 14, 2015, 11:58 AM
It may be inside the DataGrid control. For that you need to
TextBox t = ParentCtrlName.FindName(t1.Text) as TextBox;
Hope this helps you.