CDP4SiteDirectory.ViewModels.DomainOfExpertiseBrowserViewModel.InitializeCommands C# (CSharp) 메소드

InitializeCommands() 보호된 메소드

Initialize the ReactiveCommands of the current view-model
protected InitializeCommands ( ) : void
리턴 void
        protected override void InitializeCommands()
        {
            base.InitializeCommands();

            this.CreateCommand = ReactiveCommand.Create(this.WhenAnyValue(x => x.CanCreateDomain));
            this.CreateCommand.Subscribe(_ => this.ExecuteCreateCommand<DomainOfExpertise>(this.Thing));
        }