0

私はMVVM-Lightを使用しており、すべてのビューモデルに対して、同じプロパティタイプを検証するために同じメソッドを使用する場合があるINotifyDataErrorInfoの実装を作成する必要があります。この例では、DateTimeを使用しています。

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using SL.Resources;

    namespace SL.ViewModel
    {
        public partial class AdministrationViewModel : INotifyDataErrorInfo
        {
            #region Validations

        public void isDateToValid(DateTime? value, DateTime? dateFrom, string propertyName)
        {
            //check if null
            if (value == null) AddError(propertyName, CommonErrors.DateNull_ERROR, false);
            else RemoveError(propertyName, CommonErrors.DateNull_ERROR);

            //check if min and max value
            if (value < DateTime.MinValue || value > DateTime.MaxValue) AddError(propertyName, CommonErrors.DateNotValid_ERROR, false);
            else RemoveError(propertyName, CommonErrors.DateNotValid_ERROR);

            if (value < dateFrom) AddError(propertyName, CommonErrors.DateFromSmall_ERROR, false);
            else RemoveError(propertyName, CommonErrors.DateFromSmall_ERROR);
        }

        public void IsDateValid(DateTime? value, string propertyName)
        {
            if (value == null) AddError(propertyName, CommonErrors.DateNull_ERROR, false);
            else RemoveError(propertyName, CommonErrors.DateNull_ERROR);

            if (value < DateTime.MinValue || value > DateTime.MaxValue) AddError(propertyName, CommonErrors.DateNotValid_ERROR, false);
            else RemoveError(propertyName, CommonErrors.DateNotValid_ERROR);
        }

        #endregion

        #region INotifyDataErrorInfo Members

        public Dictionary<string, List<string>> errors = new Dictionary<string, List<string>>();

        // Adds the specified error to the errors collection if it is not 
        // already present, inserting it in the first position if isWarning is 
        // false. Raises the ErrorsChanged event if the collection changes. 
        public void AddError(string propertyName, string error, bool isWarning)
        {
            if (!errors.ContainsKey(propertyName))
                errors[propertyName] = new List<string>();

            if (!errors[propertyName].Contains(error))
            {
                if (isWarning) errors[propertyName].Add(error);
                else errors[propertyName].Insert(0, error);
                RaiseErrorsChanged(propertyName);
            }
        }

        // Removes the specified error from the errors collection if it is
        // present. Raises the ErrorsChanged event if the collection changes.
        public void RemoveError(string propertyName, string error)
        {
            if (errors.ContainsKey(propertyName) &&
                errors[propertyName].Contains(error))
            {
                errors[propertyName].Remove(error);
                if (errors[propertyName].Count == 0) errors.Remove(propertyName);
                RaiseErrorsChanged(propertyName);
            }
        }

        public void RaiseErrorsChanged(string propertyName)
        {
            if (ErrorsChanged != null)
                ErrorsChanged(this, new DataErrorsChangedEventArgs(propertyName));
        }

        public event System.EventHandler<DataErrorsChangedEventArgs> ErrorsChanged;

        public System.Collections.IEnumerable GetErrors(string propertyName)
        {
            if (string.IsNullOrEmpty(propertyName) ||
                !errors.ContainsKey(propertyName)) return null;
            return errors[propertyName];
        }

        public bool HasErrors
        {
            get { return errors.Count > 0; }
        }

        #endregion
    }
}

このコードを他のビューモデルで再利用できるようにするにはどうすればよいので、同じことを何度も実装する必要はありませんか?

INotifyDataErrorInfoを実装するクラスを作成しました:

public class ViewModelValidation : INotifyDataErrorInfo

しかし、ビューモデルで使用したい場合は機能しません。

public partial class AdministrationViewModel : ViewModelValidation

エラー:

Partial declarations of 'SL.ViewModel.AdministrationViewModel' must not specify different base classes...

これは、メインビューモデルファイルにMVVM-Lightの基本クラスがあるためです。

public partial class AdministrationViewModel : ViewModelBase

これを解決するための助けはありがたいです。

4

1 に答える 1

2

私はそれを自分で理解しました。ViewModelCommonMVVM-Lightに基づいてクラスを作成しViewModelBase、それにINotifyDataErrorInfoインターフェイスを追加しました。

public class ViewModelCommon : ViewModelBase, INotifyDataErrorInfo

次に、クラスViewModelBaseを使用する代わりに、ビューモデルコードで次のようにします。ViewModelCommon

public partial class AdministrationViewModel : ViewModelCommon

そして、それはうまく機能します。

于 2011-09-02T08:20:12.483 に答える