Caliburn-Micro / Caliburn.Micro

A small, yet powerful framework, designed for building applications across all XAML platforms. Its strong support for MV* patterns will enable you to build your solution quickly, without the need to sacrifice code quality or testability.
http://caliburnmicro.com/
MIT License
2.8k stars 778 forks source link

Recent Behavior Change in Property Notification with Textboxes #736

Closed Jack-S-Jenkins closed 3 years ago

Jack-S-Jenkins commented 3 years ago

I wanted to say that I am happy the project is continuing to be worked on and I thank everyone who has worked in the past!

I recently updated the project to 4.0.155 and I noticed the behavior has changed in results to property notification and textboxes. It used to be that whenever a user entered information into a textbox it will update the backing string in the ViewModel. However, I noticed that now it doesn't register until you leave the textbox. I have some Can methods to check when there is a certain number of characters. If this was an intentional feature can it be reversed? Thank you and again, thank you for all the work you are entering for this project.

jkattestaart commented 3 years ago

Hi Jack

Doesn't has to do with the UpdateSourceTrigger "{Binding Entity.Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"

regards

John Kattestaart jkattestaart@gmail.com

Op vr 11 dec. 2020 om 12:02 schreef Jack Jenkins notifications@github.com:

I wanted to say that I am happy the project is continuing to be worked on and I thank everyone who has worked in the past!

I recently updated the project to 4.0.155 and I noticed the behavior has changed in results to property notification and textboxes. It used to be that whenever a user entered information into a textbox it will update the backing string in the ViewModel. However, I noticed that now it doesn't register until you leave the textbox. I have some Can methods to check when there is a certain number of characters. If this was an intentional feature can it be reversed? Thank you and again, thank you for all the work you are entering for this project.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Caliburn-Micro/Caliburn.Micro/issues/736, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACULQHSSFWOPAEYIUHUKNQLSUH35TANCNFSM4UWPAI4A .

Jack-S-Jenkins commented 3 years ago

Thanks, @jkattestaart I will try that later on. For now downgrading to 4.0.153-rc which fixed the issue for now