-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Persistent bug with Caliburn.Micro #39
Comments
Cheers for reporting it. I'm not having any such issues though. The following setup seems to work fine:
|
Hmm, it still doesn't work.
My Collection:
Results:
However, if I implement my own |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using WPF, .Net Core 3.1 and Caliburn.Micro 4.0.117-alpha. I encountered a persistent bug while trying to implement Screen class to my Model. This is how my "stuff" looks like:
BindableCollection<TestModel> Test = new BindableCollection<TestModel>();
(The same happens withObservableCollection<>
)In my constructor:
My
TestModel
:When adding item to
Test
, this is what I get in .json file:So it's empty value, however, If I remove
Screen
class, it works perfectly. The reason why I want to implement the class is so I can useNotifyOfPropertyChange
method. Obviously, I could implement my ownNotifyOfPropertyChange
method. Just pointing it out because it was a nightmare to debug it haha.The text was updated successfully, but these errors were encountered: