This commit is contained in:
Laurent Bugnion 2016-04-23 23:38:52 +02:00
Родитель dd58160d52
Коммит a5ab76622c
12 изменённых файлов: 19 добавлений и 17 удалений

Просмотреть файл

@ -43,8 +43,8 @@ namespace GalaSoft.MvvmLight.Command
/// This will enable (or restore) the CommandManager class which handles
/// automatic enabling/disabling of controls based on the CanExecute delegate.</remarks>
////[ClassInfo(typeof(RelayCommand),
//// VersionString = "5.1.13",
//// DateString = "201502072030",
//// VersionString = "5.3.14",
//// DateString = "201604212130",
//// Description = "A command whose sole purpose is to relay its functionality to other objects by invoking delegates.",
//// UrlContacts = "http://www.galasoft.ch/contact_en.html",
//// Email = "laurent@galasoft.ch")]

Просмотреть файл

@ -43,8 +43,8 @@ namespace GalaSoft.MvvmLight.Messaging
/// The Messenger is a class allowing objects to exchange messages.
/// </summary>
////[ClassInfo(typeof(Messenger),
//// VersionString = "5.1.18",
//// DateString = "201502072030",
//// VersionString = "5.3.19",
//// DateString = "201604212130",
//// Description = "A messenger class allowing a class to send a message to multiple recipients",
//// UrlContacts = "http://www.galasoft.ch/contact_en.html",
//// Email = "laurent@galasoft.ch")]

Просмотреть файл

@ -30,4 +30,4 @@ using System.Runtime.InteropServices;
[assembly: CLSCompliant(true)]
// BL0035
[assembly: AssemblyVersion("5.2.1.*")]
[assembly: AssemblyVersion("5.3.0.*")]

Просмотреть файл

@ -46,8 +46,8 @@ namespace GalaSoft.MvvmLight
/// A base class for the ViewModel classes in the MVVM pattern.
/// </summary>
//// [ClassInfo(typeof(ViewModelBase),
//// VersionString = "5.1.17",
//// DateString = "201502072030",
//// VersionString = "5.3.18",
//// DateString = "201604212130",
//// Description = "A base class for the ViewModel classes in the MVVM pattern.",
//// UrlContacts = "http://www.galasoft.ch/contact_en.html",
//// Email = "laurent@galasoft.ch")]

Просмотреть файл

@ -21,8 +21,8 @@ namespace GalaSoft.MvvmLight.Views
/// Windows Phone, Android, iOS etc.
/// </summary>
////[ClassInfo(typeof(INavigationService),
//// VersionString = "5.2.4",
//// DateString = "201504252130",
//// VersionString = "5.3.5",
//// DateString = "201604212130",
//// UrlContacts = "http://www.galasoft.ch/contact_en.html",
//// Email = "laurent@galasoft.ch")]
public interface INavigationService

Просмотреть файл

@ -40,4 +40,4 @@ using System.Runtime.InteropServices;
[assembly:NeutralResourcesLanguage("en-US")]
// BL0035
[assembly: AssemblyVersion("5.2.1.*")]
[assembly: AssemblyVersion("5.3.0.*")]

Просмотреть файл

@ -21,8 +21,8 @@ namespace GalaSoft.MvvmLight.Helpers
/// Base class for bindings in Xamarin.iOS and Xamarin.Android.
/// </summary>
////[ClassInfo(typeof(Binding),
//// VersionString = "5.1.2",
//// DateString = "201502072030",
//// VersionString = "5.3.4",
//// DateString = "201604212130",
//// Description = "Base class for bindings in Xamarin.iOS and Xamarin.Android",
//// UrlContacts = "http://www.galasoft.ch/contact_en.html",
//// Email = "laurent@galasoft.ch")]

Просмотреть файл

@ -29,8 +29,8 @@ namespace GalaSoft.MvvmLight.Helpers
/// </summary>
/// <typeparam name="T">The type of the items contained in the <see cref="DataSource"/>.</typeparam>
////[ClassInfo(typeof(ObservableAdapter<T>),
//// VersionString = "5.1.1",
//// DateString = "201502072030",
//// VersionString = "5.3.2",
//// DateString = "201604212130",
//// UrlContacts = "http://www.galasoft.ch/contact_en.html",
//// Email = "laurent@galasoft.ch")]
public class ObservableAdapter<T> : BaseAdapter<T>

Просмотреть файл

@ -47,4 +47,4 @@ using System.Windows.Markup;
[assembly:NeutralResourcesLanguage("en-US")]
// BL0035
[assembly: AssemblyVersion("5.2.1.*")]
[assembly: AssemblyVersion("5.3.0.*")]

Просмотреть файл

@ -32,6 +32,7 @@ namespace GalaSoft.MvvmLight.Helpers
/// <typeparam name="TItem">The type of the items in the data source.</typeparam>
/// <typeparam name="TCell">The type of the <see cref="UICollectionViewCell"/> used in the CollectionView.
/// This can either be UICollectionViewCell or a derived type.</typeparam>
////[ClassInfo(typeof(ObservableTableViewController<T>)]
public class ObservableCollectionViewSource<TItem, TCell> : UICollectionViewSource, INotifyPropertyChanged
where TCell : UICollectionViewCell
{

Просмотреть файл

@ -38,8 +38,8 @@ namespace GalaSoft.MvvmLight.Helpers
/// </remarks>
/// <typeparam name="T">The type of the items contained in the <see cref="DataSource"/>.</typeparam>
////[ClassInfo(typeof(ObservableTableViewController<T>),
//// VersionString = "5.1.1",
//// DateString = "201502072030",
//// VersionString = "5.3.2",
//// DateString = "201604212130",
//// UrlContacts = "http://www.galasoft.ch/contact_en.html",
//// Email = "laurent@galasoft.ch")]
public class ObservableTableViewController<T> : UITableViewController, INotifyPropertyChanged

Просмотреть файл

@ -30,6 +30,7 @@ namespace GalaSoft.MvvmLight.Helpers
/// implements <see cref="INotifyCollectionChanged"/>.
/// </summary>
/// <typeparam name="TItem">The type of the items in the data source.</typeparam>
////[ClassInfo(typeof(ObservableTableViewController<T>)]
public class ObservableTableViewSource<TItem> : UITableViewSource, INotifyPropertyChanged
{
/// <summary>