I am attaching handlers to the KeyDown and KeyUp events of a Silverlight 3 TextBox as so:
_masterTextBox.KeyDown += (s, args) =>
{
CheckForUserEnteredText(MasterTextBox.Text);
args.Handled = false;
};
_masterTextBox.KeyUp += (s, args) => { UpdateText(MasterTextBox.Text); };
When I comment out the KeyDown handler, then the KeyUp will trap the event, otherwise, only the KeyDown handler is triggered.
Can someone explain why the KeyUp event handler is not firing after the KeyDown handler does?
Thanks.