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
I have been using Jot a long time and have always loved it, now I have been tasked with converting everything to WPF and removing all write behind code and instead using a viewmodel. I have not been able to find a way to make jot work with this, Is it even possible? another change is Net core.
The text was updated successfully, but these errors were encountered:
@lorinkundert Although this is quite an old issue, I've decided to help anyone who comes to this issue in the future.
Yes, it is possible to use this library with the MVVM framework, I've tested it with Caliburn.Micro and Stylet.
You can just put the above in your constructor: Tracker tracker = new();
It's one of the app which I've created in the past. So basically put Jot stuff in the constructor (in your ViewModel), make the stuff that you want to save as properties and it should do the job.
Just don't use Caliburn.Micro or Stylet's Screen in your Model since it seems to be bugged (implement your own INotifyPropertyChanged), see this issue: #39
I have been using Jot a long time and have always loved it, now I have been tasked with converting everything to WPF and removing all write behind code and instead using a viewmodel. I have not been able to find a way to make jot work with this, Is it even possible? another change is Net core.
The text was updated successfully, but these errors were encountered: