Sorry for previous post - it's not complete!
Step 2: add two event handlers to the Txt in Page.Loaded event handler
Txt.KeyDown += new KeyDownEventHandler(Page_KeyDown);
Txt.TextChanged += new RoutedEventHandler(Page_TextChanged);
Step 3: while textbox doesn't contain any text press END key and try to type something after that - Page_TextChanged never calls