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

  • Home
  • SEARCH
  • 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

I am working on an WPF application that uses a BusinessLogic layer (currently a
I'm writing an iPhone application which uses UIView with a CAEAGLayer as its layer.
I have a stand-alone, Swing application that uses Hibernate for its persistence layer. I
I have a small Java application which uses some configuration settings, which are saved
I have an application that is structured as an service layer wich uses a
I have a fat-client application which uses EF4 to MSSQL in the data layer.
I am developing a web application that uses JSF 1.2 for the view layer.
I'm debugging the caching layer of a PHP application. It uses a cluster of
The service layer of my ASP.NET MVC 3 application uses AutoMapper to map view
Suppose I want to create a service layer for my web application which uses

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.