Casianm8
2FA? Is it hard to implement?
https://github.com/BrandonPotter/GoogleAuthenticator
this looks amazing
45 replies
How can I use wpf with c++?
U can look at this video:
https://www.youtube.com/watch?v=5U7XQUi538c&ab_channel=CodingExpress
8 replies
When I select a category from a picker, I want only its children to appear in the other picker
Guide:
1. We will use the "Category.cs" class as a model... and the "CategoryViewModel" class as a viewmodel.
- Each attribute in Category.cs must have OnPropertyChanged() to perceive the new values.
- You can delete from Category.cs what is (Virtual): It is used to overwrite a method from one class to another (override) and it is not the case for you (search the internet for what it is used for). Look to see what polymorphism means or what it is used for on chatgpt.
- Check if the list is initialized in the constructor of the class in which you have the two filter methods.
- When you want to use the Selected... attribute from the ViewModel, it would be advisable to delete the .Clear property at the time of filtering.
6 replies