Catel.MVVM.InterestedInAttribute.InterestedInAttribute C# (CSharp) 메소드

InterestedInAttribute() 공개 메소드

Initializes a new instance of the InterestedInAttribute class.
The is null.
public InterestedInAttribute ( Type viewModelType ) : System
viewModelType System.Type Type of the view model.
리턴 System
		public InterestedInAttribute(Type viewModelType)
		{
            Argument.IsNotNull("viewModelType", viewModelType);

			ViewModelType = viewModelType;
		}
InterestedInAttribute