Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 610221
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:39:05+00:00 2026-05-13T17:39:05+00:00

My Application layer uses DialogPresenters to show some ViewModels in various dialogs (modal, splash

  • 0

My Application layer uses DialogPresenters to show some ViewModels in various dialogs (modal, splash screen, etc..).

    public DataImportDialogPresenter(DataImportViewModel viewModel, IDialogView shellView, IDialogView owner)
        : base(viewModel, shellView, owner)
    {
        //Base sets the view data context etc.
        //Monitor CancelCommand and close the dialog
        viewModel.CancelCommand = new DelegateCommand(() => Terminate());
    }

This setup works really well except for the fact that if my ViewModel decides it needs to do something on the CancelCommand (which is perfectly reasonable) then it will replace the presenter’s call to Terminate() or vice-versa.

What I would like to do is:

viewModel.CancelCommand += new DelegateCommand(() => Terminate());

In the same spirit as attaching event handlers.

  1. Is this possible in C#.NET 3.5?
  2. How would I achieve it?
  3. Is this bad MVVM practice?

Thanks

D

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:39:05+00:00Added an answer on May 13, 2026 at 5:39 pm

    You could use another implementation of the ICommand interface, that would wrap the original CancelCommand of the ViewModel :

    public class WrapperDelegateCommand : ICommand
    {
        private Action<object> _action;
        private ICommand _originalCommand;
    
        public WrapperDelegateCommand(Action<object> action, ICommand original)
        {
            _action = action;
            _originalCommand = original;
        }
    
        public bool CanExecute(object param)
        {
            if (originalCommand != null)
                return _originalCommand.CanExecute(param);
            return true;
        }
    
        public void Execute(object param)
        {
            if (_originalCommand != null)
                _originalCommand.Execute(param);
            _action(param);
        }
    
        public ICommand OriginalCommand { get { return _originalCommand; } }
    }
    

    You can then assign this command to the ViewModel’s command :

    viewModel.CancelCommand = new WrapperDelegateCommand(() => Terminate(), viewModel.CancelCommand);
    

    And you should probably restore the original command in the Terminate method :

    viewModel.CancelCommand = (viewModel.CancelCommand as WrapperDelegateCommand).OriginalCommand;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I feel I pretty well understand the application layer, and everything below (and
I have to choose a technology to connect my Application/Presentation Layer (Java Based) with
So we are building an application with a UI Layer (web, mobile, Ajax client,
I'm currently writing a data access layer for an application. The access layer makes
I am attempting to rewrite my ForestPad application utilizing WPF for the presentation layer.
I'm designing a Data Access layer for an C#/ASP.net application and I have a
Let's say I'm building a data access layer for an application. Typically I have
I'd like to start moving our application business layers into a collection of REST
I have multiple layers in an application and i find myself having to bubble
I have a web application where users enter arbitrary sql queries for later batch

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.