MVVM Light is too fast :)
- by Hikari
Hello,
I have a simple WM7 Page with textbox. Futher, I assigned EventToCommand (RelayCommand) to this textbox, reacting to TextChanged event. For testing pourposes I made additional method TextBox_TextChanged in page's code behing. Both command and TextBox_TextChanged print a message box with the textbox content.
Initial value of textbox is ABC. Then I press D and:
1) TextBox_TextChanged prints ABCD.
2) Command prints ABC. D is missing.
Why commands is so fast???