How can i Refresh a object?
问题 I have a property representing an actor private Actor _actor; public Actor Actor { get => _actor; set { if (_actor != value) { _actor = value; OnPropertyChanged("Actor"); } } } and a list, with a checkmark that depends on the state of Actor . When I click over the label the state of Actor shall change the checkmark private async void OnSelectionAsync(object item) { Actor = item; but I cannot see the changes in my ListView , why? Edit 1: in my list, i am binding the actor Text="{Binding Actor