You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
When binding a view model property (whose value is set elsewhere) as the page title in a TabbedPage child/tab, the displayed value doesn't update after calling OnPropertyChanged() for the property.
Description
When binding a view model property (whose value is set elsewhere) as the page title in a TabbedPage child/tab, the displayed value doesn't update after calling
OnPropertyChanged()
for the property.Steps to Reproduce
OnPropertyChanged
OnPropertyChanged
instead) does NOT update.Expected Behavior
OnPropertyChanged
should trigger bound property to re-run its getter and update display in view.Actual Behavior
OnPropertyChanged
seems to trigger bound property to re-run its getter (value in alert is correct) but the displayed text is not updated.Basic Information
Environment
Show/Hide Visual Studio info
Build Logs
Screenshots
Reproduction Link
Bug Repro on GitHub
Workaround
Explicitly using a setter, instead of relying on
OnPropertyChanged
to re-load the getter.The text was updated successfully, but these errors were encountered: