With textbox i can use events like OnChange or OnChangeValue, but this are triggered only when the component loose the focus,
i can intercept this with OnKeyUp/OnKeyDown but i can't read the correct value of the texbox inside the event, also i need to update the state of 1 button when the value is not empty insid the event,
if i try to use StateHasChanged() the button is not updated
How to make this?