I have a DataTemplate with a list of "Tareas", which are Task to do, each elements of "Tarea" has a list of Products:
public class Tarea : INotifyPropertyChanged
{
public ObservableCollection<Producto> Productos { get; set; }
public event PropertyChangedEventHandler PropertyChanged...
Greetings all
Recently I dipped my finger in dotnet maui and C# for first time. So I run intro some issues. I am trying to follow MVVM model and make a collectionview that contains Labels and Pickers. The labels update as expected but the picker does not, it is empty.
<CollectionView...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.