diff --git a/src/Avalonia.Controls/ISelectionModel.cs b/src/Avalonia.Controls/ISelectionModel.cs index 7db05d849f..5a5886d378 100644 --- a/src/Avalonia.Controls/ISelectionModel.cs +++ b/src/Avalonia.Controls/ISelectionModel.cs @@ -5,10 +5,11 @@ using System; using System.Collections.Generic; +using System.ComponentModel; namespace Avalonia.Controls { - public interface ISelectionModel + public interface ISelectionModel : INotifyPropertyChanged { IndexPath AnchorIndex { get; set; } IndexPath SelectedIndex { get; set; } diff --git a/src/Avalonia.Controls/SelectionModel.cs b/src/Avalonia.Controls/SelectionModel.cs index 5d787fb1ca..91add5bd77 100644 --- a/src/Avalonia.Controls/SelectionModel.cs +++ b/src/Avalonia.Controls/SelectionModel.cs @@ -13,7 +13,7 @@ using Avalonia.Controls.Utils; namespace Avalonia.Controls { - public class SelectionModel : ISelectionModel, INotifyPropertyChanged, IDisposable + public class SelectionModel : ISelectionModel, IDisposable { private readonly SelectionNode _rootNode; private bool _singleSelect;