I'm writing a small .NET/WFP app today and I alrea...
# tornadofx
e
I'm writing a small .NET/WFP app today and I already miss JavaFX/TornadoFX 🙂 Do those guys still use INotifyPropertyChanged for observable properties? Reminds me of good 'ol PropertyChangeEvent.. but it's 2018, they must have some kind of observable properties you don't have to write manually, right? Confused..
a
There are frameworks for MVVM and auto-generation for property fields. Some use attributes, some based on field naming, some doesn't bother and ease the other things. But I don't think there is anything in vanilla C#/.NET
e
OK, thanks. It wasn't all that bad, I ended up just using properties and explicit data binding in the forms, completely tolerable 🙂