private void txt_f_name_TextChanged(object sender, TextChangedEventArgs e)
{
string textbox_name_1,textbox_name_2;
TextBox textbox_1 = (TextBox)e.Source;
textbox_name1= textbox_1.Text;
TextBox textbox_2 = (TextBox)e.OriginalSource;
textbox_name_2;= textbox_2.Text;
}
now both textbox_name_1
and textbox_name_2
are getting same result.
if i try to get another thing like text,with etc... these are also getting the same result....
but i think there may be some difference.
so,i want to know the major difference between e.source
and e.OriginalSource
.
There are cases source and original source differ.
ref from MSDN:
i'm not sure what you try to do with your code. to check source and original source text property do like below, and you can do the same thing by adding list view with items having text box.