Catel.MVVM.CompositeCommand.CompositeCommand C# (CSharp) Méthode

CompositeCommand() public méthode

Initializes a new instance of the Command{TCanExecuteParameter,TExecuteParameter} class.
public CompositeCommand ( ) : System
Résultat System
        public CompositeCommand()
            : base(null)
        {
            AllowPartialExecution = false;
            AtLeastOneMustBeExecutable = true;

            InitializeActions(ExecuteCompositeCommand, null, CanExecuteCompositeCommand, null);
        }
        #endregion