Hello.
My class inherits from the class KanbanViewModel.
It has the variable property "BackgroundColor". How can I hang on him "PropertyChanged"?
public class KanbanViewModel : KanbanModel
{
private Brush _backgroundColor;
public Brush BackgroundColor
{
get { return _backgroundColor; }
set
{
???
}
}
}