This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace GalaSoft.MvvmLight.Helpers | |
{ | |
/// <summary> | |
/// A <see cref="BaseAdapter{T}"/> that can be used with an Android ListView. After setting | |
/// the <see cref="DataSource"/> and the <see cref="GetTemplate"/> properties, the adapter is | |
/// suitable for a list control. If the DataSource is an <see cref="INotifyCollectionChanged"/>, | |
/// changes to the collection will be observed and the UI will automatically be updated. | |
/// </summary> | |
/// <typeparam name="T">The type of the items contained in the <see cref="DataSource"/>.</typeparam> | |
////[ClassInfo(typeof(ObservableAdapter<T>), |