How can I bind the visibility of a Label, where the Label is visible if a list is empty? Below doesn't work.
bool _showAllUsersEmptyLabel; public bool ShowAllUsersEmptyLabel { get { return _showAllUsersEmptyLabel; } set { _showAllUsersEmptyLabel = (AllUsers != null && !AllUsers.Any()); this.OnPropertyChanged(nameof(this._showAllUsersEmptyLabel)); } }